← スキル一覧に戻る

iteration-tracking
by vanman2024
⭐ 0🍴 0📅 2026年1月25日
SKILL.md
name: Iteration Tracking description: Tracks iteration progress and state management. Use when starting, checkpointing, or ending iteration cycles, or when user mentions iteration tracking, progress monitoring, or iteration state. allowed-tools: Read, Bash, Write
Iteration Tracking
This skill provides iteration state management, progress tracking, and checkpoint creation for development cycles.
What This Skill Provides
1. Iteration State Management
- Initialize new iteration cycles
- Track iteration status and progress
- Manage iteration metadata
2. Checkpoint System
- Create mid-iteration checkpoints
- Capture git state at checkpoints
- Track progress between checkpoints
3. Iteration Reports
- Progress summaries
- Change tracking
- Time and effort metrics
Instructions
Starting an Iteration
When user wants to start a new iteration:
-
Create iteration directory structure: !{bash mkdir -p .multiagent/iterations/$ITERATION_NAME}
-
Initialize state file with JSON:
{ "name": "$ITERATION_NAME", "status": "in_progress", "started_at": "timestamp", "checkpoints": [] } -
Create symlink to current iteration: !{bash ln -sf $ITERATION_NAME .multiagent/iterations/current}
Creating Checkpoints
When user wants to create a checkpoint:
- Load current iteration
- Create checkpoint directory
- Capture git status and diff
- Update state with checkpoint metadata
Ending an Iteration
When user completes an iteration:
- Create final snapshot
- Update state to "completed"
- Remove current symlink
- Generate summary report
State File Structure
{
"name": "feature-auth",
"status": "in_progress",
"started_at": "2025-10-24T10:00:00Z",
"checkpoints": [
{
"id": "1234567890",
"timestamp": "2025-10-24T11:00:00Z",
"message": "Initial implementation"
}
],
"completed_at": null
}
Success Criteria
- ✅ Iteration state is persisted and trackable
- ✅ Checkpoints capture meaningful progress
- ✅ Reports show clear progress metrics
- ✅ State transitions are clean and consistent
Plugin: 04-iterate Skill Type: State Management + Tracking Auto-invocation: Yes (via description matching)
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です