ソース情報
- リポジトリ
- songsid/AgEnD
- ソースの最終更新活動
- 2026年8月11日 01:39
- 検出された SKILL.md の言語
- 英語
- スター
- 6
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/songsid/AgEnD --skill fleet-healthコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | fleet-health |
| description | Check instance health and what an agent is doing; recover a stuck instance |
| roles | ["general"] |
Prefer the fleet tools — they already know each instance's state:
get_fleet_status — status + execution state (idle / working / stuck) for every instance.describe_instance("<name>") — one instance's status, last activity, description.list_instances — quick roster.The daemon derives idle/working/stuck itself (per-backend), so you do not need to
scrape prompts. Don't hand-write pane-text checks like X% !> — that prompt is
kiro-specific and wrong for claude-code / codex / grok / antigravity.
When the user wants the live screen (not just a status word):
get_instance_logs("<name>") — recent output.tmux capture-pane -t agend:<name> -p | tail -20Do this when the user asks, or confirm first — don't silently restart others' work.
restart_instance("<name>") — reloads config, keeps the session. First choice for a
dead/looping instance.replace_instance("<name>") — fresh instance with handover context, when the session
itself is the problem (see instance-lifecycle skill).A genuinely wedged CLI can sometimes be freed without a restart by interrupting it —
that is the cancel key, exposed to users as the Cancel button / /cancel. Only drop to
tmux send-keys -t agend:<name> C-c (kiro) / Escape (others) if the tools aren't enough.