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

clawsats-indelible

v0.5.1

Published

Persistent blockchain memory for ClawSats AI agents — powered by Indelible. BRC standards, reputation, escrow, messaging, oracles.

Downloads

51

Readme

clawsats-indelible

Persistent blockchain memory for ClawSats AI agents — powered by Indelible.

npm install clawsats-indelible

What's Included

Six BRC standards, ready to use:

| Standard | What it does | Module | |----------|-------------|--------| | BRC-105 | Payment verification middleware | middleware.js | | BRC-52 | Agent identity certificates | identity.js | | BRC-31 | Mutual authentication (Authrite) | auth.js | | BRC-77 | Cryptographically signed actions | signing.js | | BRC-78 | Encrypted agent-to-agent messaging | encryption.js | | SHIP/SLAP | Service discovery & advertising | discovery.js |

Quick Start

Save & Load Agent Memory

import { IndelibleMemoryBridge } from 'clawsats-indelible/bridge'

const bridge = new IndelibleMemoryBridge({
  indelibleUrl: 'https://indelible.one',
  operatorAddress: 'YOUR_OPERATOR_ADDRESS',
  agentAddress: 'YOUR_AGENT_ADDRESS'
})

// Save conversation to blockchain
const result = await bridge.save('my-agent', messages, {
  summary: 'Customer support session'
})

// Load previous context
const context = await bridge.load('my-agent', { numSessions: 3 })

Agent Identity (BRC-52)

import { createAgentCertificate, verifyAgentCertificate } from 'clawsats-indelible/identity'

const cert = await createAgentCertificate({
  operatorWif: 'OPERATOR_PRIVATE_KEY',
  agentPubKey: 'AGENT_PUBLIC_KEY',
  agentName: 'MyAgent',
  capabilities: ['save_context', 'load_context']
})

const verified = await verifyAgentCertificate(cert.serialized)
// { valid: true, fields: { agentName: 'MyAgent', capabilities: [...] } }

Signed Actions (BRC-77)

import { signAction, verifyAction } from 'clawsats-indelible/signing'

const signed = signAction({
  privateKeyWif: 'AGENT_PRIVATE_KEY',
  action: 'save_context',
  payload: { summary: 'Session data', messageCount: 5 }
})

const valid = verifyAction({
  signature: signed.signature,
  action: signed.action,
  timestamp: signed.timestamp,
  payload: { summary: 'Session data', messageCount: 5 }
})

Encrypted Messaging (BRC-78)

import { encryptMessage, decryptMessage } from 'clawsats-indelible/encryption'

// Agent 1 encrypts
const encrypted = encryptMessage({
  senderWif: 'SENDER_PRIVATE_KEY',
  recipientPubKey: 'RECIPIENT_PUBLIC_KEY',
  message: { context: 'handoff data', sessionId: 'abc123' }
})

// Agent 2 decrypts
const decrypted = decryptMessage({
  recipientWif: 'RECIPIENT_PRIVATE_KEY',
  encryptedHex: encrypted,
  parseJson: true
})

Service Discovery (SHIP/SLAP)

import { createServiceBroadcaster, createServiceResolver } from 'clawsats-indelible/discovery'

// Advertise capabilities
const { broadcaster, topics } = createServiceBroadcaster({
  capabilities: ['save_context', 'load_context']
})

// Discover agents
const { resolver, lookup } = createServiceResolver()
const results = await lookup('save_context')

Payment Middleware (BRC-105)

import { createIndeliblePaymentMiddleware } from 'clawsats-indelible/middleware'

const paywall = createIndeliblePaymentMiddleware({
  operatorAddress: 'YOUR_ADDRESS',
  calculatePrice: (req) => {
    if (req.path === '/api/save') return 15  // 15 sats
    if (req.path === '/api/load') return 10  // 10 sats
    return 0
  }
})

app.post('/api/save', paywall, (req, res) => {
  // req.payment contains verified tx details
})

Pricing

| Action | Cost | |--------|------| | save_context | 15 sats | | load_context | 10 sats | | Protocol fee | 2 sats |

Example

Run the full demo showing all 6 BRC standards:

node examples/agent-demo.js [indelible-url]

License

Open BSV License v4 — see LICENSE