Ottonomous plugin marketplace
npx claudepluginhub brsbl/ottonomousSkills for autonomous product development
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations
Claude Code plugins for the Slidev presentation framework
Share bugs, ideas, or general feedback.
Claude Code skills for every stage of product development: spec writing, task prioritization, testing, code review, and documentation.
/plugin marketplace add brsbl/ottonomous
/plugin install ottonomous@brsbl-ottonomous
Use subagents to isolate concerns and prevent context pollution:
Skills and subagents have distinct responsibilities:
This keeps subagents self-contained and reusable while skills orchestrate the workflow.
Skills coordinate multiple subagents working in parallel using run_in_background: true:
Coordination patterns:
/review./review fix./otto.Scaling: 1-4 items = 1 agent, 5-10 = 2-3 agents, 11+ = 3-5 agents. Group by directory or component type.
Every phase has explicit verification:
/spec # define requirements via interview
│
▼
/task # break spec into sessions & tasks
│
▼
┌───────────────────┐
│ │
▼ │
/next batch │ # implement sessions of tasks in parallel then stage results
│ │
▼ │
/test write staged │ # generate tests, then lint/typecheck/run all
│ │
▼ │
/review staged │ # multi-agent code review
│ │
▼ │
/review fix staged │ # fix P0-P2 issues
│ │
▼ │
commit ─────────────┘ # loop if more sessions/tasks
│
▼
/summary # generate semantic overview of changes, opened in browser
│
▼
PR
Use /clear between steps to reset context.
| Skill | Description |
|---|---|
/spec [idea] | Researches best practices, interviews you to define requirements and design. technical-product-manager validates completeness, consistency, feasibility, and technical correctness. |
/spec revise {spec} | Saves a comprehensive spec and goes straight to review with codebase exploration, skipping the interview. |
/spec list | Lists all specs with id, name, status, and created date. |
/task <spec-id> | Creates atomic tasks grouped into agent sessions. principal-engineer reviews work breakdown, dependencies, and completeness. |
/task list | Lists all tasks and their spec, sessions, status etc. |
| Skill | Description |
|---|---|
/next | Returns next task id. |
/next session | Returns next session id. |
/next <id> | Launches subagent to implement task or session. Plans first, then implements. |
/next batch | Implements all highest-priority unblocked sessions in parallel. |
| Skill | Description |
|---|---|
/test run | Lint, type check, run tests. |
/test write | test-writer generates tests for pure functions with edge cases, then runs pipeline. |
/test browser | Visual verification with browser automation. |
/test all | Run + browser combined. |
Scope: staged, branch (default)
| Skill | Description |
|---|---|
/review | Multi-agent code review. architect-reviewer checks system structure and boundaries; senior-code-reviewer checks correctness, security, performance; false-positive-validator filters out invalid findings. |
/review fix | Implements all fixes from plan in parallel batches. |
/review fix P0 | Implements only P0 (critical) fixes. |
/review fix P0-P1 | Implements P0 and P1 fixes. |