원클릭으로
tasks-md-generator
Generate implementation TASKS.md plans from one design document or from all feature documents in a directory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate implementation TASKS.md plans from one design document or from all feature documents in a directory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Commit and publish local GitHub work with review requests. Use when the user wants Codex to commit staged changes, stage all changes only when nothing is staged, push the current branch, and open a GitHub pull request that tags @codex and @copilot for review.
Analyze staged and unstaged git changes and refactor for readability, maintainability, and conciseness while preserving behavior. Use when the user asks to refactor recent changes, clean up work in progress, improve code quality, or review a diff for safe structural improvements.
Run a phased feature-development workflow: discovery, codebase exploration, clarifying questions, architecture options, implementation, quality review, and summary. Use when a user asks for end-to-end feature delivery with strong design rigor before coding.
Convert one planning document into PRD.md, USER_FLOW.md, BACKEND_ARCHITECTURE.md, FRONTEND_DESIGN.md, and TASKS.md in fixed deterministic order with a quality gate and traceability checks.
Remove AI-generated code slop from the current branch by auditing `git diff main...HEAD` and applying minimal cleanups. Use when a user asks to de-slop a PR/branch, make code look human-written, or remove over-defensive/verbose/generated patterns without changing behavior.
Execute a full feature workflow in order by chaining feature development, test writing, feature summaries, refactor analysis, selective refactor implementation, personal code review artifacts, and review-feedback triage when feedback is available. Use when the user wants an end-to-end structured delivery process.
| name | tasks-md-generator |
| description | Generate implementation TASKS.md plans from one design document or from all feature documents in a directory. |
| disable-model-invocation | true |
python3 .cursor/scripts/discover_targets.py <path> to map input to output target files.TASKS.md in the same directory.python3 .cursor/scripts/validate_tasks_md.py <target>/TASKS.md before finalizing.Use when the input path is a single markdown file.
<parent>/TASKS.md.Use when the input path is one feature directory (for example docs/login).
<dir>/TASKS.md.PRD.mdUSER_FLOW.mdBACKEND_ARCHITECTURE.mdFRONTEND_DESIGN.mdREADME.md.md files except TASKS.mdUse when the input path is a parent docs folder containing multiple feature directories.
TASKS.md per detected feature directory.T1, T2, ... TN) in strict execution order.Blocked by reference points only to earlier tasks.Follow .cursor/references/tasks_format.md exactly.
Required top-level sections in this order:
# <Feature Name> - Implementation Tasks<N> tasks organized into <M> tiers ...## Dependency Graph with ASCII tier graph in a fenced code block## TIER <n> - <name>) with task cards## Summary with tier table and file impact tablesRequired per-task structure:
### T<n>: <area>: <title>Blocked byBlocksFilesReference when source references existRun structural checks:
python3 .cursor/scripts/validate_tasks_md.py <path-to-TASKS.md>
If validation fails, fix ordering, task numbering, missing sections, or bad references.
.cursor/references/tasks_format.md: canonical TASKS.md skeleton and constraints..cursor/scripts/discover_targets.py: target discovery for file, feature-dir, and batch-dir modes..cursor/scripts/validate_tasks_md.py: structural validator for generated TASKS.md output.