원클릭으로
godark-create-phase-overview
Generate a practical overview with real-world examples for a completed roadmap phase
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate a practical overview with real-world examples for a completed roadmap phase
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Analyze an existing project and populate godark.yaml with modules, codegen, CI, and env configuration
Create GitHub issues from a phase planning doc
Create a project roadmap and GitHub milestones through conversation
Create a detailed planning doc for a roadmap phase
Generate scenario spec files for a phase or individual issue
Compress and organize CLAUDE.md into a minimal directory of pointers
| name | godark-create-phase-overview |
| description | Generate a practical overview with real-world examples for a completed roadmap phase |
| argument-hint | <phase-number> |
| disable-model-invocation | true |
Generate a practical overview document for a roadmap phase. The overview explains what was built and illustrates each feature with concrete, real-world examples grounded in the actual codebase -- not hypothetical descriptions of what the code might do, but examples drawn from what it actually does.
These overviews are most valuable after a phase is implemented, when they can reference real code, real config fields, and real command output.
Read the roadmap -- Read docs/ROADMAP.md and find the specified phase.
Extract the phase name, goal, milestone, and feature list. If the phase is
not marked with a checkmark, warn the user that the phase appears incomplete
and ask whether to proceed anyway.
Read the planning doc -- Check docs/planning/ for a planning doc
matching the phase (e.g., phase-7-review-quality-and-dashboard.md). If one
exists, read it for detailed specs, constraints, and acceptance criteria.
Explore the codebase -- For each feature in the phase, find and read the actual code that implements it. Follow imports, check config structs, read prompt templates, look at command definitions. The goal is to understand what was really built, not just what was planned. To find the right places to look:
docs/architecture.json (if it exists) for layer definitions and
their paths — these tell you where each layer's code lives.godark.yaml for config structure, build commands, and module layout.Read existing overviews -- Check docs/phase-overviews/ for existing
files to match the established tone, depth, and formatting conventions. If
overviews exist, follow their style closely.
Write the overview -- Create docs/phase-overviews/phase-NN-<slug>.md
using the format below. Use zero-padded two-digit phase numbers (e.g.,
phase-01, phase-12). The slug should match the phase name from the
roadmap in kebab-case.
Update the README -- Check README.md for a "Phase overviews" table or
similar section that lists phase overview documents. If one exists, add a row
for the new phase matching the existing format. If no such section exists,
skip this step.
Print summary -- Show the file path and feature count.
# Phase N: <Phase Name>
<One paragraph summary: what this phase does, why it matters, and how it fits
into the larger project. Direct and engaging -- no filler.>
---
## <Feature Name>
**What it does:** <1-2 sentences describing the feature.>
**Example:** <A concrete, real-world scenario showing how a user experiences
this feature. Include actual commands, config snippets, log output, data
structures, or workflows as appropriate. Draw from real code -- show actual
config field names, actual CLI flags, actual log messages.>
---
## <Feature Name>
...