pi-goal-list-loop-audit 0.23.3 → 0.23.4
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.
|
@@ -23,7 +23,16 @@ export function contractItems(contract: string): string[] {
|
|
|
23
23
|
.filter((l) => l.length > 0)
|
|
24
24
|
// Boundary lines ("Out of scope: ...") constrain the auditor's judgment;
|
|
25
25
|
// they are not deliverables and have no evidence to quote (v0.22.6).
|
|
26
|
-
.filter((l) => !/^out of scope\b/i.test(l))
|
|
26
|
+
.filter((l) => !/^out of scope\b/i.test(l))
|
|
27
|
+
// Preamble lines are not checkable items (v0.23.4, darklord field bug:
|
|
28
|
+
// "Done when ALL of the following are true:" survived as an "item" —
|
|
29
|
+
// the prefix strip only fires when a colon directly follows "done
|
|
30
|
+
// when" — and the shield then blocked TWO genuine approvals forever,
|
|
31
|
+
// because no evidence can reference a preamble). Two mechanical
|
|
32
|
+
// predicates: a line still ending in a colon introduces a list, and a
|
|
33
|
+
// "(done when) (all of) the following ..." line IS the introducer.
|
|
34
|
+
.filter((l) => !l.endsWith(":"))
|
|
35
|
+
.filter((l) => !/^(?:done when\s+)?(?:all of\s+)?the following\b/i.test(l));
|
|
27
36
|
}
|
|
28
37
|
|
|
29
38
|
export interface RegressionShieldResult {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-goal-list-loop-audit",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.4",
|
|
4
4
|
"description": "Goal. Loop. Audit. Done. — a pi-coding-agent extension that supervises long-running work, with isolated auditor on each completion. Beat bamboozling by design: the auditor runs in a fresh session with no extensions, no skills, no editor — only the read tools needed to verify your goal.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "dracon",
|