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

@jvelez79/forge-cli

v0.6.2

Published

Parallel AI task runner with git worktrees and Linear integration

Readme

Forge CLI

Parallel AI task runner with git worktrees, multi-provider support, and Linear integration.

Quickstart

# Install
npm install -g forge-cli

# Setup
cd your-repo
forge init

# Start the dashboard
forge ui

Features

  • Parallel task execution — Run multiple AI tasks in isolated git worktrees
  • Multi-provider — Claude Code CLI, Anthropic API, or bring your own
  • Agent Teams — Dark Factory pipeline with role-specific providers (planner, implementer, reviewer, tester)
  • Supervised & Auto modes — Human-in-the-loop review gates or fully autonomous
  • Linear integration — Bi-directional sync with Linear issues
  • Blueprint integration — Import scene graphs, create tasks from components
  • Project registry — Manage multiple Forge instances across machines
  • Real-time UI — Web dashboard with SSE-powered live updates

Architecture

┌─────────────┐     ┌──────────────┐     ┌─────────────┐
│  CLI / UI   │────▶│  Engine      │────▶│  Provider   │
│  (forge.mjs)│     │  (engine.mjs)│     │  (abstract) │
└─────────────┘     └──────┬───────┘     └──────┬──────┘
                           │                     │
                    ┌──────┴───────┐      ┌──────┴──────┐
                    │  Runner      │      │ Claude Code │
                    │  (runner.mjs)│      │ Anthropic   │
                    └──────────────┘      └─────────────┘

Task Lifecycle

queued → planning → [plan_review] → implementing → reviewing → [impl_review] → done → merged
  • supervised — Pauses at plan_review and impl_review for human approval
  • auto — Runs through without human gates (with test validation)
  • manual — Creates worktree, you drive

Configuration

forge init  # Interactive setup

Or edit .forge/config.json:

{
  "provider": "claude-code",
  "defaultMode": "supervised",
  "defaultProfile": "default",
  "parallel": 5,
  "port": 3456,
  "providers": {
    "anthropic-api": {
      "type": "anthropic-api",
      "apiKey": "sk-ant-...",
      "model": "claude-sonnet-4-6"
    }
  }
}

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | FORGE_PORT | Server port | 3456 | | FORGE_AUTH_TOKEN | Bearer token for LAN auth | — | | FORGE_PROVIDER | AI provider | claude-code | | FORGE_MODE | Default mode | supervised | | FORGE_PROFILE | Prompt profile | default | | FORGE_PARALLEL | Max concurrent tasks | 5 | | FORGE_TIMEOUT | Claude timeout (ms) | 600000 | | FORGE_SUPERVISED_TIMEOUT | Review timeout (hours) | 24 | | LINEAR_API_KEY | Linear API token | — | | ANTHROPIC_API_KEY | Anthropic API key | — |

Agent Teams

Configure team roles in .forge/team.json:

{
  "name": "feature-squad",
  "roles": {
    "planner": { "provider": "anthropic-api", "model": "claude-opus-4-6" },
    "implementer": { "provider": "claude-code" },
    "reviewer": { "provider": "anthropic-api", "model": "claude-sonnet-4-6" },
    "tester": { "provider": "anthropic-api", "model": "claude-haiku-4-5" }
  }
}
forge team start ENG-42  # Dark Factory pipeline
forge team config        # View team roles

Multi-Project Registry

forge registry add untap http://192.168.1.10:3456 --machine=macbook
forge registry list
forge registry remove untap

Projects auto-register when you run forge ui.

CLI Reference

Task Management

forge start <id...> [--mode=M] [--profile=P]  # Start tasks
forge list                                      # List all tasks
forge watch <id>                                # Stream task logs
forge accept <id>                               # Merge completed task
forge reject <id>                               # Reject implementation
forge revise <id>                               # Request revision
forge abort <id>                                # Cancel running task
forge restart <id>                              # Restart failed task

Pipeline Control

forge approve-plan <id>   # Approve plan, start implementation
forge revise-plan <id>    # Revise the plan
forge approve <id>        # Approve implementation
forge request-review <id> # Re-run code review

Setup & Config

forge init         # Interactive project setup
forge ui [--lan]   # Start web dashboard
forge create       # Create a local task
forge comment <id> # Add comment to task

API Endpoints

| Method | Endpoint | Description | |--------|----------|-------------| | GET | /health | Server health + task counts | | GET | /api/tasks | List all tasks | | POST | /api/tasks/start | Start task execution | | GET | /api/tasks/:id/plan | View task plan | | GET | /api/tasks/:id/diff | View code changes | | POST | /api/tasks/:id/approve-plan | Approve plan | | POST | /api/tasks/:id/approve-impl | Approve implementation | | POST | /api/tasks/:id/accept | Merge task | | POST | /api/tasks/:id/reject | Reject task | | POST | /api/teams/start | Start team pipeline | | GET | /api/teams/config | View team config | | POST | /api/graph/import | Import Blueprint graph | | GET | /api/graph/status | Graph task status | | GET | /api/events | SSE event stream |

License

MIT