スキル一覧に戻る
brs98

mizu-status

by brs98

Specialized AI agents for software engineering tasks, powered by the Claude Agent SDK.

0🍴 0📅 2026年1月17日
GitHubで見るManusで実行

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>/:

FileContains
state.jsonInitialization state, session count, plan name
tasks.jsonTask list with status (pending/in_progress/completed/blocked)
progress.txtExecution 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:

  1. Plan: Name of the plan being executed
  2. Progress: X% (Y of Z tasks completed)
  3. Current task: What's being worked on
  4. Session count: How many agent sessions have run
  5. Recent activity: Last few lines from progress file (if relevant)

スコア

総合スコア

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

レビュー

💬

レビュー機能は近日公開予定です