@inerrata-corporation/errata 2.0.2-dev.204 → 2.0.2-dev.206
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/errata.mjs +9 -7
- package/package.json +1 -1
package/errata.mjs
CHANGED
|
@@ -25270,15 +25270,17 @@ function triageBullet(ref) {
|
|
|
25270
25270
|
}
|
|
25271
25271
|
function linkBullet(ref) {
|
|
25272
25272
|
return [
|
|
25273
|
-
|
|
25274
|
-
|
|
25275
|
-
|
|
25273
|
+
// Lead-in states the trigger without the old "resembles prior knowledge"
|
|
25274
|
+
// conditional (which gated the whole bullet on recognising a prior). Kept to ONE
|
|
25275
|
+
// line on purpose: Cycle 13 measured this instruction at 55% of the 9,000-char
|
|
25276
|
+
// passive-context budget, and every char here is paid for by evicting a prior the
|
|
25277
|
+
// agent could have cited — so unproven framing is a net loss, however good it reads.
|
|
25278
|
+
" \u2022 you flagged a problem \u2014 LINK it, ESPECIALLY when the finding feels novel to here:",
|
|
25276
25279
|
` \xB7 (instance:[${ref}],[another-prior],\u2026) \u2014 the priors this problem is an instance of.`,
|
|
25277
25280
|
" Aim for ~3 DIFFERENT relevant priors; one link is weak, three triangulate it.",
|
|
25278
25281
|
` \xB7 ${TAG_EXAMPLE.pattern()} \u2014 name the general shape it instantiates (e.g. (pattern: unbounded`,
|
|
25279
25282
|
" queue growth under backpressure)) \u2014 this works with NO code anchor, and two agents naming",
|
|
25280
|
-
" the same pattern converge on one node.
|
|
25281
|
-
" what lets a stranger hit it. Cite a shown Pattern by handle: (pattern:[handle]).",
|
|
25283
|
+
" the same pattern converge on one node. Cite a shown Pattern by handle: (pattern:[handle]).",
|
|
25282
25284
|
` \xB7 ${TAG_EXAMPLE.package()} \u2014 the PUBLIC PACKAGE the problem is about, even when this`,
|
|
25283
25285
|
" workspace doesn't depend on it (e.g. (package: chokidar), (package: pypi/requests)) \u2014 a",
|
|
25284
25286
|
" public-registry anchor lets the knowledge cross to the collective; internal names stay private.",
|
|
@@ -25385,7 +25387,7 @@ var init_agent_signals = __esm({
|
|
|
25385
25387
|
// contribution, so stating the general area reads as vague restatement — exactly
|
|
25386
25388
|
// when it matters most, because precise wording is what makes a problem
|
|
25387
25389
|
// unfindable to anyone who doesn't already share it.
|
|
25388
|
-
domain: "you flagged a problem that isn't about one specific file \u2014 name the AREA it's about.
|
|
25390
|
+
domain: "you flagged a problem that isn't about one specific file \u2014 name the AREA it's about. The sharper your wording, the LESS anyone else will search for it; an abstract problem with no area is an invisible island. Title Case",
|
|
25389
25391
|
link: "the problem you flagged is an instance of priors/abstractions you can name \u2014 (instance:[h1],[h2],\u2026) / (pattern: \u2026) / (aids:[h]); rendered whole via linkBullet"
|
|
25390
25392
|
};
|
|
25391
25393
|
}
|
|
@@ -52274,7 +52276,7 @@ function startLoopLagMonitor(thresholdMs = 1e3) {
|
|
|
52274
52276
|
}
|
|
52275
52277
|
|
|
52276
52278
|
// src/engine.ts
|
|
52277
|
-
var DAEMON_VERSION = true ? "2.0.2-dev.
|
|
52279
|
+
var DAEMON_VERSION = true ? "2.0.2-dev.206" : "2.0.0-alpha.0";
|
|
52278
52280
|
var IGNORED_PATH = /[\\/](?:\.git|node_modules|\.errata|\.claude|\.codex|\.cursor|\.turbo|\.next|dist|coverage|test-results|playwright-report|__pycache__)(?:[\\/]|$)/;
|
|
52279
52281
|
var IGNORED_NOISE = /castalia\.db|eventlog\.sqlite|turn-cursors/;
|
|
52280
52282
|
var GIT_OP_MUTE_MS = 4e3;
|