Help us improve
Share bugs, ideas, or general feedback.
Kimchi planning pipeline plugin for Claude Code
npx claudepluginhub tromml/kimchiPlanning pipeline with cross-model analysis that transforms vague ideas into validated, standalone task specifications (beads) for multi-agent execution. Includes format conversion to OpenCode and Codex. 3 pipeline agents, 5 review agents, 8 execution skills, 16 commands.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
A Claude Code plugin that transforms vague ideas into validated, standalone task specifications (beads) for multi-agent execution.
Kimchi is prompt-native — all logic lives in markdown files. No TypeScript, no build step. Skills, agents, and personas work together through a 10-stage planning pipeline that produces self-contained task specs any agent can pick up and execute independently.
claude plugin add https://github.com/Tromml/kimchi
/kimchi:plan "Add user authentication with magic links"
This runs the full pipeline through refinement: clarify, requirements, research, generate, review, refine. The output is a draft plan in .kimchi/PLAN-DRAFT.md.
For fully automated end-to-end (plan through bead generation):
/kimchi:plan "Add user authentication with magic links" --full-auto
Kimchi breaks planning into discrete stages, each producing a markdown artifact:
idea
|
v
clarify Extract understanding through structured questions -> CONTEXT.md
|
requirements Categorize into v1 (must), v2 (next), out of scope -> REQUIREMENTS.md
|
research Investigate codebase patterns and frameworks -> RESEARCH.md
|
generate Create plan with tasks, deps, complexity estimates -> PLAN.md
|
review 5 personas critique for scope creep, complexity, etc -> PLAN-REVIEWED.md
|
refine Iterate until quality threshold or diminishing returns -> PLAN-DRAFT.md
|
plan-revise Fresh-eyes cross-model review (run per model) -> PLAN-REVISED-{model}.md
|
plan-synthesize Merge cross-model revisions into hybrid plan -> PLAN-SYNTHESIZED.md
|
beads Convert to standalone YAML task specs -> .beads/
|
validate 4 validators check standalone executability -> enriched beads
Each stage can be run independently. The pipeline writes everything to .kimchi/ in your project root.
"Taste, adjust, remember. Each batch teaches the next."
Halmoni is Kimchi's self-improvement system. Like a Korean grandmother who tastes her kimchi and adjusts the recipe each time, Halmoni observes what happened during execution, proposes improvements to skills and validators, validates them against history, and applies them with versioning.
/kimchi:halmoni --from-bead 008
/kimchi:halmoni --from-feedback "the review stage missed the N+1 query"
/kimchi:halmoni --taste-only
| Skill | Description |
|---|---|
kimchi:plan | Full pipeline orchestrator (clarify through refine) |
kimchi:clarify | Extract understanding through structured questions |
kimchi:requirements | Categorize requirements into v1, v2, out of scope |
kimchi:research | Investigate codebase patterns and frameworks |
kimchi:generate | Generate plan with tasks, deps, complexity |
kimchi:review | Multi-persona plan critique |
kimchi:refine | Iterative improvement until quality threshold |
kimchi:plan-revise | Cross-model fresh-eyes review |
kimchi:plan-synthesize | Synthesize cross-model revisions |
kimchi:beads | Convert plan to standalone bead YAML specs |
kimchi:validate | Validate beads for standalone executability |
| Skill | Description |
|---|---|
kimchi:tdd | RED-GREEN-REFACTOR cycle enforcement |
kimchi:systematic-debugging | 4-phase root cause analysis before proposing fixes |
kimchi:simplicity-enforcement | YAGNI, minimal code, duplication over wrong abstraction |
kimchi:verification-before-completion | Evidence before assertions, always |
kimchi:bead-protocol | Multi-agent bead execution coordination |
| Agent | Description |
|---|---|
kimchi:pipeline:clarifier | Generates structured clarification questions |
kimchi:pipeline:researcher | Discovers codebase patterns and conventions |
kimchi:pipeline:bead-converter | Converts plan tasks into standalone bead YAML |
| Agent | Description |
|---|---|
kimchi:review:complexity-detector | Identifies unnecessary complexity and over-engineering |
kimchi:review:feature-trimmer | Identifies non-essential features to cut or defer |
kimchi:review:scope-guardian | Catches scope creep and vague acceptance criteria |
kimchi:review:test-coverage-advocate | Identifies missing or insufficient test specs |
kimchi:review:premature-optimization-detector | Identifies optimizations not yet needed |