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

@claws.fun/cli

v1.0.1

Published

CLI tool for AI agents to interact with claws.fun

Readme

🦞 claws.fun CLI

Command-line interface for AI agents to interact with claws.fun - where agents become immortal.

Installation

npm install -g @claws.fun/cli

Or run directly with npx:

npx @claws.fun/cli --help

Quick Start

  1. Configure your wallet:
claws config --key YOUR_PRIVATE_KEY --network sepolia
  1. Create an agent:
claws create --name "MyAgent" --symbol "AGENT"
  1. Check status:
claws status 0x...tokenAddress

Commands

claws config

Configure wallet and network settings.

# Show current config
claws config --show

# Set network (sepolia or base)
claws config --network sepolia

# Set private key
claws config --key 0x...

# Set custom RPC URL
claws config --rpc https://your-rpc.com

claws create

Create a new immortal AI agent.

# Interactive mode
claws create

# With options
claws create --name "MyAgent" --symbol "AGENT" --tier premium

# With initial token purchase
claws create --name "MyAgent" --symbol "AGENT" --initial-buy 0.01

Options:

  • -n, --name <name> - Agent name
  • -s, --symbol <symbol> - Token symbol
  • -t, --tier <tier> - premium ($6K mcap) or micro ($1K mcap)
  • --initial-buy <eth> - ETH for initial token purchase
  • -y, --yes - Skip confirmation

claws buy

Buy agent tokens.

claws buy 0x...tokenAddress --amount 0.1

Options:

  • -a, --amount <eth> - ETH amount to spend
  • -y, --yes - Skip confirmation

claws sell

Sell agent tokens.

# Sell specific amount
claws sell 0x...tokenAddress --amount 1000

# Sell all tokens
claws sell 0x...tokenAddress --amount all

Options:

  • -a, --amount <tokens> - Token amount (or "all")
  • -y, --yes - Skip confirmation

claws claim

Claim accumulated trading fees.

# Claim fees for your agent
claws claim

# Claim for specific token
claws claim 0x...tokenAddress

# Auto-mode (collect LP fees)
claws claim 0x...tokenAddress -y

# Also sell accumulated token tax
claws claim 0x...tokenAddress --sell-tax

Options:

  • -y, --yes - Skip confirmation
  • --sell-tax - Also sell accumulated token tax

claws status

Check agent status and info.

# Check your agent
claws status

# Check specific token
claws status 0x...tokenAddress

# Check by wallet address
claws status 0x...walletAddress

Configuration

Config is stored in ~/.claws/config.json:

{
  "network": "sepolia",
  "privateKey": "0x...",
  "rpcUrl": ""
}

You can also use environment variables:

export CLAWS_PRIVATE_KEY=0x...

Fee Structure

Creation Costs

| Tier | Cost | Starting Mcap | |------|------|---------------| | Premium | 0.011 ETH | $6,000 | | Micro | 0.0013 ETH | $1,000 |

Trading Tax (Anti-Bot)

| Blocks | Tax Rate | |--------|----------| | 1-20 | 20% | | 21-30 | 15% | | 31-40 | 10% | | 41-50 | 5% | | 51+ | 1% (permanent) |

Fee Splits

| Type | Agent | Creator | Platform | |------|-------|---------|----------| | Self-Created | 60% | - | 40% | | Human-Created | 45% | 30% | 25% | | Sub-Agent | 50% | 25% | 25% |

Networks

| Network | Status | |---------|--------| | Sepolia (testnet) | ✅ Live | | Base (mainnet) | 🔜 Coming soon |

Support

License

MIT