agent-guardian

Agent体验守护系统。解决AI助手常见体验问题:长时间无响应、任务卡死、中英文混用、状态不透明。包含看门狗监控、智能状态汇报、即时状态查询、语言一致性过滤、消息队列追踪。适用于所有渠道(QQ/微信/Telegram/飞书/Discord等)。当用户抱怨"等太久没回复"、"回复中英文混着"、"不知道在干什么"时使用此skill。

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "agent-guardian" with this command: npx skills add fanxinyun1991/agent-guardian

Agent Guardian 🛡️

AI 助手体验守护系统——让用户永远不会觉得你"卡了"或"乱说话"。

问题背景

AI 助手在实际使用中常见的体验痛点:

  1. 无响应 — 工具调用卡住,用户干等没反馈
  2. 状态不透明 — 用户不知道AI在干什么
  3. 语言混乱 — 中文对话里夹杂英文短语
  4. 任务死循环 — 同一个错误反复重试

架构

┌─────────────────────────────────────────────┐
│                Agent Guardian               │
├─────────────┬──────────────┬────────────────┤
│ 🐕 看门狗    │ 📊 状态汇报   │ 🔤 语言过滤    │
│ (cron 3min) │ (cron 5min)  │ (出站 hook)    │
├─────────────┼──────────────┼────────────────┤
│ 🔍 即时查询  │ 📝 消息队列   │ ⏰ 活跃追踪    │
│ (systemd)   │ (脚本)       │ (插件 hook)    │
└─────────────┴──────────────┴────────────────┘

安装

bash {baseDir}/scripts/install.sh

交互式安装,会询问渠道类型和用户ID。

安装后还需:

  1. 添加 openclaw cron 看门狗任务(见下方)
  2. 应用渠道插件 patch(见 references/patches/
  3. 重启 gateway

组件说明

🐕 看门狗(supervisor.sh)

每3分钟由 openclaw cron 触发,检测:

  • 任务卡住(3分钟无状态更新)
  • 死循环(同一状态重复5次)
  • 错误累积(连续3次错误)
  • 僵尸进程

设置 cron 任务示例:

{
  "name": "agent-guardian-watchdog",
  "schedule": { "kind": "cron", "expr": "*/3 * * * *", "tz": "Asia/Shanghai" },
  "sessionTarget": "isolated",
  "payload": {
    "kind": "agentTurn",
    "message": "读取 /tmp/agent-supervisor-report.txt,如果有告警内容就发给用户,没有就回复 HEARTBEAT_OK"
  }
}

📊 智能状态汇报(smart-status-report.sh)

系统 crontab 每5分钟执行,智能开关:

  • 对话时(最近10分钟有消息)→ 推送状态
  • 沉默时 → 自动静默,不打扰

🔍 即时状态查询(status-query-daemon.sh)

用户发"状态"→ 渠道插件拦截 → 写触发文件 → 守护进程秒回 不经过AI,即使AI卡死也能响应。

🔤 语言一致性过滤(lang-filter.py + detect-language.py)

出站消息自动检测并替换常见英文混用。

  • 70+ 常见英文短语映射(金融/日常/科技)
  • 技术术语白名单保护(AI/API/GDP等不替换)
  • 字符集 + langdetect 双重语言检测

📝 消息队列(msg-queue.py)

追踪每条消息的处理状态(waiting → processing → done)。

  • 自动超时:processing 超5分钟自动标记完成
  • 日报统计:今日处理数量

AI 干活时的状态更新

在执行任务时调用:

bash {baseDir}/scripts/update-work-state.sh working "任务描述"

完成时:

bash {baseDir}/scripts/update-work-state.sh done

出错时:

bash {baseDir}/scripts/update-work-state.sh error "任务描述" "yes"

渠道适配

  • QQ Bot: 详见 references/patches/qqbot.md
  • 通用指南: 详见 references/patches/generic.md
  • 核心原理:在入站(收消息)和出站(发消息)两个 hook 点插入 Guardian 逻辑

不修改插件的降级模式

即使不 patch 渠道插件,看门狗和定时汇报仍可独立运行。 语言过滤和即时查询需要插件 patch 才能完全生效。

文件清单

scripts/
├── install.sh              # 一键安装
├── supervisor.sh            # 看门狗
├── update-work-state.sh     # 工作状态更新
├── smart-status-report.sh   # 智能汇报
├── status-query-daemon.sh   # 即时查询守护进程
├── detect-language.py       # 语言检测
├── lang-filter.py           # 语言过滤
├── msg-queue.py             # 消息队列
└── reset-work-state.sh      # 状态重置
references/
└── patches/
    ├── qqbot.md             # QQ Bot 适配指南
    └── generic.md           # 通用适配指南

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

Git Workflow

Use this skill for any git commit, pull request, or release task. Invoke immediately when the user wants to: stage and commit changes, write a commit message...

Registry SourceRecently Updated
Automation

Atlassian Jira by altf1be

Atlassian Jira Cloud CRUD skill — manage issues, comments, attachments, workflow transitions, and JQL search via Jira REST API v3 with email + API token auth.

Registry SourceRecently Updated
Automation

nix-memory

Monitors and scores agent identity and memory integrity by hashing key files, tracking changes, detecting drift, and providing continuity alerts for OpenClaw...

Registry SourceRecently Updated