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

@x402solana/cheshire-eliza

v0.1.1

Published

Cheshire Terminal / Solizard elizaOS characters, body generator, and Clawd bridge

Readme

@elizaos/cheshire-eliza

Cheshire Terminal characters + agent body generator for the Solizardking/eliza fork.

Character

import { solizardCheshireCharacter } from "@elizaos/cheshire-eliza";
// or path: packages/cheshire-eliza/src/characters/solizard-cheshire.ts

Body generator

import { generateAgentBody } from "@elizaos/cheshire-eliza";

const body = generateAgentBody({
  name: "ClawdScout",
  archetype: "trader",
  rails: ["solana", "robinhood"],
});

Clawd Code (CLI companion)

plugins/clawd-code now comes from https://github.com/Solizardking/clawd-code, not a vendored local tree.

| Item | Result | | --- | --- | | Source of truth | Git submodule at plugins/clawd-codehttps://github.com/Solizardking/clawd-code.git | | Pinned commit | 29e3a9dccf6433c1f47710d6dc0470ac0cbec7bc (main) | | .gitmodules | [submodule "plugins/clawd-code"] with that URL | | Package metadata | repository / homepage → Solizardking/clawd-code | | install.sh default | CLAWD_CODE_REPO=https://github.com/Solizardking/clawd-code.git | | Plugin bridge | plugins/clawd-plugin MCP runs sibling CLI via scripts/run-clawd-code.mjs |

Verification

  • Workspace resolve: @solana-clawd/clawd-code@workspace:plugins/clawd-code
  • Bridge tests: bun run --cwd plugins/clawd-plugin test
  • Package tests: bun run --cwd packages/cheshire-eliza test
  • Install smoke: clone + build of Solizardking/clawd-code produces dist/cli.js

Install (canonical CLI)

curl -fsSL https://raw.githubusercontent.com/Solizardking/clawd-code/main/install.sh | sh
import {
  CLAWD_CODE_GITHUB,
  CLAWD_MONOREPO_PATHS,
  clawdStackSummary,
} from "@elizaos/cheshire-eliza";

Plugins (sibling packages)

| Package | Role | | --- | --- | | @solana-clawd/clawd-code | Solana-native AI coding CLI (submodule) | | @solana-clawd/clawd-plugin | Clawd skills + MCP bridge to the CLI | | @elizaos/plugin-robinhood | RH ERC-8004 forge | | @elizaos/plugin-solana-forging | Metaplex mint forge | | @elizaos/plugin-e2b-computer | E2B sandbox computer | | @elizaos/plugin-cheshire-memory | Hermes + Honcho memory | | @elizaos/plugin-clawdbrowser | Official ClawdBrowser tools.md catalog | | @elizaos/plugin-dflow-trade | Official Solana spot via DFlow + Helius |

Communication map

cheshire-eliza character
  → plugin-cheshire-memory (REMEMBER_TRADE / RECALL_MEMORY)
  → plugin-clawdbrowser (SEARCH/DESCRIBE/LIST tools)
  → plugin-dflow-trade (quote/swap)
  → clawd-plugin (skills + MCP)
       → clawd-code CLI (code / trade / research / arena)

ClawdBrowser tools

Agents get the full SOL GPT tool surface via:

import clawdBrowserPlugin from "@elizaos/plugin-clawdbrowser";
// CLAWDBROWSER_TOOLS_MD=/Users/8bit/ClawdBrowser/tools.md

Actions: SEARCH_CLAWD_TOOLS, DESCRIBE_CLAWD_TOOL, LIST_CLAWD_TOOLS.

Solana trading (DeepSeek + DFlow + Helius)

export DEEPSEEK_API_KEY=...
export DFLOW_API_KEY=...
export HELIUS_RPC_URL=https://mainnet.helius-rpc.com/?api-key=...
# optional live:
# export SOLANA_PRIVATE_KEY=...
# export SOLANA_TRADE_LIVE=true

Agent utterances: “quote 0.01 SOL to USDC”, “swap 1 USDC to SOL preview”, “trade readiness”.

See docs/PR_PATH.md for PR + remote map.
See docs/ELIZA_ALIGNMENT.md for ActionPlan / bootstrap conventions.