plan-do
25Command
Execute a current planner execution file through implementation and review.
Command
Execute a current planner execution file through implementation and review.
Command
Facilitate a shared hypothesis for one outcome delivered by several slices. Output epics/EPIC-XXXX- /EPIC.md.
Command
Facilitate requirements for one deliverable slice — actor path, edge cases, acceptance criteria. Output features/FEAT-XXXX- /README.md.
Command
Facilitate idea discovery — problem, evidence, critical unknown, explicit outcome. Output ideas/IDEA-XXXX- .md.
Command
Format a feature description as a Jira task brief in valid Jira Markdown.
Command
Reflect on the just-completed plan: compare plan vs reality, update planner-context.md, emit Lessons learned.
Command
Order the slices of one shared hypothesis across Now/Next/Later horizons. Output epics/EPIC-XXXX- /ROADMAP.md.
Command
Build an architecture or execution plan and save it to a file.
Skill Claude CodeCodex
Reflects on a completed planner execution: compares PLANNEREXECUTION.md with commits, review files, agent runs, and user corrections, then appends stable lessons to planner-context.md.
Skill Claude CodeCodex
Builds and saves architecture or execution plans. Use when the user asks to plan a task, split implementation work, turn ready feature requirements (a feature README produced by product-discovery) into architecture, or an architecture document into executable phases.
Skill Claude CodeCodex
Built-in limited product provider — the last-resort fallback of the planner product-discovery pipeline. Selected by routing only when no capable external provider is available. Turns the current formulation and collected statements into a normalized consultation draft (problem, outcome, actors, scope, assumptions…
Skill Claude CodeCodex
A product-discovery assistant that turns an early product idea, problem, or feature list into one structured planning document. Product discovery is the work of clarifying what to build and why before development begins.
Plugin Claude Code
Behavioural testing for Claude Code plugins: author eval cases and graders, run the suite through a verifying wrapper, read failures without weakening the gate, and keep per-plugin test reports.
Skill Claude CodeCodex
A workflow for behaviorally checking Claude Code plugins, including their trigger behavior and the work they carry out. It distinguishes paid model evaluations from ordinary tests for deterministic code.
Plugin Claude Code
Software Development Life Cycle plugin: 3 agents (architect, code-implementer, code-reviewer) covering design, implementation, and review across backend (Python) and frontend (React) stacks. References tdd-master and functional-clarity plugins instead of duplicating their content.
Agent
Designs system architecture: bounded contexts, hand-offs, contracts, data flow, integration points. Activates the sdlc:architect skill which loads stack-specific design references (backend-python / frontend-react / api-design) on demand. Produces an architecture document for the implementer; never writes…
Agent
Implements code per an architecture document: TDD cycle, minimal changes, fail-fast. Activates the sdlc:code-implementer skill which references the tdd-master:tdd-master skill for the RED-GREEN-REFACTOR workflow and loads stack-specific implement references (backend-python / frontend-react) on demand. Never designs…
Agent
Reviews code changes for security, system issues, FPF/Functional Clarity violations, and stack-specific pitfalls. Activates the sdlc:code-reviewer skill which always loads references/security.md (OWASP Top 10), and stack-specific references/backend-python.md or references/frontend-react.md on demand. Operates on…
Skill Claude CodeCodex
This skill should be used when designing system architecture: bounded contexts, module boundaries, data flow, integration contracts, API shape, hand-offs between components. Activates when the user asks to "design", "architect", "split into modules", "where are the boundaries", "design the data flow", or in russian…
Skill Claude CodeCodex
This skill should be used when implementing code per an existing architecture or PLAN document. Activates when the user asks to "implement", "code this up", "build the feature", "add the endpoint", "write the component", or in russian «реализуй», «закодь», «добавь endpoint», «сделай компонент». Mandates TDD via the…
Skill Claude CodeCodex
This skill should be used when reviewing code changes — security issues, system-level defects, FPF/Functional Clarity violations, stack-specific pitfalls. Activates when the user asks to "review", "check this PR", "is this safe", "find bugs", "code review", or in russian «отревью», «проверь код», «есть ли проблемы»…
Plugin Claude Code
TDD (Test-Driven Development) methodology plugin. Provides Red-Green-Refactor workflow, testing patterns, and TDD-focused agent for Python/Django projects.
Agent
Use this agent when you need to write tests following TDD methodology. This agent should be called BEFORE writing implementation code for any new feature, bug fix, or functionality change. The agent writes failing tests first (RED), then minimal code to pass (GREEN), then refactors (REFACTOR). Context: User needs to…
Skill Claude CodeCodex
This skill should be used when the user asks to "write tests", "add tests", "create test", "implement feature", "fix bug", "TDD", "test-driven", "reproduce bug", "write failing test", "Red-Green-Refactor", or when implementing any new functionality that requires testing. Provides TDD methodology based on Kent Beck and…