blun-king-cli 9.1.211 → 9.1.213
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/blun.mjs +3 -2
- package/package.json +1 -1
package/blun.mjs
CHANGED
|
@@ -79266,7 +79266,8 @@ var init_error_memory$1 = __esmMin((() => {
|
|
|
79266
79266
|
if (!patterns || patterns.length === 0) return void 0;
|
|
79267
79267
|
try {
|
|
79268
79268
|
const { buildCompactErrorMemoryReminder, selectRelevantErrorMemoryPatterns } = createRequire(import.meta.url)("./bin/error-memory-performance-policy.cjs");
|
|
79269
|
-
const { recentUserText } = createRequire(import.meta.url)("./bin/mistake-relevance-policy.cjs");
|
|
79269
|
+
const { isLowInformationMistakeTurn, recentUserText } = createRequire(import.meta.url)("./bin/mistake-relevance-policy.cjs");
|
|
79270
|
+
if (isLowInformationMistakeTurn(this.agent.context.history)) return void 0;
|
|
79270
79271
|
return buildCompactErrorMemoryReminder(selectRelevantErrorMemoryPatterns(patterns, recentUserText(this.agent.context.history)));
|
|
79271
79272
|
} catch {}
|
|
79272
79273
|
return buildErrorMemoryReminder(patterns);
|
|
@@ -232793,7 +232794,7 @@ var init_mission_contract = __esmMin((() => {
|
|
|
232793
232794
|
"Treat this machine-readable contract as the source of truth.",
|
|
232794
232795
|
"Do not claim completion until every acceptance criterion has matching evidence.",
|
|
232795
232796
|
"If a criterion cannot be verified, report the gap instead of claiming success.",
|
|
232796
|
-
"If the same test or check first fails and later passes because of your fix, invoke
|
|
232797
|
+
"If the same test or check first fails and later passes because of your fix, invoke MistakeRecord after the green rerun and before mission_review.",
|
|
232797
232798
|
"Record the failure class, symptom, root cause, failed attempts, effective fix, affected files, and a concrete repetition guard. Runtime red-to-green evidence is mandatory.",
|
|
232798
232799
|
"For any mission that changes files, invoke mission_review after the relevant tests and before UpdateGoal complete.",
|
|
232799
232800
|
"If mission_review returns findings, fix every validated finding, rerun affected tests, and invoke mission_review again.",
|