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

@thelittlebyte/autoboard

v0.1.3

Published

AI-driven development orchestrator for Claude Code

Readme

Autoboard

Agentic orchestrator for Claude Code. Breaks ambitious features into focused agent sessions, each with clean context and rigorous process gates. Independent sessions run in isolated git worktrees; Claude Code coordinates spawning, merging, and QA. Give an idea to Claude Code, go to sleep, wake up to a functioning, well-written app.

Installation

Add the marketplace and install:

/plugin marketplace add willietran/autoboard
/plugin install autoboard@thelittlebyte

Development

To work on autoboard itself, clone the repo and use the --plugin-dir flag:

alias claude="claude --plugin-dir /path/to/autoboard"

Workflow

1. Design

/autoboard:brainstorm

Interactive design session. Explores your codebase, asks clarifying questions, proposes approaches with trade-offs. Produces a design doc and quality standards config.

2. Plan

/autoboard:task-manifest

Generates a task manifest from the design doc — sessions with dependency graphs, TDD phases, complexity scores, and QA gates.

3. Build

/autoboard:run <project>

Launches the orchestrator. Spawns parallel session agents via claude -p in isolated git worktrees. Each session follows a mandatory workflow:

ExplorePlanPlan ReviewImplementVerifyCode ReviewCommit

The feature branch is ready for PR when done.

How It Works

  • Session agents work in isolated git worktrees with dependency-aware scheduling
  • Squash merges bring each session's work onto the feature branch
  • Review gates ensure every plan and implementation gets independent review before proceeding
  • QA gates run build validation and Playwright smoke tests between dependency layers
  • Configurable quality standards let you tune which dimensions matter for your project
  • GitHub Projects integration (optional) creates a kanban board with live status updates

See CLAUDE.md for full architecture details.

Acknowledgments

Autoboard builds on ideas and patterns from Obra:Superpowers by Jesse Vincent (MIT License) — a fantastic project for giving Claude Code structured skills. The following components were adapted from Superpowers:

  • Brainstorm skill (skills/brainstorm/) — interactive design session workflow
  • Receiving review skill (skills/receiving-review/) — critical thinking protocol for processing review feedback
  • Code reviewer agent (agents/code-reviewer.md) — independent code review with quality checks
  • Systematic debugging skill (skills/diagnose/) — root cause investigation methodology

If you like what Autoboard does with session orchestration, check out Superpowers for a broader collection of Claude Code skills.

License

MIT