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

feather-flow

v1.2.4

Published

Lightweight TDD-enforced development workflow for Claude Code

Readme

feather-flow

A lightweight, TDD-enforced development workflow for Claude Code.

Why feather-flow

Most workflow tools for AI coding assistants are heavy — dozens of dependencies, complex configuration, steep learning curves. feather-flow takes the opposite approach: TDD-enforced quality gates at every step, so you ship working code instead of debugging your tooling. It ships as 21 skills with zero dependencies — pure markdown skills, zero runtime dependencies.

Comparison

| | feather-flow | GSD | |---|---|---| | Skills/Commands | 23 | 35+ commands, 15 agents, 37 workflows | | Install | npx feather-flow | npm + Node.js | | Dependencies | Node.js 18+ (for install only) | Node.js, npm | | Config needed | None | config.json with 20+ options | | Best for | Quick projects, learning | Enterprise teams, complex orchestration |

Getting Started

Install:

npx feather-flow

Restart Claude Code, then type /feather:help to see all skills or /feather:workflow to start a guided workflow.

Update: You'll see a notification at session start when a new version is available. Run /feather:update inside Claude Code — it shows what changed, detects your local modifications, and walks you through an interactive merge.

Uninstall: npx feather-flow uninstall

What you get:

  • All skills available as /feather:* commands in Claude Code
  • Automatic daily check for new versions (notifies you at session start)
  • Update preserves any skills you've customized locally
npx skills add siraj-samsudeen/feather-flow

Installs skills directly from GitHub. You get working skills but no manifest tracking, no update notifications, and no interactive merge.

The Two Modes

Simple Mode — For small features (< 1 day):

/feather:workflow guides you through: design → spec → tests → plan → execute → verify → finish

Slice Mode — For larger projects (multi-day):

Break work into vertical slices, each independently shippable:

/feather:slice-project/feather:work-slice (repeat) → /feather:finish

All 23 Skills

| Skill | Phase | What it does | |---|---|---| | /feather:workflow | Guide | Main entry point — walks you through the full flow | | /feather:help | Guide | Shows all skills with usage guidance | | /feather:create-design | Design | Generate system design from requirements | | /feather:review-design | Design | Review and critique a design | | /feather:create-ui-mockup | Design | Create ASCII UI mockups | | /feather:create-spec | Spec | Write behavioral specification with test hooks | | /feather:derive-tests | Spec | Derive test cases from spec | | /feather:write-tests | Test | Write tests from derived test cases (TDD) | | /feather:setup-tdd-guard | Test | Configure TDD enforcement (any stack) | | /feather:setup-react-testing | Test | Add React testing environment | | /feather:create-plan | Plan | Create implementation plan from spec | | /feather:execute | Execute | Execute plan with quality gates | | /feather:verify | Verify | Run verification checkpoint | | /feather:finish | Finish | Complete branch (merge/PR/keep) | | /feather:slice-project | Slice | Break project into vertical slices | | /feather:work-slice | Slice | Work on a single slice (TDD-enforced) | | /feather:add-slice | Slice | Add a new slice to existing project | | /feather:pause-slice | Slice | Pause current slice work | | /feather:resume-slice | Slice | Resume paused slice | | /feather:isolate-work | Utility | Create isolated workspace (worktree/branch) | | /feather:create-issue | Utility | Create GitHub issue from context | | /feather:polish | Utility | Quick quality improvements | | /feather:update | Utility | Interactive update with local mod detection |

Built on Superpowers

Several feather-flow skills are derived from Superpowers by Jesse Vincent (MIT). See ACKNOWLEDGMENTS.md for detailed attribution.

License

MIT — see LICENSE