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

@andycoupe/orchestrator

v0.7.1

Published

![Orchestrator screenshot](assets/screenshot-1.png)

Readme

@andycoupe/orchestrator

Orchestrator screenshot

An event-sourced task orchestrator for AI-assisted software development. Breaks PRDs into tasks, runs them through configurable phases (test-author, implementer, auditor), manages git worktrees, and merges the results — all from a local web UI.

Quick start

npx @andycoupe/orchestrator

Run this from the root of any git repository. On first run it will:

  1. Scaffold a .orchestrator/ directory (auto-added to .gitignore)
  2. Seed a default config and prompt library
  3. Create a few demo tasks so you can explore the UI
  4. Open your browser to http://localhost:4321

CLI options

--port <number>  Port to listen on (default: 4321)
--no-open        Don't open browser on start
--verbose        Verbose logging output
--quiet          Minimal logging output (default)
--init           Scaffold .orchestrator/ without starting server
--help           Show help
--version        Show version

Prerequisites

  • Node.js 20+
  • Git
  • One of the following:

Configuration

After scaffolding, edit .orchestrator/config.yaml to configure:

  • Gates — quality checks (typecheck, test, lint) that run before a task can be approved
  • Presets — reusable task configurations (phases, models, retry policies)
  • Merge strategy — squash, merge, or fast-forward only
  • Ingest settings — model and transport for PRD ingestion
gates:
  - name: typecheck
    command: pnpm typecheck
  - name: test
    command: pnpm test
  - name: lint
    command: pnpm lint

If using API keys directly instead of the CLI tools, set them in .orchestrator/.env.local:

ANTHROPIC_API_KEY=sk-ant-...
OPENAI_API_KEY=sk-...

Writing a PRD

The orchestrator ingests PRDs as markdown. Each ## section becomes a separate task that gets implemented independently in its own git worktree.

Recommended: use the PRD generation skill

Install the generate-orchestrator-prd skill:

npx skills@latest add andrewmcoupe/ai-skills/generate-orchestrator-prd

Then use it:

/generate-orchestrator-prd

This will grill you on every aspect of your plan — scope, edge cases, data model, dependencies — resolving each branch of the decision tree before generating a PRD.md optimised for the orchestrator's ingest system.

PRD structure

If writing a PRD manually, follow this structure:

# Feature title

## Overview

Brief summary of what this feature does and why.

## Add rate limiter middleware

- Apply to all /api/* routes
- Use a sliding window of 100 requests per minute per IP
- Return 429 with a Retry-After header when exceeded

## Add rate limit headers to responses

- X-RateLimit-Limit: max requests per window
- X-RateLimit-Remaining: requests left
- X-RateLimit-Reset: UTC epoch when the window resets

## Implementation Touchpoints

| File | Change |
|---|---|
| `src/middleware/rateLimit.ts` | New rate limiter middleware |
| `src/app.ts` | Mount middleware on /api/* routes |

## Out of Scope

- Per-user rate limits (IP-based only for now)

Each ## section should be specific, testable, and self-contained — the agent implementing it only sees that section and the codebase.

Development

git clone https://github.com/andycoupe/orchestrator.git
cd orchestrator
pnpm install
pnpm dev

This starts:

  • The Hono backend on :3001
  • The Vite dev server on :3000 (proxies API calls to the backend)

Scripts

| Command | Description | |---------|-------------| | pnpm dev | Start backend + frontend in dev mode | | pnpm build | Build server (tsc) + frontend (vite) | | pnpm test | Run all tests | | pnpm lint | Lint with oxlint | | pnpm typecheck | TypeScript type checking |

Project structure

server/          Backend (Hono, SQLite, event store)
web/             Frontend (React, TanStack Router, Tailwind)
shared/          Types and projections shared between server and client
templates/       Default config files copied on first scaffold
prompts/         Bundled prompt templates for each phase

Release flow

  1. Add a changeset when your PR includes user-facing changes:

    pnpm changeset

    This prompts you to pick a semver bump (patch/minor/major) and write a summary. It creates a markdown file in .changeset/ — commit it with your PR.

  2. Merge to main. The release workflow runs automatically and creates a "Version Packages" PR that:

    • Bumps the version in package.json
    • Updates CHANGELOG.md
    • Consumes the changeset files
  3. Merge the Version Packages PR. The workflow runs again and publishes to npm.

CI

Every PR and push to main runs three parallel checks:

  • Lintpnpm lint
  • Testpnpm test
  • Buildpnpm build

License

MIT