Agentdevx Skill
/install agentdevx-skill
AgentDevX Gateway
Give your agent hands. Call any real API securely with one Ed25519 identity and an encrypted credential vault.
Setup
- Sign up at https://agentdevx.onrender.com/signup
- 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\"}"
- 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
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install agentdevx-skill - After installation, invoke the skill by name or use
/agentdevx-skill - Provide required inputs per the skill's parameter spec and get structured output
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.