Explore a feature or design problem interactively before writing code
Enter the BUILD phase by executing the tracked plan
Create atomic git commits with conventional format
Execute plan tasks iteratively from Linear tracker epics
Verify and close a Linear tracker epic after all tasks are complete
Use this agent when a major implementation step has been completed and needs to be reviewed against the epic contract (requirements, anti-patterns, success criteria) and coding standards.
Use this agent when you need to understand current codebase state, find existing patterns, or verify assumptions about what exists. Dispatched during planning, debugging, bug fixing, task expansion, test analysis, task refinement, and notebox research.
Use this agent to verify claims, assertions, or assumptions against codebase and external evidence before acting on them. Catches hallucinated paths, wrong function signatures, and stale assumptions.
Use this agent when you need current information from the internet, API documentation, library usage patterns, or external knowledge. Dispatched during planning, debugging, and bug fixing.
Use this agent to run tests, pre-commit hooks, or commits without polluting your context with verbose output. Runs commands, captures all output, and returns only summary and failures.
Use BEFORE writing any code for new features, integrations, or system changes. Triggers when the user describes something to build, asks "how should I approach X", is unsure between approaches, or mentions adding/creating/building functionality. Also use when requirements are vague, architecture is unclear, or the task involves design decisions (e.g., choosing libraries, data models, API patterns). Do NOT use for bug fixes, straightforward code cleanup, executing existing plans, or tasks where the implementation path is already clear. This skill researches the codebase, asks Socratic questions, generates competing designs under different constraints, and produces a design summary for `cape:write-plan` to formalize into a Linear tracker epic.
Create atomic git commits with conventional commit format and selective staging. Use whenever the user wants to commit changes — explicit requests ("commit this", "make a commit", "let's commit", "/cape:commit") and implicit ones ("we're done, save this", "wrap this up"). Also use when another cape skill finishes a unit of work and needs to commit. Covers staging decisions, splitting large diffs into separate logical commits, and writing thorough commit messages that explain the change. Do NOT use for pushing, creating PRs, or branch operations.
Meta-skill that activates cape's workflow system. Injected at session start; always active and never manually triggered. Routes every task to the right cape skill and enforces workflow chains: brainstorm before planning, plan before coding, TDD during implementation, diagnosis before fixing. If a cape skill matches the user request, using it is mandatory.
Build from a Linear tracker epic, one task at a time. The counterpart to cape:write-plan: write-plan creates the epic and first sub-issue, execute-plan implements it. Triggers on: "continue", "next task", "resume", "let's go", "work on the plan", a Linear issue ID, or transitioning after planning is complete. Uses the local tracker cache for orientation and refreshes that cache after every Linear write.
Verify and close a Linear tracker epic after all tasks are complete. Use when the user says "finish the epic", "we're done", "close out the epic", all tasks are done and the user wants to close it, or execute-plan detects all success criteria appear met. Runs final verification, checks success criteria with evidence, optionally writes a minimal outcome summary to Linear, and closes the epic.
Executes bash commands
Hook triggers when Bash tool is used
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.
Opinionated Claude Code commands and skills for a single-agent build workflow.
Cape routes every task to the right skill and runs it through one of four chains: plan a change, build it test-first, ship it, or fix a bug. Issue state lives in Linear; a session-start banner shows where you left off.
Add cape as a Claude Code plugin:
claude plugin add sQVe/cape
Or run it from a local clone:
claude --plugin-dir /path/to/cape
The plugin ships a cape CLI that the skills and hooks call. Build it and put it on your PATH:
pnpm install && pnpm build
ln -s "$PWD/cli/dist/index.mjs" ~/.local/bin/cape
The don-cape router loads at session start and matches each request to a skill. Skills run in four
chains:
| Chain | Steps | Entry |
|---|---|---|
| PLAN | brainstorm → write-plan | /plan |
| BUILD | execute-plan → test-driven-development → commit | /build |
| SHIP | finish-epic → review → pr | /ship |
| BUG | fix-bug → test-driven-development → commit | — |
/plan, /build, and /ship are the user-invoked entry points. The steps inside each chain run on
their own through routing. A human gate sits after PLAN and before SHIP, and BUILD stops after each
task so you can review.
Two gates are hard and block the next step:
pr opens a pull request.Set CAPE_HARD_GATE_OVERRIDE to bypass either one. Every other gate is a contextual warning you can
ignore.
Cape ships 11 workflow skills plus the don-cape router.
| Skill | Role |
|---|---|
brainstorm | Explore a design before writing code |
write-plan | Turn a design into a Linear epic and first task |
execute-plan | Implement one task, verify it, queue the next |
test-driven-development | Drive each change RED → GREEN → REFACTOR |
commit | Stage selectively and write a conventional commit |
finish-epic | Verify success criteria and close the epic |
review | Review changes for bugs, logic, and conventions |
pr | Open a pull request with a verified test plan |
fix-bug | Diagnose to root cause, then patch test-first |
worktree | Create a per-epic grove worktree |
tracker | Write Linear results into the local cache |
Skills that emit prose (commit messages, PR descriptions, epic text, review write-ups) run their
output through the stop-slop skill before finalizing.
Five agents handle focused sub-tasks. Each dispatch names a model tier.
| Agent | Tier | Use |
|---|---|---|
codebase-investigator | haiku | Find patterns and verify codebase state; carries bug-tracer, test-auditor, and notebox-researcher modes |
code-reviewer | sonnet | Review a completed step against the epic contract |
fact-checker | sonnet | Verify claims against codebase and external evidence |
internet-researcher | sonnet | Pull current docs and external knowledge |
test-runner | haiku | Run tests and hooks without flooding context |
Cape tracks epics and tasks as Linear issues and sub-issues through a Tracker seam (createEpic,
createTasks, listReady, updateStatus, close). Writes go to Linear in-session through the MCP
Linear plugin.
Reads never touch the network. The cape tracker CLI writes Linear results into a local cache
(hooks/context/tracker.json), and the session-start hook reads that cache to render the banner:
epic, phase, task progress, next task, and branch. The banner stays absent when no epic is active.
npx claudepluginhub sqve/cape --plugin capePlugin development toolkit with skills for creating agents, commands, hooks, MCP integrations, and comprehensive plugin structure guidance
Manage Claude Code settings and MCP server configurations with best practices
Skills and resources for developing Claude Code plugins, skills, MCP servers, and extensions. Includes comprehensive official documentation and self-update mechanism.
Multi-model consensus engine integrating OpenAI Codex CLI, Gemini CLI, and Claude CLI for collaborative code review and problem-solving.
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns