Workflow Execlog Write

Recording entries to the execution log (.execlog/). Append an entry after each task completes; write the Final Handoff entry when the plan completes. Triggers: execlog, execution log, progress recording, task completion log, night-run log, handoff.

marzun9620 95540dd 1.5 KB Updated

File contents

実行ログ記録手順

.execlog/{branch}.md に各 task の完了記録を追記する。

1. Task 完了エントリ

各 task 完了後に以下を .execlog/{branch}.md に追記:

## [YYYY-MM-DD HH:MM JST]
**Task:** {task description from plan}
**Changed:** {changed files, comma-separated}
**Test:** PASS
**Next:** {next task description, or "Final Handoff"}
  • 日時は JST(日本標準時)
  • Testtask check の結果(PASS/FAIL)
  • FAIL の場合は修正してから記録(FAIL のまま進めない)

2. Final Handoff エントリ

plan 内の全 task 完了後に追記:

## Final Handoff
**Completed:** {list of all completed tasks}
**Test status:** all passing
**Risks:** {remaining concerns, or "none"}
**Review:** {key files for reviewer to check}

3. ファイルが存在しない場合

新規作成。ヘッダーを追加:

# Execution Log: {branch-name}

## [YYYY-MM-DD HH:MM JST]
...

ルール

  • エントリは追記のみ(既存エントリを編集しない)
  • compaction/restart 後はこのログの末尾を読んで再開位置を特定する
  • branch 名はハイフン区切り(例: dh-facility-crud

marzun9620/agent_skills/tree/main/workflow/skills/workflow-execlog-write commit 95540dd805

Frequently asked questions

npx skillmds@latest add marzun9620/workflow-execlog-write