AgentSkillsCN

kimchi:status

当您遇到任何 Bug、测试失败,或意外行为时——在提出修复方案之前,此技能将为您提供有力支持。它遵循四阶段根因分析法,帮助您快速定位问题根源。

SKILL.md
--- frontmatter
name: kimchi:status
description: This command should be used to check the current state of the Kimchi planning pipeline, including which stages have completed, what artifacts exist, and bead validation status.

Kimchi Status

Check the current state of the planning pipeline.

Process

  1. Check if .kimchi/ directory exists

  2. If no .kimchi/ directory:

    • Report: "No active plan. Run /kimchi:plan [idea] to start."
    • Check if .beads/ exists and report bead count if so
  3. If .kimchi/ exists, list artifacts and their status:

code
Check for each file:
- .kimchi/CONTEXT.md          → Stage 1: Clarification
- .kimchi/REQUIREMENTS.md     → Stage 2: Requirements
- .kimchi/RESEARCH.md         → Stage 3: Research
- .kimchi/PLAN.md             → Stage 4: Generation
- .kimchi/PLAN-REVIEWED.md    → Stage 5: Review
- .kimchi/PLAN-DRAFT.md       → Stage 6: Refinement
- .kimchi/PLAN-REVISED-*.md   → Stage 7: Cross-Model Review (list which models)
- .kimchi/PLAN-SYNTHESIZED.md → Stage 8: Synthesis
- .beads/manifest.yaml        → Stage 9: Bead Conversion
- .kimchi/VALIDATION-REPORT.md → Stage 10: Validation
  1. Check .beads/ directory:

    • Count .yaml files (excluding manifest)
    • Check if manifest.yaml exists
    • Report validation status from VALIDATION-REPORT.md if it exists
  2. Format output:

code
Kimchi Pipeline Status
═══════════════════════

Stage 1:  Clarification      ✓ CONTEXT.md (modified: [date])
Stage 2:  Requirements       ✓ REQUIREMENTS.md (modified: [date])
Stage 3:  Research           ✗ Not started
Stage 4:  Generation         ✗ Not started
Stage 5:  Review             ✗ Not started
Stage 6:  Refinement         ✗ Not started
Stage 7:  Cross-Model Review ✗ Not started (models: none)
Stage 8:  Synthesis          ✗ Not started
Stage 9:  Bead Conversion    ✗ Not started
Stage 10: Validation         ✗ Not started

Beads: [N] files in .beads/
Next step: Run /kimchi:research to continue pipeline

Use ls -la on the .kimchi/ and .beads/ directories to check file existence and modification dates.