Files
nexus/wiki/concepts/Recurrence-Count.md

968 B
Raw Blame History

title, type, tags, last_updated
title type tags last_updated
Recurrence-Count concept
self-improving
memory
tracking
systematic-error
2026-04-15

Definition

经验记录的重复次数计数器,记录同一 Pattern-Key 出现的次数,用于区分偶发一次性错误与需系统性解决的重复问题。

Core Mechanism

  • 初始值1新记录
  • 递增:同一 Pattern-Key 再次出现时 +1
  • 决策阈值Recurrence-Count ≥ 2 说明这是重复问题,不是偶发错误

Key Insight

  • Recurrence-Count = 1一次性错误记录后不再出现关注 Suggested Action 即可
  • Recurrence-Count ≥ 2系统性重复需要检查上一次是否真正解决了根本原因
  • 高 Recurrence-Count9次如 cron.daily-self-review说明这是持续活跃的优化领域每次复盘都在积累

Connections