원클릭으로
markdown-import-plan
Import a plan markdown file into .llm/todo.md as self-contained implementation tasks.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Import a plan markdown file into .llm/todo.md as self-contained implementation tasks.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Restore claude/codex agents from a tmux-reboot snapshot after tmux-resurrect reopens their windows.
Snapshot running tmux claude/codex agents immediately before a reboot so their sessions can be restored afterward.
Commit changes, run git-test precommit checks, and fix failures. Use when asked to fix build, test, lint, typecheck, or precommit failures.
Running precommit checks and build validation. ALWAYS use after ANY code changes.
This skill should be used after completing any task, before returning control to the user. Always run this skill — it handles the case where there's nothing to do.
Coordination guidelines for leading a team of task-executing agents
| name | markdown-import-plan |
| description | Import a plan markdown file into .llm/todo.md as self-contained implementation tasks. |
Use the markdown-tasks skill for task format and script path rules.
Use the user-provided plan path when available. Otherwise, use the plan file from the current conversation if one exists. In Claude Code, if no plan is remembered, identify the most recently modified plan under ~/.claude/plans/ and confirm it with the user. In Codex, ask for the path when the conversation does not identify a stored plan.
Archive the plan locally before creating tasks:
.llm/plans/ if needed..llm/plans/<yyyy-mm-dd>-<descriptive-name>.md.Compose all plan-step tasks, the verification task, and the archive task before writing. Add the complete batch in one shell command by chaining one call per task with &&:
python <plugin-root>/scripts/task_add.py .llm/todo.md "Task description
Read and follow step N from the plan at <absolute-path>
Context line 1" && \
python <plugin-root>/scripts/task_add.py .llm/todo.md "Verify the full plan implementation
Read the entire plan at <absolute-path>" && \
python <plugin-root>/scripts/task_add.py .llm/todo.md "Archive the completed plan
Move <absolute-path> into .llm/plans/done/ only after verification succeeds"
Never add a multi-task import across separate shell commands. Keeping the writes together reduces the chance that concurrent sessions interleave their tasks.
Every task must contain the archived plan's absolute path and all context needed to execute it without seeing another task. Add a verification task that checks the full plan against the implementation.
Add an archive task that moves the completed plan into .llm/plans/done/ after verification passes.
Report how many tasks were created and where the plan was archived.