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

@websitelabs/software-teams

v0.5.4

Published

Software Teams - Skills and Agents to help with Software Development

Readme

Software Teams

A team of specialist AI agents that plan, build, review, and ship features end-to-end.

npm version CI License: MIT

You:   /st:create-plan "Add password reset flow"
ST:    Plan written. 4 tasks across backend, frontend, qa. Approve?
You:   approved
You:   /st:implement-plan
ST:    Wave 1: backend done (commit 1a2b3c). Wave 2: frontend done (commit 4d5e6f).
       QA pass: 12/12 tests added and passing. Ready to ship?
You:   /st:generate-pr
ST:    PR #42 opened.

That's the loop. Plan → approve → implement → ship. One Claude Code session.


Why use this

Claude Code has built-in subagents. Software Teams sits on top of them and adds the workflow — the specific orchestration patterns that turn "I have a ticket" into "I have a merged PR" without you driving each step.

| You want… | Reach for | |-----------|-----------| | To ask Claude one focused question | Claude Code itself | | To dispatch one specialist for a clear task | Claude Code's /agents | | A repeatable plan-then-build flow with multiple specialists, atomic commits, and a generated PR | Software Teams | | Autonomous execution from a GitHub issue or PR comment | Software Teams (GitHub Actions mode) |

The differentiators:

  • Three-tier planning keeps prompt context tight. The planner writes a spec.md (the what), an orchestration.md (the how — task graph, agent pinning, sequencing rules), and one T{n}.md slice per task. When a specialist is spawned for task T3, it loads only T3's slice and the SPEC sections that slice cites — not the whole plan, not the other tasks. On a 12-task plan this typically saves 60–80% of per-spawn tokens.
  • Native Claude Code subagents. No identity-injection preambles. Specialists are real .claude/agents/<name>.md files generated from the canonical specs in agents/.
  • Rules that learn from PR review. When a reviewer says "we always use path aliases here," the feedback-learner extracts the rule, dedupes it against your existing .claude/CLAUDE.md, and writes it to .software-teams/rules/{frontend,backend,…}.md so the next plan picks it up.
  • Three runtimes, one codebase. Same workflows from inside Claude Code (/st:*), from your terminal (software-teams …), or from a GitHub PR comment (Hey software-teams …).

Quickstart (60 seconds)

# Install globally
bun install -g @websitelabs/software-teams
# (or: npm install -g @websitelabs/software-teams)

# Initialise in your project
cd ~/code/your-project
software-teams init

That sets up .software-teams/ (state, plans, rules), .claude/agents/ (24 specialists), and a CLAUDE.md routing block.

Now from inside Claude Code in that project:

/st:create-plan "Add a /healthz endpoint with a 200 response and a basic test"

The planner spawns, scans your codebase, and writes a plan. Reply approved to lock it. Then:

/st:implement-plan

The orchestrator picks specialists, runs them in dependency order, and posts a summary when each task is done. From there: /st:commit, /st:generate-pr, ship.


Three ways to drive it

Inside Claude Code — slash commands trigger the workflow:

/st:create-plan <feature description>
/st:implement-plan
/st:pr-review <pr-number>

From the terminal — same workflows, scriptable:

software-teams plan "add password reset flow"
software-teams implement
software-teams quick "fix the broken login button"
software-teams review 42
software-teams pr

From a GitHub PR/issue comment — autonomous mode, runs in Actions:

Hey software-teams plan add password reset flow
Hey software-teams implement
Hey software-teams review

The action handles plan-then-build, posts progress comments, opens the PR. See GitHub Actions setup for the one-time wiring.


What's actually shipping

