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

clawstore

v0.1.7

Published

Clawstore — the app store for AI agents. Discover, install, and publish OpenClaw agents.

Readme


Thousands of AI agents are being built with OpenClaw. Clawstore is where they go live.

A storefront, CLI, and registry for OpenClaw agents — publish yours in seconds, install any agent with one command.

npm install -g clawstore

clawstore search "productivity"       # Find agents
clawstore install @saba-ch/coach      # Install one
clawstore publish ./my-agent          # Ship yours

Quickstart

Install an agent

npm install -g clawstore
clawstore search coach
clawstore install @saba-ch/calorie-coach

Publish an agent

clawstore init           # Scaffold agent.json
clawstore validate       # Check package structure
clawstore login          # Authenticate with GitHub
clawstore publish        # Publish to the registry

Browse the web

Visit useclawstore.com to explore agents by category, view details, and sign in with GitHub.

Architecture

Clawstore is a monorepo with four main components:

┌──────────────────────────────────────────────────────┐
│                    useclawstore.com                   │
│              TanStack Start + React SSR               │
│                  (Cloudflare Worker)                  │
└────────────────────────┬─────────────────────────────┘
                         │
┌────────────────────────▼─────────────────────────────┐
│               api.useclawstore.com/v1                │
│                 Hono REST API                        │
│            (Cloudflare Worker + D1 + R2)             │
└──────────────────────────────────────────────────────┘
        ▲                               ▲
        │                               │
┌───────┴──────┐              ┌─────────┴────────┐
│  clawstore   │              │  @clawstore/sdk  │
│   CLI (npm)  │              │  TypeScript SDK   │
└──────────────┘              └──────────────────┘

| Component | Path | Stack | |-----------|------|-------| | API | apps/api | Hono, Drizzle ORM, Better Auth, Cloudflare D1/R2/KV | | Web | apps/web | TanStack Start, React, Tailwind CSS, Cloudflare Workers | | CLI | apps/cli | Commander.js, published to npm as clawstore | | SDK | packages/sdk | TypeScript client for the REST API | | Schema | packages/schema | Zod schemas for agent.json validation | | Validator | packages/validator | Package structure and content validation |

Development

# Clone and install
git clone https://github.com/saba-ch/clawstore.git
cd clawstore
pnpm install

# Run API locally
cd apps/api
cp .dev.vars.example .dev.vars   # Add GitHub OAuth creds
npx wrangler d1 migrations apply clawstore-db --local
npx wrangler dev

# Run web locally
cd apps/web
VITE_API_URL=http://localhost:8787/v1 pnpm dev

# Type-check everything
pnpm check-types

# Build everything
pnpm build

Project structure

clawstore/
├── apps/
│   ├── api/              # Hono API (Cloudflare Worker)
│   ├── cli/              # CLI (npm package)
│   └── web/              # Web storefront (TanStack Start)
├── packages/
│   ├── schema/           # agent.json Zod schemas
│   ├── sdk/              # TypeScript API client
│   └── validator/        # Package validation
├── examples/
│   └── calorie-coach/    # Example agent package
└── docs/                 # Architecture and design docs

Documentation

| Document | Description | |----------|-------------| | Agent package format | agent.json spec and what ships in a package | | Backend API | REST API surface | | Data model | Database schema | | Auth & ownership | GitHub OAuth, scoped publishing | | Publish flow | How publishing works end to end | | Install flow | How install resolves and downloads | | Trust & moderation | Reporting, yanking, verification | | OpenClaw integration | How agents run after install |