By srix
A roster of sharp, single-responsibility specialist agents (spec-creator, designer, plan-creator, architect, developer, tester) plus architecture/design/specs folder conventions and a CLAUDE.md, inflated into one project via /specialist-agents:setup. A one-shot scaffold for your team — not an always-on skill layer.
Adds UX/UI thinking to specs that need it — surfaces, flows, interaction states, and design-system decisions, plus self-contained HTML mockups. Use for user-facing tasks, after spec-creator and before plan-creator.
Implements a task by following its spec.md and plan.md on a dedicated branch (normally inside a sandbox). Use only after spec, plan, and architecture review are complete.
Reads a task spec and produces the matching implementation plan at specs/<task>-plan.md. Use after a spec exists and before execution. Produces the HOW given the WHAT.
Creates a task-level specification document in the project's specs/ folder. Use when the user describes a new feature, change, or work item and wants it captured as a formal spec before implementation.
Authors, runs, audits, and updates tests that map 1:1 to a task spec's acceptance criteria. Use after the developer agent finishes, before architect-update mode and before merge. Audit mode is also runnable standalone to survey coverage across the whole spec set.
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A Claude Code plugin that drops a spec-driven workflow into any new (or existing) project. Inflates six specialist agents, an architecture doc, a design folder, and a specs / roadmap / status set — all wired together by a generated CLAUDE.md.
What this is — and isn't. Unlike always-on skill layers you wear over every project, specialist-agents is a one-shot inflation: a fixed roster of sharp, single-responsibility agents dropped into one repo and tuned for your team. The agents live in the project's agents/ folder. You invoke a specialist when a task calls for it — you don't run them all the time.
Run /specialist-agents:setup inside a project directory and the following lands in cwd:
.
├── CLAUDE.md ← project guide for Claude Code, points at agents/ + architecture/
├── agents/
│ ├── spec-creator.md ← writes specs/<task>-spec.md (the WHAT)
│ ├── designer.md ← UX/UI thinking for user-facing specs (the LOOK & FEEL)
│ ├── plan-creator.md ← writes specs/<task>-plan.md (the HOW)
│ ├── architect.md ← owns architecture/architecture.md; reviews plans, updates post-merge
│ ├── developer.md ← implements an approved plan on the sandbox branch
│ └── tester.md ← authors / runs / audits tests 1:1 against acceptance criteria
├── architecture/
│ ├── architecture.md ← living technical doc with ADR-style decision log
│ └── local-development.md ← setup notes, commands, gotchas
├── design/
│ ├── README.md ← where things live; engineer-facing
│ ├── design-system.md ← tokens, type, spacing, motion, components, decisions
│ ├── mockups/ ← self-contained HTML mockups from the designer agent
│ └── exports/ ← dated snapshots from an external design tool (optional)
├── sdlc/
│ └── flow.md ← SDLC flow — Mermaid diagram + sandbox lifecycle
└── specs/
├── REQUIREMENTS.md ← product-level FRs / NFRs
├── ROADMAP.md ← phased plan with entry/exit criteria
├── STATUS.md ← live phase + task-spec inventory
└── ui-design-brief.md ← product-level UI brief
The spec is authored in main; everything else — build, your review, and the final commit — happens inside a sandbox, reviewed once just before that commit. Only the merge crosses back to main. Scaffolded projects get this as sdlc/flow.md.
flowchart LR
subgraph main1["main repo"]
spec["spec-creator<br/>writes the spec"]
end
spawn(["⎇ spawn sandbox<br/>branch sandbox/<name>"])
subgraph sandbox["sandbox · all of this runs here"]
direction LR
subgraph devloop["development loop"]
direction LR
designer["designer<br/>UI/UX only"]
plan["plan-creator"]
arev["architect<br/>review the plan"]
dev["developer<br/>implement"]
test["tester"]
adoc["architect<br/>update technical docs"]
designer --> plan --> arev --> dev --> test --> adoc
end
review{"human review<br/>artifacts + working prototype"}
commit(["final commit"])
adoc --> review
review -- "approved" --> commit
review -- "changes" --> devloop
end
subgraph main2["main repo"]
merge(["merge → main<br/>delete sandbox"])
end
spec --> spawn --> designer
commit --> merge
Each agent has a sharp role:
specs/<task>-design.md and self-contained HTML mockups under design/mockups/. No code.architecture.md and updates the doc after merges.The agents define the roles; they're built to lean on community skills for technique. Each agent file has a Leverage available skills section nudging it toward the relevant packs when they're installed — and the agents stay fully functional without any:
superpowers — brainstorming, writing-plans, TDD, systematic-debugging, verification-before-completion, code review (used across every agent).frontend-design — distinctive, production-grade UI (designer).impeccable and mattpocock — language idioms and quality, especially TypeScript (plan-creator, developer).Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Develop, test, build, and deploy Godot 4.x games with Claude Code. Includes GdUnit4 testing, web/desktop exports, CI/CD pipelines, and deployment to Vercel/GitHub Pages/itch.io.
Comprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review
Comprehensive PR review agents specializing in comments, tests, error handling, type design, code quality, and code simplification
A growing collection of Claude-compatible academic workflow bundles. Covers scientific figures, manuscript writing and polishing, reviewer assessment, citation retrieval, data availability, paper reading, literature search, response letters, paper-to-PPTX conversion, and evidence-grounded Chinese invention patent drafting. Rules are organized as reusable skill folders with explicit workflows and quality checks.
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
npx claudepluginhub srix/specialist-agents --plugin specialist-agents