Orchestrates 4-stage development workflow (PLAN → IMPLEMENT → TEST → FINAL)
View on GitHubplugins/kenken/skills/iterate/SKILL.md
February 5, 2026
Select agents to install to:
npx add-skill https://github.com/kenkenmain/ken-cc-plugins/blob/main/plugins/kenken/skills/iterate/SKILL.md -a claude-code --skill iterateInstallation paths:
.claude/skills/iterate/# kenken Iterate Workflow
> **For Claude:** This skill orchestrates development through 4 stages. Follow each stage sequentially. Do not skip phases.
## When to Use
```dot
digraph when_to_use {
"Task requires implementation?" [shape=diamond];
"Has spec or requirements?" [shape=diamond];
"Need structured workflow?" [shape=diamond];
"Use kenken:iterate" [shape=box style=filled fillcolor=lightgreen];
"Use superpowers:brainstorming first" [shape=box];
"Manual implementation" [shape=box];
"Task requires implementation?" -> "Has spec or requirements?" [label="yes"];
"Task requires implementation?" -> "Manual implementation" [label="no - research only"];
"Has spec or requirements?" -> "Need structured workflow?" [label="yes"];
"Has spec or requirements?" -> "Use superpowers:brainstorming first" [label="no - explore first"];
"Need structured workflow?" -> "Use kenken:iterate" [label="yes"];
"Need structured workflow?" -> "Manual implementation" [label="no - simple task"];
}
```
## Overview
**Stages:** PLAN → IMPLEMENT → TEST (optional) → FINAL
```dot
digraph workflow {
rankdir=LR;
subgraph cluster_plan {
label="PLAN";
"1.1 Brainstorm" -> "1.2 Write Plan" -> "1.3 Plan Review";
}
subgraph cluster_implement {
label="IMPLEMENT";
"2.1 Implementation" -> "2.2 Code Simplify" -> "2.3 Implement Review";
}
subgraph cluster_test {
label="TEST (optional)";
"3.1 Test Plan" -> "3.2 Write Tests" -> "3.3 Coverage" -> "3.4 Run Tests" -> "3.5 Test Review";
}
subgraph cluster_final {
label="FINAL";
"4.1 Codex Final" -> "4.2 Suggest Extensions";
}
"1.3 Plan Review" -> "2.1 Implementation";
"2.3 Implement Review" -> "3.1 Test Plan" [label="if enabled"];
"2.3 Implement Review" -> "4.1 Codex Final" [label="if disabled"];
"3.5 Test Review" -> "4.1 Codex Final";
"4.2 Suggest Extensions" -> "1.1 Brainstorm" [label="user ac