The headline workflows are the ones in the Quickstart. Under the hood:

  • A planner that produces three-tier plans by default and falls back to single-tier for trivial work.
  • A complexity router that decides whether one specialist handles a task or whether to fan out into wave-based parallel execution.
  • A QA gate that runs after every task and can halt the orchestrator on critical findings.
  • A rules system layered on top of .claude/CLAUDE.md. CLAUDE.md is the source of truth; .software-teams/rules/*.md adds team-specific guidance the feedback loop accumulates from PR reviews.
  • Worktree integration for isolated environments when you want the agent to work on a branch without touching your local checkout.

Full reference: software-teams.md.


Slash commands

Both prefixes invoke the same skills — pick by how you installed.

| Skill | npm CLI prefix | Plugin prefix | What it does | |---|---|---|---| | init | /st:init | /software-teams:init | One-time setup in the current project | | create-plan | /st:create-plan | /software-teams:create-plan | Plan a feature (three-tier by default) | | implement-plan | /st:implement-plan | /software-teams:implement-plan | Execute the current plan | | quick | /st:quick | /software-teams:quick | One-shot focused change, no orchestration | | pr-review | /st:pr-review | /software-teams:pr-review | Review a PR and post line comments | | pr-feedback | /st:pr-feedback | /software-teams:pr-feedback | Address PR review comments and learn rules | | commit | /st:commit | /software-teams:commit | Conventional commit | | generate-pr | /st:generate-pr | /software-teams:generate-pr | Open a pull request | | worktree | /st:worktree | /software-teams:worktree | Create an isolated worktree | | status | /st:status | /software-teams:status | Show current state and next action |


GitHub Actions setup

software-teams setup-action

This drops .github/workflows/software-teams.yml into your repo. Then:

  1. Add ANTHROPIC_API_KEY to your repo secrets.

  2. (Optional) Set SOFTWARE_TEAMS_AUTH_ENABLED=true and SOFTWARE_TEAMS_ALLOWED_USERS to restrict who can trigger.

  3. Comment on any issue/PR:

    Hey software-teams plan <description>
    Hey software-teams implement
    Hey software-teams quick <small fix>
    Hey software-teams review
    Hey software-teams do <clickup-ticket-url>

The action threads its responses, supports refinement (change task 2…), and respects an explicit approved gate before implementation. Plans live in the cache; rules can be persisted to your repo or pushed to a shared rules repo across projects.


The specialists

Software Teams ships 24 specialist agents organised by team. You don't pick them by hand — the planner pins each task to the right specialist via the agent router, and the orchestrator spawns them. Listed here for transparency, not as a UX surface you need to memorise.

| Team | Specialists | |------|-------------| | Engineering | backend, frontend, architect, programmer, debugger, perf-analyst, security | | Product & Research | planner, researcher, phase-researcher, product-lead, ux-designer | | Quality | quality, qa-tester, verifier, plan-checker | | DevOps | devops | | Delivery | committer, pr-generator, pr-feedback, feedback-learner | | Oversight | producer, head-engineering, codebase-mapper |

Each specialist is a .claude/agents/software-teams-<role>.md file generated by software-teams sync-agents from the canonical sources in agents/. Re-run sync-agents after upgrades to refresh.


Configuration

Everything lives under .software-teams/:

.software-teams/
├── state.yaml          # current plan, progress, review status
├── config/
│   ├── config.yaml     # workflow + model config
│   └── adapter.yaml    # tech stack + quality gates
├── plans/              # spec.md / orchestration.md / T{n}.md slices
├── rules/              # team rules (general/backend/frontend/testing/devops + commits/deviations)
├── persistence/        # codebase index, spawn ledger
└── feedback/           # PR feedback drafts (when --no-comments)

Project-type adapters (adapters/<type>.yaml) define quality gates per stack — e.g. PHP/Laravel runs composer test and composer cs, TypeScript runs bun test and bun run typecheck. Override via .software-teams/config/adapter.yaml.


Status

  • Stable: planning, implementation, commit, PR generation, PR review, GitHub Actions runtime.
  • Recent: external rules-repo round-trip with CLAUDE.md dedup, three-tier planning, native Claude Code subagent integration.
  • Next: (open an issue to weigh in)

Tested on macOS and Linux with Bun ≥ 1.0 and Claude Code ≥ 1.0. Node 18+ supported via npm.


Contributing

Software Teams is opinionated software. PRs that align with the existing patterns (single-concern agents, scoped spawn prompts, three-tier plans) are welcome. PRs that add a 25th specialist or a new top-level concept will need a strong case in the issue first — surface area is a feature.

git clone https://github.com/zottiben/software-teams
cd software-teams
bun install
bun run build
bun test

The framework is self-hosted: it uses its own workflows to develop itself. Run software-teams sync-agents after editing anything in agents/ to regenerate the .claude/agents/ mirror.


License

MIT — see LICENSE.