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

@sigilx/skills

v1.0.1

Published

SigilX verification oracle skill for OpenClaw agents

Readme

@sigilx/skills

Decentralized proof verification and certification for AI agents. Submit mathematical proofs, smart contracts, or formal specs — get permanent on-chain certificates backed by independent evaluator committees.

What is SigilX?

SigilX is a certification protocol. You submit work. Staked evaluators independently verify it. Correct work gets a permanent on-chain certificate. Wrong evaluators get slashed.

  • Formal verification — Lean 4 typecheck + Mathlib cross-verification
  • Contract testing — Foundry fork tests, invariant fuzzing, symbolic execution
  • On-chain certificates — ERC-8183 job escrow with evaluator quorum
  • Payments — x402 (USDC on Base), MPP, or Privy wallet

Install

npm install @sigilx/skills

For Agents

Any agent that speaks HTTP can use SigilX. Send a POST, pay via x402, get a verified result.

Free actions (no payment required)

# Chat / ask questions
curl -X POST https://api.sigilx.xyz/v1/jobs \
  -H "Content-Type: application/json" \
  -d '{"action": "chat", "input": "What can you verify?"}'

# Research a contract
curl -X POST https://api.sigilx.xyz/v1/jobs \
  -H "Content-Type: application/json" \
  -d '{"action": "research_contract", "input": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}'

Paid actions (x402 USDC on Base)

# Step 1: Send request without payment — get 402 challenge
curl -X POST https://api.sigilx.xyz/v1/jobs \
  -H "Content-Type: application/json" \
  -d '{"action": "verify_proof", "input": "theorem add_zero (n : Nat) : n + 0 = n := by rfl"}'

# Step 2: Sign x402 payment and resend with PAYMENT-SIGNATURE header
# The 402 response tells you: amount, asset (USDC), payTo (treasury), network (Base)

Pricing

| Action | Price | What it does | |--------|-------|-------------| | chat | Free | Ask questions, get guidance | | research_contract | Free | Analyze any deployed contract | | check_proof | Free | Quick syntax check | | verify_proof | $0.50 | Full Lean 4 typecheck + cross-verification | | audit_cert | $0.50 | Re-verify an existing certificate | | forge_test | $5.00 | Run Foundry test suite | | formal_analysis | $5.00 | Formal property verification | | mainnet_fork_test | $7.50 | Test against live mainnet state | | deep_audit | $10.00 | Multi-engine comprehensive audit | | standard_certificate | $25.00 | On-chain cert with 3-evaluator quorum | | premium_certificate | $150.00 | BFT quorum certificate (7-13 evaluators) |

Payment Rails

| Rail | Header | Who uses it | |------|--------|------------| | x402 | PAYMENT-SIGNATURE | Agents with wallets | | MPP | MPP-Authorization | Tempo-compatible agents | | Privy | Authorization: Bearer <jwt> | Human users on sigilx.xyz |

Response Format

Every paid action returns structured JSON:

{
  "ok": true,
  "jobId": "uuid",
  "status": "queued",
  "pollUrl": "https://api.sigilx.xyz/v1/jobs/{jobId}",
  "streamUrl": "https://api.sigilx.xyz/v1/jobs/{jobId}/stream",
  "jobToken": "eyJ..."
}

Verification results include:

{
  "verdict": "PASS",
  "certHash": "0x...",
  "ipfsCid": "bafkrei...",
  "leanVersion": "4.24.0",
  "sorryCount": 0,
  "crossVerified": true
}

Contracts (Base Sepolia)

| Contract | Address | |----------|---------| | CertificateRegistry | 0xc1c20B5507f4F27480Fe580aD7C3dE8A335caBfE | | SigilXJobRouter | 0xB659D06d2E06afFCAeeEd683b0997f9dd8EBA2Ee | | EvaluatorRegistry | 0x927ab46ffe72834591032fb259438f4314cf86c3 | | FeeRouter | 0x010F576Ba8BA6f22c7365Eeb9E3a745327f7452F |

Links

License

MIT