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

musher-engineering

v0.7.1

Published

Musher Engineering — Keep every developer's AI aligned on one project direction. Direction management framework for multi-developer LLM-driven development.

Readme

Musher Engineering

npm version npm downloads License: MIT

English | 한국어

Keep every developer's AI aligned on one project direction.

v0.7.0 — Team conventions delegated to project-brief.md. No more hardcoded workflow rules.

From Harness to Musher

The concept of an AI "harness" — structured markdown files that guide LLM coding agents — has become a foundational pattern in AI-assisted development. Frameworks like BMAD, gstack, and GSD pioneered this approach for solo developers.

Musher Engineering takes harness engineering to the next level. Built by KT, it evolves the harness concept from a 1-person tool into an enterprise-grade direction management framework for multi-developer teams.

| | Traditional Harness | Musher Engineering | |---|---|---| | Target | Solo developer | Multi-developer teams | | Focus | What the AI does | Where the AI is going | | Direction management | ❌ | ✅ Direction Guard + pivot + Decision Log | | Team state sharing | ❌ | ✅ Shared/personal state separation | | Token budget | 200+ files | ~25 files (~17K tokens) — works with small LLMs too |

The Problem

When one developer uses an AI coding assistant, direction stays consistent. But in enterprise teams, each developer runs their own AI sessions — and each AI drifts independently. Developer A's AI refactors toward microservices while Developer B's AI doubles down on the monolith. Without shared direction management, AI agents across multiple developers pull the project apart.

Musher Engineering solves this. It gives every developer's AI the same goals, non-goals, decisions, and project state — so all AI sessions converge on one direction, regardless of who's coding or which IDE they use.

What It Does

Musher manages your project's direction — goals, decisions, scope — so LLM coding agents stay aligned across developers and sessions. Zero dependencies, 6 IDE support, native format generation.

  • Direction Guard — Every coding request is checked against project goals/non-goals before execution
  • State Files — 5 markdown files that persist project knowledge across LLM sessions
  • Skills — Step-by-step procedures for planning, review, debugging, and direction changes
  • Agents — Role-based personas that enforce the workflow (planner, reviewer, sprint-manager)
  • Failure Patterns — Project-specific failure log that prevents repeat mistakes
  • Decision Log — Records why decisions were made so LLMs don't re-debate settled choices

Quick Start

# Solo mode (default)
npx musher-engineering init

# Team mode (multi-developer)
npx musher-engineering init --team

Select your IDE when prompted. Files are installed into the current directory.

After installation, ask your LLM to run the bootstrap skill:

"Run bootstrap to onboard this project."

This scans your codebase and fills all 5 state files automatically.

Non-interactive

npx musher-engineering init --ide vscode
npx musher-engineering init --ide claude
npx musher-engineering init --ide cursor
npx musher-engineering init --ide codex
npx musher-engineering init --ide windsurf
npx musher-engineering init --ide antigravity

Options

| Flag | Description | |------|-------------| | --ide <name> | Target IDE: vscode, claude, cursor, codex, windsurf, antigravity | | --mode <mode> | Project mode: solo (default) or team | | --dir <path> | Target directory (default: current directory) | | --team | Shorthand for --mode team | | --batch | Non-interactive mode (requires --ide; defaults to solo mode) | | --overwrite | Overwrite existing files (including state files) | | --version | Show version number |

Health Check

# Verify Musher files are installed
npx musher-engineering doctor

# Verify state files have real content (not just placeholders)
npx musher-engineering validate

Supported IDEs

