
mizu-status
by brs98
Specialized AI agents for software engineering tasks, powered by the Claude Agent SDK.
SKILL.md
name: mizu-status description: Use when checking the status of an autonomous mizu plan execution - reads state files to show progress percentage, current task, completed tasks, and recent execution notes
Mizu Status Skill
Check the status of a mizu plan execution by reading its state files.
Directory Structure
Each plan has its own directory within .mizu/:
.mizu/
└── <plan-name>/ # e.g., squishy-prancing-mango/
├── plan.md # Copy of the original plan
├── execution.json # Execution config
├── state.json # Execution state
├── tasks.json # Task list
└── progress.txt # Progress log
Finding Plans
To list all plan directories:
ls -la .mizu/
If user specifies a plan name: Use .mizu/<plan-name>/
If multiple plans exist: Use AskUserQuestion to let user choose which plan to check.
Files to Read
All files are in the plan directory .mizu/<plan-name>/:
| File | Contains |
|---|---|
state.json | Initialization state, session count, plan name |
tasks.json | Task list with status (pending/in_progress/completed/blocked) |
progress.txt | Execution log with timestamps |
Quick Status Check
Read state.json and tasks.json together:
// .mizu/<plan-name>/state.json
{
"planName": "squishy-prancing-mango",
"initialized": true,
"sessionCount": 5,
"completedTasks": 3,
"totalTasks": 5
}
// .mizu/<plan-name>/tasks.json
[
{"id": "task-001", "description": "...", "status": "completed", "completedAt": "..."},
{"id": "task-002", "description": "...", "status": "in_progress"},
{"id": "task-003", "description": "...", "status": "pending"}
]
Calculate progress: (completed tasks / total tasks) * 100
Current task: First task with status: "in_progress", or first "pending" if none in progress.
Recent Progress Notes
Use Bash to get recent execution notes:
tail -50 .mizu/<plan-name>/progress.txt
Reporting Status
When asked for status, report:
- Plan: Name of the plan being executed
- Progress: X% (Y of Z tasks completed)
- Current task: What's being worked on
- Session count: How many agent sessions have run
- Recent activity: Last few lines from progress file (if relevant)
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon