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

@lbruton/specflow

v3.10.1

Published

MCP server for spec-driven development workflow with real-time web dashboard

Readme

Work in progress. SpecFlow is in active development and used daily by the author across multiple projects, but the API surface, skill interfaces, and documentation are still evolving. Expect rough edges. Issues and feedback welcome.


SpecFlow gives AI coding agents a structured development lifecycle. Instead of jumping straight to code, features go through Requirements → Design → Tasks → Implementation, with human approval gates at each transition. A real-time web dashboard lets you review, approve, or reject at every phase.

Built on Pimzino/spec-workflow-mcp's core engine (sequential spec workflow, real-time dashboard, blocking approval gates). This project extends the lifecycle with additional phases, multi-project support, and a shipped skill system.

What You Get

The npm package (@lbruton/specflow) ships:

  • 8 MCP tools and 7 MCP prompts for spec lifecycle management
  • A real-time web dashboard for approvals and progress tracking
  • 11 spec templates (requirements, discovery, design, tasks, readiness report, steering docs, review prompts)
  • Multi-project support via project config files

The GitHub repo additionally ships:

  • 12 lifecycle skills (/spec, /start, /prime, /wrap, /retro, /audit, /discover, /chat, /issue, /pr-cleanup, /publish-templates, /migrate-skill)
  • 11 slash commands and background subagent definitions
  • Agent-specific instruction files (CLAUDE.md, GEMINI.md, CODEX.md)

These are plain markdown files, installed by copying — not bundled in npm.

Quick Start

Install the MCP server

Add to your agent's MCP config (Claude Code example — ~/.claude/settings.json):

{
  "mcpServers": {
    "specflow": {
      "command": "npx",
      "args": ["-y", "@lbruton/specflow@latest", "."]
    }
  }
}

Works with any MCP-compatible agent. Verified with Claude Code, Gemini CLI, Codex CLI, and OpenCode.

Install skills and commands (optional, recommended for Claude Code)

git clone https://github.com/lbruton/specflow.git ~/specflow-source
cp -r ~/specflow-source/skills/* ~/.claude/skills/
cp -r ~/specflow-source/commands/* ~/.claude/commands/
cp -r ~/specflow-source/agents/* ~/.claude/agents/

Start the dashboard

npx @lbruton/specflow@latest --dashboard --port 5051

Spec Workflow

Every non-trivial feature follows the same path. Approval required at each gate.

[Discovery]  →  Requirements  →  Design  →  Tasks  →  Implementation
  optional          ↑              ↑          ↑            ↑
                 approval       approval   approval    log artifacts

An optional Discovery phase (/discover) supports structured research before committing to a spec. Specs live on disk as structured markdown — not in any agent's memory. This means you can start a spec in one agent and continue in another. The dashboard tracks progress regardless of which agent is driving.

MCP Tools

| Tool | Description | | --------------------- | ------------------------------------------------------- | | spec-status | Get detailed status of a spec | | spec-list | List all specs across projects | | approvals | Manage phase approval workflow | | log-implementation | Record implementation artifacts | | write-spec-doc | Create or update spec documents | | detect-conventions | Detect and persist project-conventions.json from source | | spec-workflow-guide | Get workflow guidance | | steering-guide | Access project steering documents |

MCP Prompts

| Prompt | Description | | ---------------------------- | ----------------------------------------------- | | create-spec | Create a new spec from requirements | | create-steering-doc | Create project steering documentation | | implement-task | Generate implementation plan for a task | | refresh-tasks | Re-sync task state from spec files | | spec-status | Phase and completion summary for a spec | | inject-spec-workflow-guide | Inject the spec workflow guide into the session | | inject-steering-guide | Inject the steering doc guide into the session |

Shipped Skills

These are markdown skill definitions installed by copying from the repo, not MCP tools.

| Skill | Purpose | | -------------------- | ----------------------------------------------- | | /spec | Full spec lifecycle orchestrator | | /discover | Structured research before committing to a spec | | /chat | Exploratory conversation with context | | /start | Quick session resume (~15s) | | /prime | Full session boot with health checks | | /wrap | End-of-session cleanup and summary | | /retro | Extract prescriptive lessons from the session | | /audit | On-demand project health check | | /issue | Create and manage project issues | | /pr-cleanup | Post-merge branch and worktree cleanup | | /publish-templates | Promote a template into the plugin | | /migrate-skill | Port a user-level skill into the plugin |

Quality & Security Gates

SpecFlow's shipped templates, skills, and subagents come wired to the author's default gates — Codacy (security + code quality) via its official Gen-3 skills, and CodeRabbit for cross-model review:

  • Templatestasks-template closing gates run the codacy-analysis-cli and coderabbit:review plugin skills (a local Gen-3 codacy-analysis SAST/quality scan and an AI cross-model review); design-template and code-quality-reviewer-template include a Codacy SRM security pre-check and cross-reference.
  • Skills — the shipped /audit and /prime skills query Codacy for live security and quality findings.
  • Subagentscode-oracle uses Codacy for repository analysis.

These are defaults, not requirements. The MCP server itself bundles no scanner — every reference lives in the markdown you copy and control, and reaches Codacy or CodeRabbit only when you've installed the matching skill, CLI, or MCP server. To run a different toolchain (SonarQube, Semgrep, Snyk, GitHub Advanced Security, or a different reviewer), edit the corresponding template, skill, or subagent after installing it.

Knowledge Structure

Spec documents, steering docs, and templates are stored as structured markdown in an Obsidian-compatible layout. If you use Obsidian, you get graph visualization and wikilink navigation for free. If not, it's still just a folder of markdown files.

your-vault/specflow/
  templates/                  # global spec templates (auto-populated)
  {Project}/
    steering/                 # product.md, tech.md, structure.md
    specs/                    # requirements, design, tasks, logs
    approvals/

Each project needs a thin config file (.specflow/config.json) pointing to the vault:

{ "project": "MyProject", "docvault": "../my-vault" }

Multi-Agent Support

SpecFlow is an MCP server — any agent that speaks MCP can use it. Spec state lives on disk, so you can start a spec in one agent and continue in another.

| Agent | Status | Notes | | --------------- | -------- | ------------------------- | | Claude Code | Verified | Full MCP + skills support | | Gemini CLI | Verified | MCP tools, uses GEMINI.md | | Codex CLI | Verified | MCP tools, uses CODEX.md | | OpenCode | Verified | MCP tools |

Extending the Stack

SpecFlow handles the spec lifecycle — it doesn't try to be a memory system, code search engine, or knowledge base. Those are separate concerns best served by separate tools. The author's personal stack includes:

None of these are required to use SpecFlow. The MCP server and dashboard work standalone with just Node.js.

Prerequisites

  • Node.js (18+) — required
  • An MCP-compatible agent — Claude Code, Gemini CLI, Codex CLI, or similar

Development

npm install
npm run build        # TypeScript + Vite dashboard
npm test             # vitest unit tests
npm run test:e2e     # Playwright E2E
npm run dev          # Development mode with hot reload

Credits

Pimzino/spec-workflow-mcp — the foundation. Pimzino designed and built the core: MCP server, sequential spec workflow, real-time dashboard with blocking approval gates, approval storage, Markdown parser, implementation logging, template engine, multi-language support, VSCode extension, Docker deployment, and security hardening.

zilliztech/claude-context — upstream for the semantic code search fork.

mwgreen/claude-code-session-rag — upstream for SessionFlow.

License

GPL-3.0 — same as upstream.