spec-kitty-implement-review

Featured

Orchestrate the implement-review loop for Spec Kitty work packages using any configured agent. Covers agent dispatch, state transitions, rejection cycles, arbiter escalation, and dependency-aware sequencing across all 13 supported coding agents. Triggers: "implement and review WPs", "run the implement-review loop", "orchestrate WP implementation", "dispatch agents for WPs", "coordinate implement and review", "sprint through WPs". Does NOT handle: specify/plan/tasks phases, setup or repair, glossary maintenance, or direct code editing by the orchestrator.

AI & Automation 1,620 stars 161 forks Updated today MIT

Install

View on GitHub

Quality Score: 90/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# spec-kitty-implement-review Orchestrate the implement-review loop for Spec Kitty work packages. This skill teaches any agent how to dispatch implementation and review to the configured agents, handle rejection loops, enforce cycle limits, and sequence WPs by dependency graph. ## When to Use This Skill - Implement one or more WPs through the full implement-review cycle - Coordinate cross-agent workflows (different agents for implement vs review) - Handle rejection feedback loops with cycle tracking - Run a full mission sprint (WP01 through WP_N) ## Core Concepts ### Agent Selection Spec-kitty selects agents from `.kittify/config.yaml`: ```yaml agents: available: [claude, codex, opencode] auto_commit: true ``` The orchestrator does NOT hardcode agent names. Instead: ```bash # Check which agents are configured spec-kitty agent config list # The workflow commands handle agent selection internally spec-kitty agent action implement WP01 --agent <tool> --profile <profile> spec-kitty agent action review WP01 --agent <tool> --profile <profile> ``` ### Agent Capabilities Not all agents can be dispatched the same way. The dispatch method depends on the agent's CLI capabilities: | Agent | Config Key | CLI Dispatch | Can Run move-task | Tier | |-------|-----------|--------------|-------------------|------| | Claude Code | `claude` | `claude -p "prompt" --output-format json` | Yes | 1 | | GitHub Codex | `codex` | `codex exec --sandbox danger-full-access -C <dir> -` (stdi...

Details

Author
Priivacy-ai
Repository
Priivacy-ai/spec-kitty
Created
11 months ago
Last Updated
today
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

spk-run-implement-review

Orchestrate Spec Kitty work-package implementation and review loops until all packages are done, approved, or correctly rejected.

1,620 Updated today
Priivacy-ai
AI & Automation Featured

spec-kitty-program-orchestrate

Orchestrate a multi-repo, multi-mission Spec Kitty program end-to-end: run specify → plan → tasks → implement → review → merge → mission-review → post-merge fixes across several repositories in a defined dependency order, using background sub-agents for parallel work and a pulse-heartbeat safety net for long uninterrupted runs. Triggers: "ship this program across N repos", "orchestrate a cross-repo release", "run the full mission workflow on repos A/B/C in program order", "drive Decision Moment V1 across all repos", "multi-repo spec-kitty sprint". Does NOT handle: single-mission implement-review loop (use spec-kitty-implement-review), post-merge mission audit (use spec-kitty-mission-review), setup or repair (use spec-kitty-setup-doctor), per-WP review (use spec-kitty-runtime-review).

1,620 Updated today
Priivacy-ai
AI & Automation Listed

spec-implement

Orchestrate parallel implementation of a feature specification by dispatching coder agents batch-by-batch with code review gates between batches. Use this skill when the user says "implement this feature", "start implementing", "run the spec", "execute the plan", "continue implementing", or wants to begin coding a previously planned feature from a specs/{feature}/ folder. Also use when the user says "/spec-implement" (or their host's equivalent invocation syntax) or drags a spec folder into the conversation and asks to implement it. This skill does NOT write code itself — it orchestrates coder subagents that work in parallel.

1 Updated 1 months ago
benjaminthomas