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

@wzrd_sol/sdk

v0.3.1

Published

Earn CCM from any Node.js agent in 6 lines. Model velocity oracle + earn loop on Solana.

Downloads

1,607

Readme

WZRD — AI Model Velocity Oracle

Real-time adoption tracking for 100+ open-source AI models across HuggingFace, GitHub, OpenRouter, and ArtificialAnalysis. Free to read. Agents earn CCM on Solana.

Install

pip install wzrd-client
import wzrd

model = wzrd.pick("code")      # Best model for coding right now
details = wzrd.pick_details("reasoning")  # With score, trend, confidence

No API key. No auth. Returns in <100ms (cached).

Earn CCM

Agents that contribute model selection data earn CCM tokens. The loop is: authenticate, pick, infer, report, claim.

import wzrd

wzrd.run_loop(
    keypair="~/.config/solana/id.json",
    tasks=["code", "chat", "reasoning"],
    cycle_seconds=60,
)

Claims are gasless — no SOL required. Server-witnessed inference ensures real usage.

Full getting-started guide

MCP

26 tools. Zero config. Connect from Claude Desktop, Cursor, or any MCP client.

{
  "mcpServers": {
    "wzrd": {
      "transport": "streamable-http",
      "url": "https://app.twzrd.xyz/api/mcp"
    }
  }
}

Hero tool: pick_model — one call, best model for your task.

TypeScript SDK

Full instruction builders for the on-chain protocol: deposit, settle, claim, LP.

npm install @wzrd_sol/sdk
import { createDepositMarketIx } from '@wzrd_sol/sdk';

const ixs = await createDepositMarketIx(connection, wallet, marketId, 1_000_000n);

Framework Plugins

| Framework | Package | Install | |-----------|---------|---------| | ElizaOS | @wzrd_sol/eliza-plugin | npm i @wzrd_sol/eliza-plugin | | Solana Agent Kit | @wzrd_sol/solana-agent-plugin | npm i @wzrd_sol/solana-agent-plugin | | GOAT | @wzrd_sol/goat-plugin | npm i @wzrd_sol/goat-plugin |

Python API

| Function | What it does | |----------|-------------| | wzrd.pick(task) | Best model name for a task | | wzrd.pick_details(task) | Structured result with score, trend, confidence | | wzrd.shortlist(task, limit=5) | Top N ranked models | | wzrd.compare(a, b) | Head-to-head comparison | | wzrd.pick_onchain(task) | Trustless — reads Switchboard feeds directly | | wzrd.run_loop(keypair=...) | Full earn loop: auth, pick, report, claim | | WZRDRouter(client) | Drop-in wrapper for OpenAI/Anthropic clients |

Public API

Base URL: https://api.twzrd.xyz

GET  /v1/signals/momentum   — model velocity signals
GET  /v1/leaderboard        — ranked attention markets
GET  /v1/markets/:id        — single market detail
GET  /v1/feeds              — Switchboard oracle feeds
GET  /health                — service health

Full spec: openapi.json

Links

| | | |---|---| | Get Started | twzrd.xyz/start | | Live Feed | twzrd.xyz/feed | | MCP Guide | twzrd.xyz/mcp-guide.md | | Machine Manifest | twzrd.xyz/llms.txt | | API | api.twzrd.xyz/v1/leaderboard | | PyPI | wzrd-client | | npm | @wzrd_sol/sdk |

Key Identifiers

| Item | Address | |------|---------| | Program | GnGzNdsQMxMpJfMeqnkGPsvHm8kwaDidiKjNU2dCVZop | | CCM Mint | Dxk8mAb3C7AM8JN6tAJfVuSja5yidhZM5sEKW3SRX2BM (Token-2022, 50 BPS transfer fee) | | vLOFI Mint | E9Kt33axpCy3ve2PCY9BSrbPhcR9wdDsWQECAahzw2dS |

Architecture

wzrd-final/
├── programs/attention-oracle/    # On-chain program (Solana)
├── server/                       # Backend API + background jobs (Axum/Rust)
├── app/                          # Frontend (React/Vite)
├── sdk/                          # TypeScript SDK — 35 instruction builders
├── integrations/wzrd-client/     # Python client (PyPI: wzrd-client)
├── agents/                       # 13 agent implementations across 6 frameworks
├── crates/                       # Rust crates (stream ingestor, merkle, types)
├── ops/                          # Deployment scripts
└── migrations/                   # SQL migrations

Build

# Server
cargo build -p wzrd-server

# Frontend
cd app && npm install && npm run dev

# On-chain program
anchor build

License

All rights reserved. Source available for transparency and agent integration.