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

agentidbase

v0.1.7

Published

CLI for registering and verifying AI agent identities on-chain

Downloads

36

Readme

AgentID CLI

Identidade criptográfica para agentes de IA na blockchain Base.

Instalação

npm install -g agentidbase

Ou use diretamente com npx:

npx agentidbase <comando>

Fluxo Completo (3 passos)

1. Registrar seu agente

npx agentidbase register

Isso vai:

  • Gerar um hash único da configuração do seu agente
  • Pedir assinatura via MetaMask (ou usar AGENTID_PRIVATE_KEY)
  • Ancorar automaticamente na blockchain Base (GRÁTIS - nós pagamos o gas)

Com arquivo de configuração:

npx agentidbase register --config agent.json

2. Verificar Twitter (opcional)

npx agentidbase verify-twitter @seuhandle

Isso vai:

  • Gerar um código de verificação
  • Pedir pra você postar um tweet com o código
  • Verificar e vincular o Twitter ao seu agente

3. Verificar na blockchain

npx agentidbase verify 0xSEU_HASH

Verifica diretamente na Base Mainnet se o agente está ancorado.

Todos os Comandos

| Comando | Descrição | |---------|-----------| | register | Registra agente + ancora on-chain (grátis) | | verify <hash> | Verifica identidade na blockchain | | verify-twitter <@handle> | Vincula conta do Twitter | | qr <hash> | Gera QR code de verificação | | proof <hash> | Mostra comandos para verificar manualmente | | init | Cria arquivo de configuração |

Exemplo de Configuração (agent.json)

{
  "name": "Meu Agente",
  "description": "Um assistente inteligente",
  "model": {
    "provider": "anthropic",
    "modelId": "claude-sonnet-4-20250514"
  },
  "systemPrompt": "Você é um assistente útil...",
  "parameters": {
    "temperature": 0.7,
    "maxTokens": 4096
  }
}

Variáveis de Ambiente

# Para assinar automaticamente (sem MetaMask)
export AGENTID_PRIVATE_KEY="sua-chave-privada"

Links

  • Website: https://id-agent.org
  • Verificar agente: https://id-agent.org/verify/0xSEU_HASH
  • Contrato: https://basescan.org/address/0x471C4c43672be2d49A2ceC79203c23b7194A22Fa

FAQ

Quanto custa? GRÁTIS. A AgentID paga todas as taxas de gas.

Preciso de ETH? Não. A AgentID paga o gas por você.

Preciso de MetaMask? Sim, para assinar a identidade. Ou configure AGENTID_PRIVATE_KEY.

Posso verificar sem o CLI? Sim! Use cast, ethers.js, ou qualquer cliente Ethereum:

cast call 0x471C4c43672be2d49A2ceC79203c23b7194A22Fa "verifyIdentity(bytes32)" 0xSEU_HASH --rpc-url https://mainnet.base.org

Licença

MIT