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

@calebux/agent-kit

v0.1.1

Published

Governed multi-agent orchestration on Stellar — wallet provisioning, Soroban spend caps, on-chain reputation, and x402 payments in one package

Readme

@calebux/agent-kit

Governed multi-agent orchestration on Stellar.

Build AI agents that pay for data, enforce on-chain spend limits, and earn verifiable reputation — without writing any infrastructure code.

npm install @calebux/agent-kit

What it does

| Feature | Details | |---|---| | Wallet provisioning | Every agent gets a fresh Stellar keypair, auto-funded via Friendbot on testnet | | On-chain spend caps | Soroban Shield Contract blocks payments that exceed the agent's limit — enforced on-chain, not just in code | | x402 payments | pay() probes any URL; if a 402 Payment Required comes back, it pays in XLM and retries automatically | | Verifiable reputation | Each success/failure is recorded on the Identity Registry (Soroban); scores are readable by anyone | | Agent-to-agent payments | Agents can pay each other in XLM with on-chain memos — real settlement, not mock | | Streaming events | Pass an EventEmitter to stream logs, agent status, and results to any UI in real time |


Quick start

import { defineAgent, createOrchestrator } from '@calebux/agent-kit'

const researcher = defineAgent({
  id: 'researcher',
  spendCapXlm: 1,                     // enforced on-chain by Soroban Shield Contract
  run: async (task, { pay }) => {
    // pay() handles x402 automatically — probe → pay XLM → retry
    const data = await pay<{ summary: string }>('https://my-x402-api.com/search?q=' + task)
    return { result: data.summary }
  }
})

const { run } = createOrchestrator([researcher], {
  shieldContractId:   process.env.SHIELD_CONTRACT_ID,
  registryContractId: process.env.REGISTRY_CONTRACT_ID,
})

const report = await run('What is the current XLM price?')
console.log(report)
// {
//   task, report,
//   wallets:    { researcher: 'G...' },   // Stellar public keys
//   spent:      { researcher: 100000 },   // stroops
//   reputation: { researcher: 5250 },     // on-chain score
//   txHashes:   { researcher: ['...'] },  // Stellar tx hashes
// }

Multiple agents with decomposition + synthesis

import Anthropic from '@anthropic-ai/sdk'
import { defineAgent, createOrchestrator } from '@calebux/agent-kit'

const anthropic = new Anthropic()

const webAgent = defineAgent({
  id: 'web',
  spendCapXlm: 2,
  run: async (task, { pay }) => {
    const results = await pay<string[]>('https://search.example.com?q=' + task)
    return { result: results.join('\n') }
  }
})

const onChainAgent = defineAgent({
  id: 'onchain',
  spendCapXlm: 0.5,
  run: async (task, { wallet, pay }) => {
    // wallet is a Stellar Keypair — use it to sign your own transactions
    const stats = await pay('https://my-soroban-api.com/stats')
    return { result: JSON.stringify(stats) }
  }
})

const { run } = createOrchestrator([webAgent, onChainAgent], {
  shieldContractId:   process.env.SHIELD_CONTRACT_ID,
  registryContractId: process.env.REGISTRY_CONTRACT_ID,

  // Split the task into per-agent subtasks
  decompose: async (task, agentIds) => {
    const resp = await anthropic.messages.create({
      model: 'claude-sonnet-4-6',
      max_tokens: 256,
      messages: [{ role: 'user', content:
        `Split this task for agents [${agentIds.join(', ')}].
Return JSON: { ${agentIds.map(id => `"${id}": "subtask"`).join(', ')} }
Task: "${task}"` }]
    })
    const text = resp.content[0].type === 'text' ? resp.content[0].text : '{}'
    return JSON.parse(text.match(/\{[\s\S]*\}/)?.[0] ?? '{}')
  },

  // Synthesize all agent outputs into a final report
  synthesize: async (task, results) => {
    const context = results.map(r => `### ${r.agentId}\n${r.result}`).join('\n\n')
    const resp = await anthropic.messages.create({
      model: 'claude-sonnet-4-6',
      max_tokens: 1024,
      messages: [{ role: 'user', content:
        `Write a concise report for: "${task}"\n\nFindings:\n${context}` }]
    })
    return resp.content[0].type === 'text' ? resp.content[0].text : context
  }
})

