AgentSkillsCN

plan-progress-journal

在本仓库中,依据责任分工的计划任务记录实施进展。当功能开发、重构、Bug修复或测试更新完成时,需及时更新计划/任务/*中的对应任务文件夹,同步更新状态变化与带日期的工作日志。

SKILL.md
--- frontmatter
name: plan-progress-journal
description: Record implementation progress against responsibility-based plan tasks in this repository. Use when feature work, refactors, bug fixes, or test updates are completed and the matching task folder in plan/tasks/* must be updated with status changes and a dated work log.

Plan Progress Journal

Use this workflow after implementing a change so the responsibility plan and history stay current.

Workflow

  1. Pick the responsibility area from references/area-map.md.
  2. Run scripts/record_progress.py with area, summary, and files.
  3. If a task is completed, pass --task "..." to mark the checklist item [x].
  4. Keep the summary concrete (what changed and why).

Command

bash
python3 .codex/skills/plan-progress-journal/scripts/record_progress.py \
  --area gameplay-engine \
  --status done \
  --summary "Split run scoring into dedicated engine file" \
  --files Sources/PenantSimLite/GameState+RunScoringEngine.swift Sources/PenantSimLite/PenantSimLite.swift \
  --task "Add inning-level run model"

Outputs

  • Updates plan/tasks/<area>/TASKS.md when --task is provided.
  • Appends area history at plan/tasks/<area>/HISTORY.md.
  • Appends central history at plan/progress-log.md.
  • Triggers board refresh by running improvement-board-sync/scripts/update_board.py.

Rules

  • Do not use vague summaries such as "fix" or "update".
  • Use relative repo paths in --files.
  • Keep one execution per feature batch or bug-fix batch.