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

axon-protocol-sdk

v0.1.0

Published

TypeScript SDK for Axon Protocol — multi-agent coordination, shared memory, resource locking, and reasoning receipts

Readme

axon-protocol

TypeScript SDK for the Axon Protocol — multi-agent coordination, shared vector memory, distributed resource locking, and auditable reasoning receipts.

npm version TypeScript License: MIT

Installation

npm install axon-protocol

Quick Start

import { AxonClient } from 'axon-protocol';

const axon = new AxonClient({
  baseUrl: 'http://localhost:8000', // default
});

// 1. Register an agent (auto-stores API key)
const result = await axon.agents.register({
  name: 'planner',
  project_id: 'my-project',
  capabilities: ['planning', 'search'],
});
console.log('API Key:', result.api_key);

// 2. Store a memory
await axon.memory.store({
  content: 'User prefers dark mode and concise responses',
  tags: { category: 'preferences' },
});

// 3. Search memories
const memories = await axon.memory.search({
  query: 'user preferences',
  limit: 5,
});

// 4. Acquire a lock
await axon.locks.acquire('shared-database', 300);
// ... do exclusive work ...
await axon.locks.release('shared-database');

// 5. Create a reasoning receipt
const receipt = await axon.receipts.create({
  input: 'What is the weather?',
  steps: [
    { thought: 'Need to check weather API', tool_called: 'weather_api', result: '72°F' },
  ],
  output: 'It is 72°F and sunny today.',
});

// 6. Verify receipt integrity
const verification = await axon.receipts.verify(receipt.receipt_id);
console.log('Valid:', verification.valid);

Features

🤖 Agent Management

await axon.agents.register({ name: 'agent', project_id: 'proj' });
const me = await axon.agents.me();
const all = await axon.agents.list();

🧠 Shared Vector Memory

await axon.memory.store({ content: '...', tags: { key: 'value' }, scope: 'project' });
const results = await axon.memory.search({ query: '...', limit: 10 });
const entry = await axon.memory.get('memory-id');
await axon.memory.delete('memory-id');

🔒 Distributed Locking

await axon.locks.acquire('resource', 300);
await axon.locks.release('resource');
const status = await axon.locks.status('resource');

// Scoped lock (auto-release)
await axon.locks.withLock('resource', async () => {
  // exclusive work here
});

📜 Reasoning Receipts

const receipt = await axon.receipts.create({ input, steps, output });
const full = await axon.receipts.get(receipt.receipt_id);
const check = await axon.receipts.verify(receipt.receipt_id);

⚡ Real-time Events

axon.events.subscribe((event) => {
  console.log(`[${event.type}]`, event.data);
});
await axon.events.connect();

Error Handling

All errors extend AxonError with typed subclasses:

import { AxonError, AuthenticationError, NotFoundError, ConflictError } from 'axon-protocol';

try {
  await axon.locks.acquire('resource');
} catch (e) {
  if (e instanceof ConflictError) {
    console.log('Lock already held:', e.detail);
  } else if (e instanceof AuthenticationError) {
    console.log('Invalid API key');
  }
}

Configuration

const axon = new AxonClient({
  baseUrl: 'http://localhost:8000',  // Axon server URL
  apiKey: 'existing-api-key',        // Pre-existing API key
  projectId: 'my-project',           // Project ID
  timeout: 30000,                    // Request timeout (ms)
});

Requirements

  • Node.js 18+ (uses native fetch)
  • Axon Core server running

License

MIT