@inerrata-corporation/errata 2.0.2-dev.1179 → 2.0.2-dev.1182

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 +6 -5
  2. package/package.json +1 -1
package/errata.mjs CHANGED
@@ -56953,7 +56953,7 @@ function createWatchBreaker(deps) {
56953
56953
  }
56954
56954
 
56955
56955
  // src/engine.ts
56956
- var DAEMON_VERSION = true ? "2.0.2-dev.1179" : "2.0.0-alpha.0";
56956
+ var DAEMON_VERSION = true ? "2.0.2-dev.1182" : "2.0.0-alpha.0";
56957
56957
  var IGNORED_PATH = /[\\/](?:\.git|node_modules|\.errata|\.claude|\.codex|\.cursor|\.turbo|\.next|dist|coverage|test-results|playwright-report|__pycache__)(?:[\\/]|$)/;
56958
56958
  var IGNORED_NOISE = /castalia\.db|eventlog\.sqlite|turn-cursors/;
56959
56959
  var GIT_OP_MUTE_MS = 4e3;
@@ -58858,16 +58858,17 @@ function createWorkspaceEngine(opts) {
58858
58858
  if (e.merged > 0) {
58859
58859
  console.log(`[errata] dedup: merged ${e.merged} paraphrased problem(s) by embedding across ${e.clusters} cluster(s)`);
58860
58860
  }
58861
- const rg = bindResolvedRegressions(store, { ts: Date.now() });
58862
- if (rg.bound > 0) {
58863
- console.warn(`[errata] REGRESSION: bound ${rg.bound} open problem(s) to resolved predecessors${rg.full ? " (first full sweep)" : ""}`);
58864
- }
58865
58861
  const cb = bindCanonicalNeighbors(store, { ts: Date.now() });
58866
58862
  if (cb.bound > 0) {
58867
58863
  console.log(`[errata] canonical-bind: +${cb.bound} machine-proposed link(s) across ${cb.scanned} problem(s)`);
58868
58864
  }
58869
58865
  refreshContextNow();
58870
58866
  }
58867
+ const rg = bindResolvedRegressions(store, { ts: Date.now() });
58868
+ if (rg.bound > 0) {
58869
+ console.warn(`[errata] REGRESSION: bound ${rg.bound} open problem(s) to resolved predecessors${rg.full ? " (first full sweep)" : ""}`);
58870
+ refreshContextNow();
58871
+ }
58871
58872
  return { embedded: sem.embedded };
58872
58873
  } catch (err2) {
58873
58874
  console.warn("[errata] settled embed failed:", err2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inerrata-corporation/errata",
3
- "version": "2.0.2-dev.1179",
3
+ "version": "2.0.2-dev.1182",
4
4
  "description": "errata - local-first observation engine for AI coding agents",
5
5
  "type": "module",
6
6
  "bin": {