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

clawkr-cli

v2.0.5

Published

CLI tool for AI agents to launch tokens on Base blockchain. Features: free registration, automated token deployment with Uniswap V4 liquidity, fair launch, and revenue sharing.

Downloads

859

Readme

Clawkr CLI

Command-line tool for AI agents to launch tokens on Base blockchain

npm version License: MIT

Features

  • 🆓 Free Registration - No gas fees, instant activation via API
  • 🚀 Token Launch - Deploy ERC-20 tokens with Uniswap V3 liquidity in one command
  • Contract Verification - Automatic BaseScan verification (server-side, no API key required)
  • 💰 Fee Management - Claim accumulated trading fees (90% agent, 10% protocol)
  • 📊 Status Monitoring - Track your tokens and fee earnings

Installation

npm install -g clawkr-cli

Quick Start

1. Register as an Agent (FREE)

clawkr register --name "MyAgent" --description "AI token launcher"

No gas fees required! Registration is instant via API.

2. Launch Your First Token

First, upload your token image to a hosting service (catbox.moe, imgur, etc.) and get the direct URL.

clawkr launch \
  --name "My Token" \
  --symbol "MTK" \
  --token-uri "https://your-image-host.com/metadata.json" \
  --description "My awesome token" \
  --x https://x.com/mytoken \
  --website https://mytoken.surge.sh

This command will:

  • Deploy the token contract on Base
  • Create Uniswap V3 liquidity pool
  • Verify the contract on BaseScan (server-side)
  • Return token address, pool ID, and useful links

You can then update your landing page with the returned contract details.

3. Check Status & Claim Fees

# Check your agent status
clawkr status

# Claim accumulated fees
clawkr claim --token <TOKEN_ADDRESS>

Configuration

Create a .env file or set environment variables:

# Required for launching tokens
PRIVATE_KEY=0x...

# Optional - defaults shown
API_BASE_URL=https://clawkr.com/api
RPC_URL=https://mainnet.base.org
CHAIN_ID=8453

Copy .env.example to .env and fill in your values.

Note: Contract verification is handled server-side via the Clawkr API. No API keys required for verification.

Commands

clawkr register

Register as an AI agent (free, no gas fees).

clawkr register [options]

Options:
  --name <name>              Agent name (optional)
  --description <text>       Agent description (optional)
  --json                     Output as JSON

clawkr launch

Launch a new token with Uniswap V3 liquidity.

clawkr launch [options]

Required:
  --name <name>              Token name
  --symbol <symbol>          Token symbol

Optional:
  --token-uri <uri>          Token metadata URI (recommended - use your own hosted metadata)
  --description <text>       Token description
  --x <url>                  X/Twitter URL
  --website <url>            Website URL (your own landing page)
  --market-cap <eth>         Initial market cap (default: 1 ETH)
  --fair-launch-duration <s> Fair launch duration in seconds (default: 300)
  --json                     Output as JSON
  --dry-run                  Simulate transaction without executing

Best Practice: Upload your token image to a hosting service (catbox.moe, imgur, etc.) before launching. Create your own landing page on surge.sh or any static host. The CLI will return token address, pool ID, and useful links for you to update your landing page.

clawkr status

Check your agent status and token list.

clawkr status [options]

Options:
  --agent <address>          Agent address (default: your wallet)
  --json                     Output as JSON

clawkr claim

Claim accumulated trading fees from your tokens.

clawkr claim [options]

Required:
  --token <address>          Token contract address

Options:
  --json                     Output as JSON

clawkr verify

Manually verify a contract on BaseScan (auto-verification runs during launch).

clawkr verify [options]

Required:
  --token <address>          Token contract address

Options:
  --json                     Output as JSON

clawkr config

View or test configuration.

clawkr config [options]

Options:
  --show                     Show current configuration
  --test                     Test RPC connection

API Integration

AI agents can use the JSON output mode for programmatic access:

# All commands support --json flag
clawkr register --name "Agent" --json
clawkr launch --name "Token" --symbol "TKN" --image ./logo.png --json
clawkr status --json

Requirements

  • Node.js >= 18.0.0
  • Base mainnet RPC access
  • Private key with ETH for gas (only for launching tokens)

Documentation

  • Skills Documentation: https://clawkr.com/skills.md
  • Web Dashboard: https://clawkr.com
  • API Docs: https://clawkr.com/api

Smart Contracts

All contracts are deployed on Base mainnet (Chain ID: 8453):

  • AgentRegistry: 0xaBBe7b34E9E8d9e158A68873EBC2C5ff574C4017
  • ClawkrHook: 0xa3966B92F2184fca0839E4D238503FcC6bA92AC8
  • FairLaunch: 0xd919c044999F8beE26ca3b28C4f41E58947598c4
  • MarketCapPrice: 0x90080d2752c046cec72c221822B1ddafC351905D

Security

  • Never commit your .env file to version control
  • Keep your private key secure
  • Use environment variables in production
  • API keys (BaseScan, iili.io) are optional but enhance functionality

Support

  • GitHub Issues: https://github.com/clawkr/clawkr/issues
  • Website: https://clawkr.com

License

MIT License - see LICENSE file for details