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

@reumbra/forge

v0.4.4

Published

CLI for installing and managing Forge plugins for Claude Code

Readme

Forge DevKit CLI

Package: @reumbra/forge Role: CLI tool for installing and managing Forge plugins for Claude Code

Ecosystem

Forge DevKit is a commercial product by Reumbra — AI-powered project scaffolding tools for Claude Code.

┌──────────────────────────────────────────────────────────────────┐
│                     Forge DevKit Ecosystem                       │
├──────────────────────────────────────────────────────────────────┤
│                                                                  │
│  forge-devkit-cli (this repo)        PUBLIC                      │
│  └─ npm @reumbra/forge                                           │
│  └─ Commands: activate, install, update, list, status, doctor    │
│  └─ User-facing tool, distributed via npm                        │
│                                                                  │
│  forge-devkit-api                    PRIVATE                     │
│  └─ License validation, plugin delivery, webhooks                │
│  └─ Node.js (Fastify) + PostgreSQL (Supabase) + AWS S3          │
│                                                                  │
│  forge-devkit-landing                PUBLIC                      │
│  └─ reumbra.dev/forge — website, pricing, docs                   │
│  └─ Astro + Tailwind, hosted on Cloudflare Pages                 │
│                                                                  │
│  forge-devkit-plugins                PRIVATE                      │
│  └─ Plugin source code, tests, design docs                       │
│  └─ github.com/reumbra/ai-marketplace                            │
│                                                                  │
└──────────────────────────────────────────────────────────────────┘

Architecture

┌──────────────┐       ┌─────────────────┐
│  forge CLI   │──────▶│  Forge API      │
│  (this repo) │       │  (devkit-api)   │
│              │       │                 │
│  activate    │       │  /auth/activate │
│  install     │       │  /plugins/list  │
│  update      │       │  /plugins/down  │
│  list        │       │  /license/check │
└──────────────┘       └────────┬────────┘
                                │
                       ┌────────┴─────────┐
                       │  Plugin Storage   │
                       │  (AWS S3)        │
                       └───────────────────┘

Commands

forge activate <license-key>     # Bind license to machine
forge deactivate                 # Unbind (for machine transfer)
forge install <plugin> [version] # Download and install plugin
forge update [plugin]            # Update all or specific plugin
forge list                       # Show installed + available
forge status                     # License: expiry, binding, limits
forge doctor                     # Diagnostics: Claude Code found? Plugins intact?

Config Storage

// ~/.forge/config.json
{
  "license_key": "FRG-XXXX-XXXX-XXXX",
  "machine_id": "a1b2c3...",
  "api_url": "https://api.reumbra.com/velvet",
  "installed_plugins": {
    "forge-core": { "version": "1.5.0", "installed_at": "2026-02-19T..." },
    "forge-product": { "version": "0.4.0", "installed_at": "2026-02-19T..." }
  }
}

Install Flow

$ forge install core

1. Read config.json -> license_key, machine_id
2. POST /plugins/download {license_key, machine_id, plugin: "forge-core", version: "latest"}
3. API validates license, expiry, machine_id, plugin access
4. Returns signed download URL (S3 presigned, 5 min TTL)
5. CLI downloads .zip via signed URL
6. Unpacks to ~/.forge/cache/[email protected]/
7. Links into Claude Code plugin directory
8. Updates config.json -> installed_plugins
9. "[email protected] installed. Run /forge:setup in your project"

Machine ID & Limits

License bound to N devices (default: 3). Machine ID = SHA256 hash of hostname + OS + username.

Activate flow:
  CLI: POST /auth/activate {license_key, machine_id}
  API: validate key -> check slots (3 max) -> register machine_id -> 200 OK
       or 403 "All device slots used. Run forge deactivate on another machine"

Offline Behavior

  • Already installed plugins: work forever (just .md files on disk)
  • Install/update: requires API connection
  • After license expiry: installed versions continue working, updates blocked

Tech Stack

  • Runtime: Node.js >=20
  • Package: @reumbra/forge (public, scoped npm)
  • Dependencies: Commander.js (routing), @clack/prompts (interactive UI)
  • Build: TypeScript (strict), Biome (lint + format)
  • Tests: Vitest (112 tests, 17 suites)

Installation

npm install -g @reumbra/forge

Or run without installing:

npx @reumbra/forge doctor

Development

pnpm install          # Install dev dependencies
pnpm dev -- doctor    # Run any command in dev mode (via tsx)
pnpm build            # Compile TypeScript → dist/
pnpm check            # Lint + format (Biome)
pnpm test             # Run tests

Releasing

npm version patch         # bump 0.1.0 → 0.1.1 + git tag v0.1.1
git push --follow-tags    # triggers GitHub Actions → npm publish

CI runs build → lint → test on every push. Publish workflow triggers on v* tags.

See docs/DEPLOY.md for full deploy guide.

Project Structure

src/
├── cli.ts                  # Entry point, arg parser, command dispatch
├── types.ts                # Shared types (config, API responses)
├── commands/
│   ├── activate.ts         # forge activate <key>
│   ├── deactivate.ts       # forge deactivate
│   ├── install.ts          # forge install <plugin> [version]
│   ├── update.ts           # forge update [plugin]
│   ├── list.ts             # forge list
│   ├── status.ts           # forge status
│   └── doctor.ts           # forge doctor (local only)
└── lib/
    ├── api.ts              # HTTP client (fetch), ApiError
    ├── config.ts           # ~/.forge/config.json management
    ├── logger.ts           # CLI output (colors, tables, icons)
    ├── machine-id.ts       # SHA256-based device fingerprint
    ├── paths.ts            # ~/.forge/ path constants
    └── zip.ts              # ZIP extraction (Node.js built-ins)