Workflow execlog write
Skill marzun9620/agent_skills/workflow/skills/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.From its SKILL.md
npx -y skills add marzun9620/agent_skills --skill workflow-execlog-writeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.5 KB, 406 tokens by cl100k_base, as published. Nobody here has run it
実行ログ記録手順
.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(日本標準時)
- Test は
task 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)
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.