@hivelore/core 0.43.2 → 0.44.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1151,7 +1151,7 @@ function summarizeCaughtForYou(events, memories, usage, options = {}) {
1151
1151
  function renderCaughtForYou(summary) {
1152
1152
  if (summary.total_catches === 0 || summary.rows.length === 0) return null;
1153
1153
  const lines = [
1154
- `Caught for you: ${summary.total_catches} prevented repeat${summary.total_catches === 1 ? "" : "s"} this session.`
1154
+ `Caught for you: ${summary.total_catches} prevented repeat${summary.total_catches === 1 ? "" : "s"} ${summary.since ? "this session" : "in recorded history"}.`
1155
1155
  ];
1156
1156
  for (const row of summary.rows) {
1157
1157
  const gate = row.source === "anti-pattern" ? "Blocked" : "Caught";