用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/songsid/AgEnD --skill fleet-health命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| 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.