@ouro.bot/cli 0.1.0-alpha.98 → 0.1.0-alpha.99

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/changelog.json CHANGED
@@ -1,6 +1,13 @@
1
1
  {
2
2
  "_note": "This changelog is maintained as part of the PR/version-bump workflow. Agent-curated, not auto-generated. Agents read this file directly via read_file to understand what changed between versions.",
3
3
  "versions": [
4
+ {
5
+ "version": "0.1.0-alpha.99",
6
+ "changes": [
7
+ "Auto-healed session-history invariant repairs and orphaned tool-result cleanup now log at info instead of warn, so routine self-repair no longer leaks noisy warning lines into the live CLI.",
8
+ "Added regression coverage for save/load repair paths so healed session-history cleanup stays below warning level while real failures still surface as warnings."
9
+ ]
10
+ },
4
11
  {
5
12
  "version": "0.1.0-alpha.98",
6
13
  "changes": [
@@ -219,7 +219,7 @@ function repairSessionMessages(messages) {
219
219
  result.push(msg);
220
220
  }
221
221
  (0, runtime_1.emitNervesEvent)({
222
- level: "warn",
222
+ level: "info",
223
223
  event: "mind.session_invariant_repair",
224
224
  component: "mind",
225
225
  message: "repaired session invariant violations",
@@ -246,7 +246,7 @@ function stripOrphanedToolResults(messages) {
246
246
  });
247
247
  if (removed > 0) {
248
248
  (0, runtime_1.emitNervesEvent)({
249
- level: "warn",
249
+ level: "info",
250
250
  event: "mind.session_orphan_tool_result_repair",
251
251
  component: "mind",
252
252
  message: "removed orphaned tool results from session history",
@@ -259,7 +259,7 @@ function saveSession(filePath, messages, lastUsage, state) {
259
259
  const violations = validateSessionMessages(messages);
260
260
  if (violations.length > 0) {
261
261
  (0, runtime_1.emitNervesEvent)({
262
- level: "warn",
262
+ level: "info",
263
263
  event: "mind.session_invariant_violation",
264
264
  component: "mind",
265
265
  message: "session invariant violated on save",
@@ -290,7 +290,7 @@ function loadSession(filePath) {
290
290
  const violations = validateSessionMessages(messages);
291
291
  if (violations.length > 0) {
292
292
  (0, runtime_1.emitNervesEvent)({
293
- level: "warn",
293
+ level: "info",
294
294
  event: "mind.session_invariant_violation",
295
295
  component: "mind",
296
296
  message: "session invariant violated on load",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.98",
3
+ "version": "0.1.0-alpha.99",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",