Agent Skills
› iii-experimental/agentos
› recover
recover
GitHub用于扫描智能体健康状态并自动恢复停滞或失效会话的技能。提供扫描、报告和针对特定ID的智能体恢复功能,支持对智能体进行分类管理。
Trigger Scenarios
需要检查智能体运行状态
发现智能体会话停滞或失效
执行自动化故障恢复流程
Install
npx skills add iii-experimental/agentos --skill recover -g -y
SKILL.md
Frontmatter
{
"name": "recover",
"effort": "normal",
"toolScope": [
"Bash",
"Read"
],
"description": "Scan agent health and auto-recover stale or dead sessions"
}
Check agent health and recover:
- Scan:
curl -X POST http://localhost:3111/api/recovery/scan -H 'Content-Type: application/json' - Report:
curl -X POST http://localhost:3111/api/recovery/report -H 'Content-Type: application/json' - Recover specific:
curl -X POST http://localhost:3111/api/recovery/recover -H 'Content-Type: application/json' -d '{"agentId": "<id>"}'
Classifications: healthy, degraded, dead, unrecoverable.
Version History
- caca2b4 Current 2026-07-25 09:41


