@inerrata-corporation/errata 2.0.2-dev.332 → 2.0.2-dev.334

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.
Files changed (2) hide show
  1. package/errata.mjs +4 -4
  2. package/package.json +1 -1
package/errata.mjs CHANGED
@@ -21480,13 +21480,13 @@ function renderSnapshot(s) {
21480
21480
  }
21481
21481
  if (w.priors?.resolvedProblems.length) {
21482
21482
  lines.push(
21483
- "- **Already fixed here** \u2014 these are RESOLVED, not open work, so there is no `(fix:)` token. They are shown for the opposite reason: if one has come BACK, that is a contradiction of the solution below it, and the most valuable thing you can report. Say so with `[!recurred: \u2026]` naming the problem, and cite the solution that did not hold with `([id])`:"
21483
+ "- **Already fixed here** \u2014 RESOLVED, not open work, so there is no `(fix:)` token. They are shown for the opposite reason: if one has come BACK, that contradicts the fix below it, and saying so is the most valuable thing you can report here. Use `(failed:[id] \u2026)` on the SOLUTION \u2014 that is the token that refutes a prior. Do not cite it with `([id])`; a bare citation records that the prior HELPED, the opposite of what happened:"
21484
21484
  );
21485
21485
  for (const p of w.priors.resolvedProblems) {
21486
- lines.push(` - \u2713 ${p.description} \u2192 \`([${p.id}])\``);
21486
+ lines.push(` - \u2713 ${p.description}`);
21487
21487
  for (const s2 of w.priors.solutionsByProblem[p.id] ?? []) {
21488
21488
  lines.push(
21489
- ` - fixed by: ${s2.description} \u2014 if that fix did NOT hold, contradict it: \`([${s2.id}])\``
21489
+ ` - fixed by: ${s2.description} \u2014 if that fix did NOT hold, refute it: \`(failed:[${s2.id}] what came back)\``
21490
21490
  );
21491
21491
  }
21492
21492
  }
@@ -53035,7 +53035,7 @@ function startLoopLagMonitor(thresholdMs = 1e3) {
53035
53035
  }
53036
53036
 
53037
53037
  // src/engine.ts
53038
- var DAEMON_VERSION = true ? "2.0.2-dev.332" : "2.0.0-alpha.0";
53038
+ var DAEMON_VERSION = true ? "2.0.2-dev.334" : "2.0.0-alpha.0";
53039
53039
  var IGNORED_PATH = /[\\/](?:\.git|node_modules|\.errata|\.claude|\.codex|\.cursor|\.turbo|\.next|dist|coverage|test-results|playwright-report|__pycache__)(?:[\\/]|$)/;
53040
53040
  var IGNORED_NOISE = /castalia\.db|eventlog\.sqlite|turn-cursors/;
53041
53041
  var GIT_OP_MUTE_MS = 4e3;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inerrata-corporation/errata",
3
- "version": "2.0.2-dev.332",
3
+ "version": "2.0.2-dev.334",
4
4
  "description": "errata - local-first observation engine for AI coding agents",
5
5
  "type": "module",
6
6
  "bin": {