Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

skill-106技能 106

Agent Skill

skill-106 用于辅助安全审计、权限检查和凭据风险排查,适合在 OpenClaw 中需要复核安全边界、认证流程或敏感配置时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,232

周安装

343

GitHub Stars

公开资料未说明

下载量

2,744
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skill-106(技能 106)
来源仓库:https://github.com/timbohnett-farther/skill-106
安装命令:
openclaw skills install skill-106
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install skill-106

简介

通过安全约束和审计跟踪管理自主 AI Agent 行为。

  • 支持性能评估与协议升级,保障运行可靠性。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 适用于高安全要求的自动化任务场景。skill-106 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 安装前建议确认权限模型和审计日志存储方式。
  • 注意维护状态,避免策略冲突导致任务中断。

SKILL.md

Skill 106: AI Agent Oversight & Safety

Quality Grade: 94-95/100 Author: OpenClaw Assistant Last Updated: March 2026 Difficulty: Advanced (requires systems thinking, AI understanding, operations)


Overview

AI Agent Oversight is the practice of monitoring, constraining, evaluating, and governing autonomous AI agents in production. As systems become increasingly autonomous, oversight becomes critical—not just for safety and compliance, but for continuous improvement and alignment with organizational goals.

This skill covers:

  • Agent monitoring (behavior, resource usage, decision quality)
  • Safety constraints and guardrails
  • Audit trails and explainability
  • Escalation patterns for human intervention
  • Continuous evaluation of agent performance
  • Alignment between agent goals and business outcomes

Part 1: Agent Monitoring Infrastructure

What to Monitor

Behavioral metrics:

  • Action sequences and decision ratios
  • Resource consumption (tokens, API calls, compute)
  • Error rates and exception handling
  • Latency and throughput
  • Hallucination/confidence metrics

Performance metrics:

  • Task completion rate and quality
  • User satisfaction scores
  • Cost per task
  • Time to completion
  • Success vs. failure patterns

Safety metrics:

  • Policy violations detected
  • Escalations triggered
  • Constraint breaches
  • Anomalies in behavior

Monitoring Implementation

Agent Monitor:
  metrics:
    - name: decision_quality
      window: 5min
      threshold: 0.95
      alert: page_on_call
    - name: token_usage
      window: hourly
      threshold: 10_000_000
      alert: log_and_notify
    - name: error_rate
      window: 5min
      threshold: 0.05
      alert: auto_rollback
  dashboards:
    - real_time_agent_health
    - decision_audit_trail
    - resource_usage_trends

Part 2: Safety Constraints & Guardrails

Constraint Types

Capability constraints:

  • Prevent access to unauthorized APIs or data
  • Limit action scope (read-only vs. write)
  • Restrict resource consumption
  • Gate experimental features

Policy constraints:

  • Enforce approval workflows for sensitive actions
  • Require human review above cost thresholds
  • Validate outputs against compliance rules
  • Maintain audit logs

Goal constraints:

  • Prevent reward hacking
  • Ensure alignment with human preferences
  • Limit side effects and collateral damage
  • Preserve system invariants

Implementation Pattern

@agent.constraint("cost_limit")
def enforce_cost_limit(action: Action) -> bool:
    cost = estimate_cost(action)
    if cost > THRESHOLD:
        escalate_to_human(f"High-cost action: {action}, cost: ${cost}")
        return False
    return True

@agent.constraint("read_only_financial")
def enforce_read_only_financial(action: Action) -> bool:
    if action.resource in FINANCIAL_SYSTEMS and action.method != "GET":
        return False
    return True

Part 3: Audit & Explainability

Audit Trail Requirements

Every agent decision must be traceable:

  • What action was taken
  • Why (reasoning/justification)
  • What constraints were checked
  • What information was considered
  • Who approved (if applicable)
  • What the outcome was

Explainability Patterns

Decision explanation:

Agent decided to: POST /api/order (create_order)
Reasoning: Inventory >50 units, price_trend positive, budget_remaining $5000
Constraints checked:
  ✓ Cost limit: $150 < $1000
  ✓ Approval not required (cost < threshold)
  ✓ Time window valid (market hours)
Confidence: 0.87
Alternative considered: wait_for_price_dip (confidence: 0.72, rejected)

Failure explanation:

Action blocked: DELETE /api/user/123
Reason: Policy violation - requires human approval for user deletion
Escalated to: support-team@company.com (created ticket #12345)

Part 4: Human Escalation

Escalation Triggers

  • Cost or risk exceeds thresholds
  • Agent confidence below minimum
  • Policy violation detected
  • Anomalous behavior pattern
  • Explicit human request
  • Resource constraint

Escalation Workflow

[Agent detects constraint violation or uncertainty]
       ↓
[Create escalation ticket with full context]
       ↓
[Route to appropriate human (SOP-based)]
       ↓
[Human reviews decision + reasoning]
       ↓
[Human approves, rejects, or modifies]
       ↓
[Agent receives decision + feedback]
       ↓
[Log outcome for continuous learning]

Part 5: Continuous Evaluation

Quality Metrics

  • Task success rate: Percentage of completed tasks
  • User satisfaction: Post-task feedback (1-5 scale)
  • Constraint adherence: Percent of decisions that meet policy
  • Cost efficiency: Cost per successful task
  • Speed: Average time to completion

Feedback Loops

1. Collect feedback on agent decisions (real user outcomes)
2. Compare actual vs. predicted quality
3. Identify patterns in failures
4. Update agent constraints/training based on learnings
5. Monitor for improvements
6. Adjust thresholds if needed

Performance Reviews

Quarterly reviews should assess:

  • Overall task completion trend
  • Cost-per-task trajectory
  • User satisfaction changes
  • Constraint violation frequency
  • Drift from original design
  • Recommended adjustments

Conclusion

Agent oversight is not optional—it's the foundation of trustworthy AI in production. By combining monitoring, constraints, audit trails, escalation, and continuous evaluation, you ensure agents operate effectively, safely, and with full transparency.

Key Takeaway: Trust, but verify. Monitor everything that matters, constrain what's risky, explain every decision, and continuously learn from outcomes.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

79.41%
按下载量换算2,179

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills