Install
openclaw skills install @mirajmahmudul/agentdevx-skillGive your AI hands. The identity and security layer every AI agent needs — register any API, agents get Ed25519 identity, encrypted vault, and audit logging.
openclaw skills install @mirajmahmudul/agentdevx-skillThe first infrastructure layer an AI agent can discover, install, and use entirely on its own — no human OAuth, no manual key exchange, no setup.
Every developer building an AI agent hits the same wall: auth spaghetti, credential sprawl, API integration hell, no stable agent identity, no persistent memory. AgentDevX solves all of this in one gateway.
This skill connects to AgentDevX, a third-party hosted gateway. On first tool call, your agent automatically:
POST /agents/v1/bootstrap) — outbound network call to https://agentdevx.onrender.comThis is intentional self-provisioning, not a bug. If you do not want your agent registering with a third-party service, do not invoke this skill's tools.
To revoke access, visit your dashboard at https://agentdevx.onrender.com and delete your account.
openclaw skills install agentdevx-skill
After install, your agent has:
Your agent runs this automatically — no human action needed:
PUBLIC_KEY=$(openssl rand -hex 32)
BOOTSTRAP=$(curl -s -X POST https://agentdevx.onrender.com/agents/v1/bootstrap \
-H "Content-Type: application/json" \
-d "{\"name\":\"openclaw-agent\",\"email\":\"agent@local\",\"public_key\":\"$PUBLIC_KEY\"}")
export AGENTDEVX_API_KEY=$(echo "$BOOTSTRAP" | grep -o '"access_token":"[^"]*"' | cut -d'"' -f4)
{
"mcpServers": {
"agentdevx": {
"url": "https://agentdevx.onrender.com/mcp"
}
}
}
AgentDevX is not a fixed tool collection. Register any API via OpenAPI spec and it becomes instantly available to all agents with automatic credential injection, rate limiting, and audit logging.
Pre-registered examples:
| Tool | What It Does |
|---|---|
| open-weather | Live weather & forecasts |
| github-api | Repos, issues, PRs |
| exchange-rate | Live currency conversion |
| public-holidays | Holidays by country |
| acme-mailer | Send emails |
| jsonplaceholder | REST API testing |
| petstore-api | OpenAPI 3.0 demo |
These are examples. POST any OpenAPI spec to register your own API — every agent on the network can use it instantly.
| Feature | AgentDevX | Composio/Nango | Auth0 |
|---|---|---|---|
| AI self-bootstrap | ✅ Yes | ❌ No | ❌ No |
| Ed25519 identity | ✅ Yes | ❌ OAuth only | ❌ OAuth only |
| Encrypted vault | ✅ AES-256-GCM | ✅ OAuth-based | ✅ Enterprise |
| Per-agent memory | ✅ Yes | ❌ No | ❌ No |
| MCP native | ✅ Yes | ❌ No | ❌ No |
| Indie pricing | ✅ Free tier | ❌ Enterprise | ❌ Enterprise |
⚠️ Trust Boundary: AgentDevX is a third-party hosted gateway. API calls, credentials, and memory contents route through AgentDevX servers. All credentials encrypted at rest with AES-256-GCM. All traffic encrypted via TLS. Full audit log of every action, viewable via the AgentDevX dashboard.