Agent skill
progress-files
過去のセッションの進捗ファイルを参照して作業コンテキストを継続するためのガイド。(1) 新しいセッションを開始して以前の作業を継続したい時、(2) 過去に何をやったか思い出したい時、(3) 中断した作業の続きを始める時、(4) プロジェクトの進捗履歴を確認したい時
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/progress-files
SKILL.md
Progress Files - 過去の進捗を参照する
進捗ファイルの場所
.agents/progress/*.md
ファイル名は YYYY-MM-DD_HH-MM-SS.md 形式(セッション開始時刻)。ソートすると時系列順になる。
過去の進捗を参照する
最新の進捗を確認
# 最新3件のファイルを取得
ls .agents/progress/*.md | sort -r | head -3
取得したファイルを読んで、前回までの作業状況を把握する。
キーワードで検索
# 特定キーワードを含むファイルを検索
grep -l "認証" .agents/progress/*.md
# コンテキスト付きで検索
grep -C 3 "TODO" .agents/progress/*.md
進捗ファイルの構造
# Session YYYY-MM-DD_HH-MM-SS
## YYYY-MM-DD_HH-MM-SS
- 達成したこと
- 課題や次のステップ
各 ## YYYY-MM-DD_HH-MM-SS セクションは Stop イベント時に追加される。「TODO」「次回」「残タスク」などのキーワードで未完了タスクを探す。
セッション開始時にやること
ls .agents/progress/*.md | sort -r | head -3で最新ファイルを確認- 最新の進捗ファイルを読む
- 未完了タスクや引き継ぎ事項を把握して作業を開始
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?