Agent Skills
› iii-experimental/agentos
› recover
recover
GitHub用于扫描智能体健康状态并自动恢复停滞或失效会话的运维工具。提供扫描、报告和针对性恢复接口,支持对智能体进行分类管理。
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