const report = await run('Analyze current DeFi activity on Stellar')

Streaming to a UI

Pass any EventEmitter to stream real-time progress:

import { EventEmitter } from 'events'

const emitter = new EventEmitter()

emitter.on('log',          ({ message, level }) => console.log(`[${level}] ${message}`))
emitter.on('agent_status', ({ agent, status, spent, txHashes }) => updateUI(agent, status))
emitter.on('wallets',      (map) => console.log('wallets:', map))
emitter.on('complete',     ({ report, wallets, spent, reputation, txHashes }) => done())
emitter.on('error',        ({ message }) => console.error(message))

await run('my task', emitter)

Event reference:

| Event | Payload | |---|---| | log | { message: string, level: "info" \| "success" \| "error" } | | agent_status | { agent, status, spent?, txHashes?, paymentMode? } | | wallets | Record<agentId, stellarPublicKey> | | complete | { report, wallets, spent, reputation, txHashes, timestamp } | | error | { message: string } |


Low-level utilities

import {
  payAndFetch,
  submitXlmPayment,
  agentToAgentPayment,
  ShieldContract,
  IdentityRegistry,
} from '@calebux/agent-kit'
import { SorobanRpc, Keypair } from '@stellar/stellar-sdk'

// x402 payment helper (probe → pay → retry)
const { data, paymentMode } = await payAndFetch('https://api.example.com/data', keypair, txHashes)

// Direct XLM transfer
const txHash = await submitXlmPayment(fromKeypair, 'G...DEST', '0.5')

// Agent-to-agent payment with on-chain memo
const hash = await agentToAgentPayment(fromKeypair, toAddress, '0.001', 'myapp:agent-a->agent-b')

const rpc = new SorobanRpc.Server('https://soroban-testnet.stellar.org')

// Shield Contract — per-agent spend caps
const shield = new ShieldContract(process.env.SHIELD_CONTRACT_ID!, rpc, adminKeypair)
await shield.registerAgent('my-agent', agentKeypair, 10_000_000n)  // 1 XLM cap
await shield.authorizeSpend('my-agent', 100_000n)                   // blocks if over cap

// Identity Registry — verifiable reputation
const registry = new IdentityRegistry(process.env.REGISTRY_CONTRACT_ID!, rpc, adminKeypair)
await registry.registerAgent('my-agent', 'My Agent', 'research')
await registry.recordSuccess('my-agent', agentKeypair)
const score = await registry.getReputation('my-agent')              // number | null

Deploy your own contracts

The Soroban contracts (Shield + Identity Registry) live in the Aegis repo.

git clone https://github.com/Calebux/Aegis
cd Aegis
bash contracts/deploy.sh

Public testnet deployments (Stellar testnet):

| Contract | ID | |---|---| | Shield Contract | CDD4J3B3Y44SDUKZQYEU2XPS4KBGAMLUQEWVSR2I25GXFGAQ6KD453N5 | | Identity Registry | CD5SGG7E6GIZPCGSOAKLCKRF5RRNZ3462MX4RQDT3NE6BD74GVAOMHET |


Environment variables

| Variable | Description | |---|---| | STELLAR_NETWORK | testnet (default) or futurenet | | STELLAR_HORIZON_URL | Horizon endpoint (default: testnet) | | STELLAR_RPC_URL | Soroban RPC endpoint (default: testnet) | | SHIELD_CONTRACT_ID | Shield Contract address | | REGISTRY_CONTRACT_ID | Identity Registry address | | ORCHESTRATOR_SECRET_KEY | Admin keypair for on-chain registration |

All contract options are optional — omit them to run in dev mode with no on-chain enforcement.


Reference implementation

Aegis is the full reference implementation: four specialized agents (Scout, Ledger, Signal, Scribe), a live x402 payment server, agent-to-agent payments, and a Next.js dashboard — all built on @calebux/agent-kit.


License

MIT