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

@blockchainoracle/openclaw-verifiable-execution

v0.4.0

Published

OpenClaw plugin that captures every tool call inside an agent session, flushes the log to 0G Storage at session end, and mints an AgenticID iNFT anchoring the rootHash on-chain. Produces a /verify/<tokenId> URL the dashboard can verify cold (network is im

Downloads

2,044

Readme

@blockchainoracle/openclaw-verifiable-execution

Etherscan for AI agents. Every agent run becomes a cryptographically signed, on-chain-anchored receipt. Share a URL, verify any run cold.

The AGENTSCAN OpenClaw plugin. Captures every tool call inside an agent session (Claude Code's WebSearch/Read/Bash, MCP tools, OpenClaw gateway tools — all of them), encrypts the log with a per-session AES-256-GCM key, flushes it to 0G Storage, and mints an AgenticID iNFT (ERC-7857) anchoring the root hash on-chain.

The verifier dashboard at agentscan.online resolves the proof chain in any browser — no wallet, no login. Operators reveal content via the in-chat /share command; the key travels in the URL fragment and never reaches the server.

Install (testnet, ~3 minutes)

These steps in order. Skipping any of them is the single most common reason the plugin appears to "not work."

# 1. Install from npm via OpenClaw's plugin installer
openclaw plugins install @blockchainoracle/openclaw-verifiable-execution

# 2. Enable it
openclaw plugins enable verifiable-execution

# 3. Restart the gateway so the new plugin loads
openclaw gateway restart

The plugin creates a signing wallet at ~/.openclaw/verifiable-execution/wallet.json on first load and prints the address to the gateway log. Copy that address.

4. Fund the wallet (REQUIRED, free on testnet)

The plugin pays gas every time it mints a receipt. Without funds, every anchor attempt fails with insufficient funds for gas.

  • Open faucet.0g.ai
  • Paste your wallet address
  • Claim 0.1 0G (free, daily limit)

Mainnet has no faucet — bridge or CEX-withdraw 0G to your wallet on the Aristotle chain (chainId 16661).

Usage

Send any message to an OpenClaw bot you have wired (Telegram, Discord, CLI). On every agent_end, the plugin auto-anchors and emits a structured log line:

{
  "level": "INFO",
  "component": "agent_end",
  "msg": "Session anchored on-chain",
  "data": {
    "tokenId": "42",
    "verifyUrl": "https://agentscan.online/verify/42"
  }
}

Cold visitors to that URL see a 🔒 encrypted-locked page (the proof chain verifies, content stays hidden). To share the content, type /share in the chat — the bot replies with a URL containing your reveal key in the URL fragment (#k=...). Recipients decrypt client-side in their browser via WebCrypto; the key never reaches the verifier server.

Networks

| Network | chainId | AgenticID | TEE Verifier | |---|---|---|---| | 0G Galileo (testnet) | 16602 | 0xd4a5eA2501810d7C81464aa3CdBa58Bfded09E38 | 0x058fc372562D195F1c2356e4DcFfD94de98Ec3ad | | 0G Aristotle (mainnet) | 16661 | 0xC6f7fB1511a7483C6e14258c70529e37ec698937 | 0x4fffB58B488bBeD9f072Ad68EeB77F643b8858D2 |

Documentation

Full guide at docs.agentscan.online:

  • Per-field config reference (~/.openclaw/openclaw.json)
  • Mainnet deployment walkthrough
  • Slash commands (/share, /tokens)
  • Reading a receipt + the entry types
  • Verifying a receipt cold (no plugin install needed)
  • REST API reference (/api/verify/<tokenId>)
  • Embedding the dashboard or pointing it at a custom AgenticID

License

Apache-2.0. See LICENSE and the source repo.