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

pilot-agi

v0.2.0

Published

AI-powered development framework for Claude Code - Ship faster with structured workflows

Readme

Pilot AGI

AI-powered development framework for Claude Code - Structured workflows that ship.

npm version License: MIT


What is Pilot AGI?

Pilot AGI brings structure to AI-assisted development:

  • Beads (bd) Integration - Git-backed task management as single source of truth
  • Plan → Approve → Execute → Verify - The canonical loop that prevents drift
  • Session Capsules - Crash recovery and context continuity
  • Token Efficiency - Progressive disclosure, load only what's needed

Quick Start

One-Command Installation

# Global install (recommended) - automatically installs beads (bd) if needed
npx pilot-agi --global

# Project-local install
npx pilot-agi --local

The installer will automatically install beads (task management) if not already present, using Homebrew, npm, or go install.

Initialize Your Project

# Navigate to your project
cd your-project

# Initialize beads for task tracking
bd init

# Start using Pilot AGI skills in Claude Code
/pilot-help

The Canonical Loop

bd ready → /pilot-plan → (approve) → /pilot-exec → /pilot-commit → /pilot-close
  1. bd ready - Pick top task (dependencies guarantee order)
  2. /pilot-plan - Create implementation plan, wait for approval
  3. /pilot-exec - Execute one micro-step with verification
  4. /pilot-commit - Create conventional commit linked to bd issue
  5. /pilot-close - Validate Definition of Done, close bd issue

Skills

| Skill | Purpose | |-------|---------| | /pilot-next | Pick next ready task from bd | | /pilot-plan | Create implementation plan for task | | /pilot-exec | Execute one micro-step | | /pilot-commit | Create conventional commit | | /pilot-review | Quick code review checklist | | /pilot-close | Validate DoD and close task | | /pilot-research | Research topic, save to work/research/ | | /pilot-status | Show progress and suggest next action | | /pilot-update | Update Pilot AGI | | /pilot-help | Show help |


Project Structure

your-project/
├── .beads/                 # Task database (bd init)
├── .claude/
│   ├── skills/pilot-*/     # Pilot AGI skills
│   ├── pilot/              # Framework internals
│   │   ├── hooks/          # Session hooks
│   │   ├── templates/      # Planning templates
│   │   └── config.default.json
│   └── settings.json       # Hooks configuration
├── work/
│   ├── ROADMAP.md          # High-level planning
│   ├── milestones/         # Milestone specs
│   ├── sprints/            # Sprint planning
│   ├── specs/              # Feature specifications
│   ├── research/           # Research outputs
│   └── plans/              # Approved implementation plans
├── runs/
│   └── YYYY-MM-DD.md       # Session capsules
└── CLAUDE.md               # Agent contract

Key Concepts

Beads as Task SSOT

Tasks live in beads (bd), not markdown files:

bd create "Implement user auth"    # Create task
bd ready                           # List actionable tasks
bd update bd-a1b2 --status in_progress  # Claim task
bd issues                          # Query all tasks

Session Capsules

Every action logged to runs/YYYY-MM-DD.md for:

  • Crash recovery
  • Context continuity
  • Progress tracking

Token Discipline

  • Skills are concise (<500 lines)
  • Progressive disclosure (load on demand)
  • Scoped reads (specific sections, not whole files)
  • Session logs summarize, don't carry full context

Configuration

.claude/pilot/config.default.json:

{
  "token_budget": {
    "warning_threshold": 50000,
    "target_range": { "min": 20000, "max": 80000 }
  },
  "planning": {
    "require_approval": true,
    "max_steps_per_plan": 10
  }
}

Changelog

See CHANGELOG.md for version history.


Roadmap

v0.2.0 (Current)

  • [x] Beads (bd) integration
  • [x] Skills-based architecture
  • [x] Session capsule system
  • [x] Configurable token budget

v0.3.0 (Next)

  • [ ] Subagent coordination
  • [ ] Custom templates
  • [ ] Team collaboration

Contributing

See CONTRIBUTING.md.

Development

git clone https://github.com/vadymsyliava/Pilot-AGI.git
cd Pilot-AGI
git checkout dev
npm install
npm link

License

MIT - see LICENSE


Built for Claude Code