← Back to Skills Marketplace
mirajmahmudul

Agentdevx Skill

by MD MAHMUDUL HASAN MIRAJ · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
45
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install agentdevx-skill
Description
Call any API securely from your agent — GitHub, Stripe, SendGrid and 40+ more. One Ed25519 identity, encrypted credential vault, full audit log.
README (SKILL.md)

AgentDevX Gateway

Give your agent hands. Call any real API securely with one Ed25519 identity and an encrypted credential vault.

Setup

  1. Sign up at https://agentdevx.onrender.com/signup
  2. Bootstrap your agent:
PUBLIC_KEY=$(openssl rand -hex 32)
curl -X POST https://agentdevx.onrender.com/agents/v1/bootstrap \
  -H "Content-Type: application/json" \
  -d "{\"name\":\"my-agent\",\"email\":\"[email protected]\",\"public_key\":\"$PUBLIC_KEY\"}"
  1. Export your token:
export AGENTDEVX_API_KEY=\x3Cyour_access_token>

What Your Agent Can Do

Call any tool

curl -X POST https://agentdevx.onrender.com/proxy/call \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $AGENTDEVX_API_KEY" \
  -d '{"tool_name":"github-api","action":"getRepo","params":{"owner":"openai","repo":"openai-python"}}'

Discover tools

curl https://agentdevx.onrender.com/tools \
  -H "Authorization: Bearer $AGENTDEVX_API_KEY"

Store secrets (AES-256-GCM encrypted)

curl -X POST https://agentdevx.onrender.com/credentials \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $AGENTDEVX_API_KEY" \
  -d '{"provider_id":"stripe","type":"api_key","value":"sk_live_..."}'

Save agent memory

curl -X POST https://agentdevx.onrender.com/agents/me/memory \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $AGENTDEVX_API_KEY" \
  -d '{"key":"last_task","value":"sent invoice to client"}'

Connect via MCP

{
  "mcpServers": {
    "agentdevx": {
      "url": "https://agentdevx.onrender.com/mcp"
    }
  }
}

Available Tools

  • github-api — repos, issues, search
  • open-weather — current weather, forecasts
  • exchange-rate — live currency conversion
  • public-holidays — holidays by country/year
  • jsonplaceholder — free REST test API

Real-time Streaming

curl -N https://agentdevx.onrender.com/stream/events \
  -H "Authorization: Bearer $AGENTDEVX_API_KEY"

Pricing

  • Free: 75,000 credits/month
  • Starter: $8/month — 500 calls/day
  • Pro: $12/month — 5,000 calls/day
  • Scale: $29/month — unlimited

Links

Usage Guidance
Install only if you are comfortable routing API requests, tool payloads, credentials, and saved memory through AgentDevX. Prefer test or least-privilege credentials, avoid regulated or unnecessary sensitive data, and review AgentDevX retention, deletion, and access-control policies before storing production secrets.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
The stated purpose is to let agents call third-party APIs through AgentDevX, store credentials, save memory, stream events, and connect by MCP; the documented curl examples match that purpose.
Instruction Scope
Instructions are user-directed examples with visible AgentDevX HTTPS endpoints and bearer-token authentication; they do encourage broad external API access and secret storage, so users should scope credentials carefully.
Install Mechanism
The artifact is a single non-executable SKILL.md requiring curl and an AGENTDEVX_API_KEY; no install scripts, package hooks, or automatic background setup were present.
Credentials
A hosted gateway reasonably requires an API token and network calls, but request parameters, credential values, and memory entries are shared with a third-party service.
Persistence & Privilege
Persistent hosted credential and memory storage is disclosed and purpose-aligned, but the skill does not document retention, deletion, or access-control details beyond encryption and audit-log claims.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install agentdevx-skill
  3. After installation, invoke the skill by name or use /agentdevx-skill
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of agentdevx-gateway. - Securely call 40+ APIs (GitHub, Stripe, SendGrid, etc.) with one agent identity. - Features encrypted credential vault and full audit log. - Supports tool discovery, secret storage, and agent memory. - Real-time event streaming and MCP server connection. - Free and paid pricing tiers available.
Metadata
Slug agentdevx-skill
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Agentdevx Skill?

Call any API securely from your agent — GitHub, Stripe, SendGrid and 40+ more. One Ed25519 identity, encrypted credential vault, full audit log. It is an AI Agent Skill for Claude Code / OpenClaw, with 45 downloads so far.

How do I install Agentdevx Skill?

Run "/install agentdevx-skill" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Agentdevx Skill free?

Yes, Agentdevx Skill is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Agentdevx Skill support?

Agentdevx Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Agentdevx Skill?

It is built and maintained by MD MAHMUDUL HASAN MIRAJ (@mirajmahmudul); the current version is v1.0.0.

💬 Comments