| IDE | Dispatcher (always-on) | Skills | Agents | |-----|----------------------|--------|--------| | VS Code Copilot | .github/copilot-instructions.md | .github/skills/*/SKILL.md | .github/agents/*.agent.md | | Claude Code | .claude/rules/core.md | .claude/skills/*/SKILL.md | .claude/agents/*.md | | Cursor | .cursor/rules/core.mdc | .cursor/skills/*/SKILL.md | .cursor/agents/*.md | | Codex | AGENTS.md | .agents/skills/*/SKILL.md | .codex/agents/*.toml | | Windsurf | .windsurf/rules/core.md | .windsurf/skills/*/SKILL.md | (agents installed as skills) | | Antigravity | GEMINI.md | .gemini/skills/*/SKILL.md | .gemini/agents/*.md |

All IDEs also get state files (project-state.md, project-brief.md, features.md, failure-patterns.md, dependency-map.md) in the docs/ directory.

What Gets Installed

Dispatcher (always active)

  • Core Rules — 42-line dispatcher: session start guidance, workflow references, state file list, and Iron Laws. Detailed rules are embedded in each skill/agent that enforces them.

Skills (on-demand procedures)

  • bootstrap — Onboard project into Musher: scans codebase + fills state files automatically
  • learn — End-of-session wrap-up: captures failure patterns, updates project state, detects direction drift
  • pivot — Propagate direction changes across all state files when goals/tech/scope changes
  • test-integrity — Verify mock/interface synchronization before committing
  • security-checklist — Pre-commit security risk scan
  • investigate — 4-phase systematic debugging (evidence → scope → fix → verify)
  • impact-analysis — Assess change blast radius before modifying shared modules
  • feature-breakdown — Decompose features into dependency-ordered implementation tasks
  • code-review-pr — Review incoming Pull Requests for quality, security, and direction alignment
  • deployment — Pre-deployment validation checklist (tests, state files, security, versioning)

Agents (role-based personas)

  • planner — Feature planning, dependency analysis, Direction Alignment (goal/non-goal/decision check)
  • reviewer — Code review + State File Audit (verifies state files were actually updated)
  • sprint-manager — Sprint/Story state management, scope drift prevention, Next Step Recommendation
  • architect — Design review gate: validates structural changes against project direction and module boundaries

State Files (project memory)

  • project-brief.md — Project vision, goals, non-goals, Decision Log (the "why")
  • project-state.md — Current sprint, stories, and progress tracking (the "where")
  • features.md — Living feature registry so LLMs know what exists (the "what")
  • dependency-map.md — Module dependency graph for impact analysis (the "how")
  • failure-patterns.md — Project-specific failure patterns that prevent repeat mistakes (the "watch out")

How It Works

1. Bootstrap (once)

After musher init, run the bootstrap skill. It scans your codebase, interviews you about goals/non-goals, and fills all 5 state files automatically. This is the most important step — without it, Direction Guard and other skills have no context.

2. Direction Guard (every request)

Before ANY coding task, the LLM reads project-brief.md and checks:

  • Does this align with Goals? → proceed
  • Does this fall under Non-Goals? → warn, suggest pivot
  • Does this contradict a Decision Log entry? → warn, suggest pivot

3. Workflow Pipeline

bootstrap → planner → [code] → reviewer → sprint-manager → learn
  • planner: Checks direction alignment, breaks down features
  • reviewer: Reviews code + audits state file updates
  • sprint-manager: Tracks progress, recommends next action
  • learn: Captures lessons before session ends

4. Direction Changes

When goals, technology, or scope changes, run the pivot skill:

  • Updates ALL 5 state files consistently
  • Records the decision with reasoning in Decision Log
  • Prevents silent inconsistencies across files

Team Mode

This is where Musher Engineering shines. When multiple developers each run their own AI sessions, direction divergence is inevitable — unless you have shared guardrails.

npx musher-engineering init --team

| | Solo Mode | Team Mode | |---|---|---| | Shared State | docs/ (git tracked) | docs/ (git tracked): project-brief, features, dependency-map | | Personal State | docs/ (git tracked) | .harness/ (gitignored): project-state, failure-patterns | | Agent Memory | docs/agent-memory/ | .harness/agent-memory/ | | Target | Solo developer | Enterprise team | | Team Rules | — | Pre-Pull, Owner, Read-Only, Append-Only, Pivot Lock, FP Promotion |

How it keeps everyone aligned:

  • Shared state (project-brief.md, features.md, dependency-map.md) is git-tracked — every developer's AI reads the same goals, non-goals, and decisions
  • Personal state (project-state.md, failure-patterns.md) goes to .harness/ (gitignored) — each developer tracks their own sprint progress without conflicts
  • Pre-Pull Protocol — Before every session, AI pulls latest shared state so no one works on stale direction
  • Pivot Lock — Direction changes require the pivot skill, which updates ALL state files atomically and records the decision with reasoning
  • FP Promotion — Local failure patterns get promoted to shared failure-patterns.md so the whole team learns from each developer's mistakes
  • Owner Tracking — Dependency map marks module owners to prevent accidental cross-team overwrites

Iron Laws

These 8 rules are enforced across all skills and agents. They form the quality backbone of every Musher-managed project.

| # | Law | Enforced By | |---|-----|-------------| | 1 | Mock Sync — Interface change → update mocks in the same commit | reviewer, test-integrity | | 2 | Type Check — Read the source before calling constructors. Never trust memory. | reviewer | | 3 | Scope Compliance — Stay within current Story scope. Report before modifying out-of-scope files. | sprint-manager, reviewer | | 4 | Security — No credentials, passwords, or API keys in code or commits. | security-checklist, reviewer | | 5 | 3-Failure Stop — Same approach fails 3 times → stop and report. | All agents | | 6 | Dependency Map — New/modified module → update dependency-map.md in the same commit. | reviewer, learn | | 7 | Feature Registry — New feature → register in features.md in the same commit. | reviewer, learn | | 8 | Session Handoff — Session end → update project-state.md Quick Summary. | learn |

Documentation

See docs/reference.md for detailed descriptions of every skill, agent, rule, and state file.

Why Musher?

The Core Insight

Existing AI coding frameworks focus on what the AI does (generate code, run tests, deploy). Musher focuses on where the AI is going — ensuring every developer's AI moves in the same direction. This is the difference between a dog sled where each dog runs wherever it wants, and one where a musher keeps the whole team on course.

Comparison

| | BMAD v6.2.2 | gstack v0.15.1 | GSD v1.33.0 | Musher | |---|---|---|---|---| | Focus | Enterprise SDLC methodology | 1-person software factory | Full lifecycle automation | Multi-developer direction alignment | | Files | 200+ | ~40 | Hundreds | ~25 | | Dependencies | Node 20+ | Bun + Node + Playwright | Node 18+ | Zero | | IDE support | 20+ (installer) | 5 (setup --host) | 13 (runtime select) | 6 (native format) | | Direction management | ❌ | ❌ | ❌ | ✅ (Direction Guard + pivot + Decision Log) | | Iron Laws (code quality rules) | ❌ | ❌ | ❌ | ✅ (8 laws embedded in skills) | | Cold start | ❌ | ❌ | /gsd-new-project | ✅ (bootstrap skill) | | Context per task | 4-6 files | 1 file | Fresh 200k per plan | 2-3 files (42-line dispatcher) |

Roadmap

Musher is at v0.7.0 — team conventions are now delegated to project-brief.md instead of being hardcoded.

| Phase | Version | Status | Focus | |---|---|---|---| | Foundation | v0.5.0 | ✅ Done | Core framework: 6 IDE support, 8 skills, 3 agents, Team Mode, Direction Guard | | Hardening | v0.6.5 | ✅ Done | 10 skills, 4 agents, Iron Laws, CLI batch/doctor/validate, merge conflict SOP, direction drift detection | | Flexibility | v0.7.0 | ✅ Current | Delegate team conventions to project-brief.md, remove prescriptive rules, opt-in personal context (.harness/my-context.md) | | Intelligence | v0.8.0 | 🔜 Next | Smart conflict detection, cross-developer direction drift alerts, agent memory sharing | | Ecosystem | v0.9.0 | Planned | Plugin system, community skill/agent marketplace, IDE extension integrations | | Production | v1.0.0 | Planned | Battle-tested across enterprise teams, comprehensive docs, stable API guarantee |

What We're Working On Now

  • [ ] Git hook integration for automatic Pre-Pull verification
  • [ ] CI pipeline to detect Direction Guard violations in PRs
  • [ ] Real-world case studies from enterprise team adoption
  • [ ] Automated state file conflict resolution for Team Mode
  • [ ] Performance benchmarks: with vs without Musher Engineering

Contributing & Feedback

Musher is in active development and we'd love your input.

  • Bug reports & feature requestsGitHub Issues
  • Discussions & ideasGitHub Discussions
  • Try it on your projectnpx musher-engineering init and tell us what works (or doesn't)

We're especially interested in:

  • How Direction Guard performs in teams of 3+ developers
  • Whether the 6 Team Rules (Pre-Pull, Owner, Read-Only, etc.) are sufficient or need more
  • Which IDE integrations need improvement
  • What skills or agents are missing for your workflow

License

MIT