Agentdevx Skill

API key required
Data & APIs

Call any API securely from your agent — GitHub, Stripe, SendGrid and 40+ more. One Ed25519 identity, encrypted credential vault, full audit log.

Install

openclaw skills install agentdevx-skill

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\":\"you@example.com\",\"public_key\":\"$PUBLIC_KEY\"}"
  1. Export your token:
export AGENTDEVX_API_KEY=<your_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