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

@agentids/cli

v0.1.1

Published

CLI tool for AgentID — register agents, manage capabilities, and check reputation

Readme

@agentids/cli

CLI tool for the AgentID trust registry. Register AI agents, manage capabilities, check reputation, and stake on Intuition Protocol.

Install

npm install -g @agentids/cli

Or run locally:

cd apps/cli
cp .env.example .env   # Edit with your keys
pnpm build
node dist/index.js

Configuration

Create a .env file:

# Required for write commands (register, stake, capability-add)
PRIVATE_KEY=0xYOUR_PRIVATE_KEY_HERE

# Required for register (IPFS upload)
PINATA_API_JWT=your_pinata_jwt_here

# Network: testnet (default) or mainnet
NETWORK=testnet

Read-only commands (info, search) work without a private key.

Commands

agentid register

Register a new AI agent interactively.

$ agentid register

? Agent name: CodeReviewBot
? Description: AI agent that reviews pull requests
? Image URL: https://example.com/bot.png
? Endpoint type: MCP
? Endpoint URL: https://bot.com/mcp
? Initial stake in ETH (default 0.001): 0.01
? Add a capability? Y
? Capability name: code-generation
? Capability category: code-generation

Agent registered!
  Atom ID: 0x199aa1e...
  Stake:   0.01 ETH

agentid info <identifier>

View agent details and trust score. Accepts atom ID or agent name.

$ agentid info CodeReviewBot

Agent: CodeReviewBot
  Atom ID: 0x199aa1e...
  Active:  Yes

Trust Score: 72/100 [HIGH]
  Staking:    85/100
  Diversity:  60/100
  Sentiment:  90/100
  Operator:   70/100
  Longevity:  45/100
  Feedback:   50/100

Capabilities:
  - code-generation
  - data-analysis

agentid search <query>

Search agents by name.

$ agentid search "code" --limit 5

1. CodeReviewBot
   Atom ID: 0x199aa1e...
   Stake: 5.2 ETH | Stakers: 15

Found 1 agent matching "code"

agentid capability-add <atomId>

Add a capability to an existing agent.

$ agentid capability-add 0x199aa1e...

? Capability name: data-analysis
? Capability category: analysis

Capability added!
  Triple ID: 0x5555...

agentid stake <atomId>

Stake on an agent's FOR vault.

$ agentid stake 0x199aa1e...

? Amount to stake (ETH): 0.1
? Confirm? Y

Staked 0.1 ETH on CodeReviewBot
  Shares received: 95000000000000000

Network

Default: Intuition Testnet (Chain ID: 13579)

| Setting | Value | |---|---| | RPC | https://testnet.rpc.intuition.systems | | MultiVault | 0x2Ece8D4dEdcB9918A398528f3fa4688b1d2CAB91 | | GraphQL | https://testnet.intuition.sh/v1/graphql | | Faucet | https://faucet.intuition.systems |

License

MIT