Install
openclaw skills install agentdevx-skillCall any API securely from your agent — GitHub, Stripe, SendGrid and 40+ more. One Ed25519 identity, encrypted credential vault, full audit log.
openclaw skills install agentdevx-skillGive your agent hands. Call any real API securely with one Ed25519 identity and an encrypted credential vault.
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\":\"you@example.com\",\"public_key\":\"$PUBLIC_KEY\"}"
export AGENTDEVX_API_KEY=<your_access_token>
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"}}'
curl https://agentdevx.onrender.com/tools \
-H "Authorization: Bearer $AGENTDEVX_API_KEY"
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_..."}'
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"}'
{
"mcpServers": {
"agentdevx": {
"url": "https://agentdevx.onrender.com/mcp"
}
}
}
curl -N https://agentdevx.onrender.com/stream/events \
-H "Authorization: Bearer $AGENTDEVX_API_KEY"