npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@agentdevx/install

v1.0.1

Published

Give your AI hands. The identity and security layer every AI agent needs — Ed25519 identity, encrypted vault, OPA policy engine, zero human setup.

Downloads

199

Readme

AgentDevX SDK

Give your AI hands.

The identity and security infrastructure every AI agent needs. Not a tool collection — a gateway. Register any API via OpenAPI spec, and every agent gets cryptographic identity, encrypted credential storage, automatic credential injection, and a full audit trail.

npm License: MIT Smithery

What AgentDevX Is

Every developer building an AI agent hits the same wall: auth spaghetti, credential sprawl, integration hell, no stable agent identity, no persistent memory. AgentDevX solves all of this in one gateway.

| Problem | AgentDevX Solution | |---------|-------------------| | Auth spaghetti | One Ed25519 cryptographic identity per agent | | Credential sprawl | AES-256-GCM encrypted vault, scoped per agent | | Integration hell | Register any API via OpenAPI spec, call via proxy | | No agent identity | Stable cryptographic identity across all tools | | No memory | Encrypted per-agent memory, persists across sessions |

Why It's Different

The only gateway an AI agent can discover, install, and use entirely on its own — no human OAuth, no manual key exchange, no dashboard.

| Feature | AgentDevX | Composio/Nango | Auth0 | |---------|-----------|----------------|-------| | AI self-bootstrap | ✅ | ❌ | ❌ | | Ed25519 identity | ✅ | ❌ | ❌ | | Encrypted vault | ✅ AES-256-GCM | ✅ OAuth-based | ✅ Enterprise | | Per-agent memory | ✅ | ❌ | ❌ | | MCP native | ✅ | ❌ | ❌ | | Indie pricing | ✅ Free tier | ❌ | ❌ |

Quick Start

npx @agentdevx/install

Bootstrap Your Agent

One call. No human needed.

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\"}"

Returns: JWT + 75,000 free credits + instant access to all registered tools.

Connect via MCP

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

Works with Claude Desktop, Cursor, Windsurf, and any MCP-compatible client.

What Your Agent Gets

  • 🔐 Ed25519 identity — cryptographic, not OAuth tokens
  • 🔒 AES-256-GCM vault — store any API key, auto-injected on every call
  • 🛡️ OPA policy engine — access control, dry-run mode, capability tags
  • 📋 Immutable audit log — every tool call recorded
  • 🧠 Persistent memory — encrypted per-agent state across sessions
  • 42+ pre-registered tools — plus register your own via OpenAPI spec
  • 🌐 MCP-native — auto-discovery, protocol 2025-03-26

API Reference

| Endpoint | Method | Description | |----------|--------|-------------| | /agents/v1/bootstrap | POST | Create agent + get JWT + 75k credits | | /agents/me | GET | Agent profile + credit balance | | /agents/me/memory | POST/GET | Read/write encrypted memory | | /proxy/call | POST | Execute any registered tool | | /credentials | POST | Store encrypted API key | | /billing/checkout | POST | Create payment checkout | | /mcp | POST | MCP JSON-RPC endpoint |

Pricing

| Plan | Price | Calls/day | |------|-------|-----------| | Free | $0 | 100/day + 75k credits | | Starter | $8/mo | 500/day | | Pro | $12/mo | 5,000/day | | Scale | $29/mo | Unlimited |

Links

  • 🌐 Gateway: https://agentdevx.onrender.com
  • 📊 Smithery: https://smithery.ai/server/io.github.mirajmahmudul/agentdevx
  • 🦞 ClawHub: https://clawhub.ai/mirajmahmudul/agentdevx-skill
  • 📦 npm: https://www.npmjs.com/package/@agentdevx/install

License

MIT © mirajmahmudul