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

@ybin4548/claude-autopilot

v1.2.0

Published

Fully automated development orchestrator — from plan to PR with zero human intervention

Readme

claude-autopilot

License: MIT

Fully automated development orchestrator — from plan to PR with zero human intervention.

Feed it a plan (markdown checklist or GitHub Issues), and it will implement each task using claude -p, run tests, create PRs, and merge them automatically. Independent tasks run in parallel, rate limits are handled gracefully, and interrupted runs resume from where they left off.

How It Works

[Input]      plan.md or GitHub Issues
                 ↓
[Parser]     Extract tasks: id, description, mode, dependencies
                 ↓
[Validator]  Plan quality gate: pass / warn / fail per task
                 ↓
[Queue]      Dependency analysis → parallel groups
                 ↓
[Executor]   claude -p sessions (parallel within groups)
                 ↓  (rate limit → auto-wait → health check → resume)
[Validator]  tsc + test + build
                 ↓  (fail → retry up to 3x)
[Publisher]  Branch + PR
                 ↓
             auto → merge → next task
             review → wait for approval → next task

Key principle: Plan validation runs before any execution — vague or broken tasks are caught upfront, not after wasting tokens.

Installation

npm install -g @ybin4548/claude-autopilot

Quick Start

1. Write a plan

# Feature Plan

## Phase 1: Auth
- [ ] [id: auth-ui] [auto] Social login UI — Add Apple/Google/Kakao buttons
- [ ] [id: auth-flow] [review] (depends: auth-ui) Auth flow — Connect AuthService

## Phase 2: Profile
- [ ] [id: profile-ui] [auto] (depends: auth-flow) Profile screen — Name, image

2. Run

claude-autopilot run plan.md

3. Check progress

claude-autopilot status

4. Resume interrupted runs

claude-autopilot resume

Task Format

- [ ] [id: <task-id>] [auto|review] (depends: <id1>, <id2>) <description> — <detail>

| Field | Required | Description | |-------|----------|-------------| | id | Yes | Unique task identifier | | auto\|review | Yes | auto = merge after tests pass; review = wait for human approval | | depends | No | Comma-separated IDs of tasks this depends on | | description | Yes | What to implement | | detail | No | Additional specification (after ) |

GitHub Issues Mode

claude-autopilot run --github owner/repo
  • Issues with autopilot label are treated as tasks
  • auto / review labels set the execution mode
  • depends: issue-1, issue-2 in the issue body declares dependencies

Architecture

CLI orchestrator that parses tasks, manages execution order, and coordinates claude -p sessions.

src/
├── parser/
│   ├── markdown.ts        # Markdown checklist parser
│   └── github.ts          # GitHub Issues parser
├── validator/
│   ├── plan-validator.ts  # Pre-execution plan quality check
│   └── validator.ts       # Post-execution code validation (tsc + test + build)
├── queue/queue.ts         # Dependency analysis + parallel grouping
├── executor/executor.ts   # claude -p stdin pipe execution
├── publisher/publisher.ts # Branch + commit + PR + merge
├── reviewer/reviewer.ts   # PR approval polling
├── rate-limiter/limiter.ts # Rate limit detection + health check recovery
├── state/state.ts         # Progress persistence (~/.claude-autopilot/state.json)
├── orchestrator.ts        # Main pipeline: group → execute → validate → publish
├── cli.ts                 # CLI entry point (run / status / resume)
└── types.ts               # Shared types

Execution Modes

  • auto: tests pass → auto-merge → move to next task
  • review: create PR → poll for approval → merge on APPROVED → next task
  • Tasks within the same parallel group run concurrently via Promise.all

Resilience

  • Rate limit: detect from stderr → save state → health-check loop → auto-resume
  • Retry: validation failure → re-execute up to 3 times
  • State persistence: ~/.claude-autopilot/state.json — resume anytime with claude-autopilot resume

Requirements

Development

git clone https://github.com/ybin4548/claude-autopilot.git
cd claude-autopilot
npm install
npm run build
npm test

License

MIT