跳转到内容

工具循环检测

OpenClaw 可以防止智能体陷入重复的工具调用模式。 该防护功能默认禁用

仅在必要时启用,因为在严格设置下它可能会阻止合法的重复调用。

  • 检测没有进展的重复序列。
  • 检测高频无结果循环(同一工具、相同输入、重复错误)。
  • 检测已知轮询工具的特定重复调用模式。

全局默认值:

{
tools: {
loopDetection: {
enabled: false,
historySize: 30,
warningThreshold: 10,
criticalThreshold: 20,
globalCircuitBreakerThreshold: 30,
detectors: {
genericRepeat: true,
knownPollNoProgress: true,
pingPong: true,
},
},
},
}

每个智能体的覆盖设置(可选):

{
agents: {
list: [
{
id: "safe-runner",
tools: {
loopDetection: {
enabled: true,
warningThreshold: 8,
criticalThreshold: 16,
},
},
},
],
},
}
  • enabled: 主开关。false 表示不执行循环检测。
  • historySize: 保留用于分析的最近工具调用次数。
  • warningThreshold: 将模式归类为仅警告之前的阈值。
  • criticalThreshold: 阻止重复循环模式的阈值。
  • globalCircuitBreakerThreshold: 全局无进展中断阈值。
  • detectors.genericRepeat: 检测重复的“同一工具 + 相同参数”模式。
  • detectors.knownPollNoProgress: 检测已知的无状态变化类轮询模式。
  • detectors.pingPong: 检测交替的乒乓模式。
  • enabled: true 开始,保持默认设置不变。
  • 保持阈值顺序为 warningThreshold < criticalThreshold < globalCircuitBreakerThreshold
  • 如果发生误报:
    • 提高 warningThreshold 和/或 criticalThreshold
    • (可选)提高 globalCircuitBreakerThreshold
    • 仅禁用导致问题的检测器
    • 降低 historySize 以减少严格的历史上下文

当检测到循环时,OpenClaw 会报告循环事件,并根据严重程度阻止或抑制下一个工具周期。 这可以保护用户免受失控的令牌消耗和锁定,同时保留正常的工具访问权限。

  • 首先优先考虑警告和临时抑制。
  • 仅在重复证据累积时才升级处理。
  • tools.loopDetection 与智能体级别的覆盖设置合并。
  • Per-agent config fully overrides or extends global values.
  • If no config exists, guardrails stay off.