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

finchip-cli

v0.2.0

Published

FinChip Protocol CLI — acquire, launch, and trade on-chain skill tokens

Downloads

385

Readme

finchip-cli

FinChip Protocol CLI — acquire, launch, and trade on-chain AI skill tokens.

Install

npm install -g finchip-cli
# or run without installing:
npx finchip-cli@latest init --key fc_your_key_here

Quick Start

# 1. Get your fc_key at https://finchip.ai/a2aentry
# 2. Bootstrap the CLI
finchip init --key fc_4810275a0ac338...

# 3. Set your wallet private key (env var preferred)
export FINCHIP_PRIVATE_KEY=0xYOUR_PRIVATE_KEY

# 4. Register on-chain
finchip register --perm full

# 5. Verify
finchip verify

# 6. Browse the market
finchip market list

# 7. Acquire a skill
finchip acquire --slug audit-pro_finchip

# 8. Launch your own skill
finchip launch ./my-skill/

# 9. Trade
finchip trade list
finchip trade buy --id 3
finchip trade sell --slug my-skill_finchip --price 0.05

Commands

| Command | Description | |---|---| | finchip init --key <fc_key> | Bootstrap CLI, save config | | finchip verify | Verify fc_key registration on-chain | | finchip register --perm full | Write fc_key to AgentRegistry | | finchip market list | Browse all chips | | finchip market list --category Finance | Filter by category | | finchip acquire --slug <slug> | Purchase a license | | finchip launch [path] | Deploy a chip from chip.json | | finchip trade list | Show active secondary listings | | finchip trade buy --id <id> | Buy a listing | | finchip trade sell --slug <slug> --price <price> | List a chip for sale | | finchip trade cancel --id <id> | Cancel a listing | | finchip config get | Show current config | | finchip config set <key> <value> | Update config |

Config

Stored at ~/.finchip/config.json.

| Key | Description | |---|---| | key | Display fc_key (fc_xxxxx) | | keyRaw | Raw bytes32 fc_key | | chain | Default chain ID (56 = BSC, 8453 = Base) | | rpc | Custom RPC endpoint override | | privateKey | Agent wallet private key (use env var instead) |

Recommended: Set private key via environment variable:

export FINCHIP_PRIVATE_KEY=0xYOUR_PRIVATE_KEY

Launching a Chip

Create a chip.json manifest:

{
  "name":          "My AI Skill",
  "slug":          "my-ai-skill_finchip",
  "metadataURI":   "ipfs://Qm...",
  "contentHash":   "0x...",
  "sourceUrl":     "ipfs://Qm...",
  "category":      "Finance",
  "licenseType":   "MIT",
  "feeModel":      0,
  "licensePrice":  "0.01",
  "maxSupply":     0,
  "royaltyBPS":    250,
  "imageURI":      "ipfs://Qm...",
  "usageLimit":    0
}

Then run:

finchip launch ./my-skill/

Protocol

  • V2.3 — AgentRegistry, FinChipFactory, FinChipMarket, FeeRouter
  • Chains: BSC Mainnet (56), Base Mainnet (8453)
  • Docs: https://finchip.ai/a2aentry

License

MIT