pi-goal-list-loop-audit 0.17.0 → 0.17.1
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.
|
@@ -128,7 +128,7 @@ function goalLines(g: Goal, state: State, audit: AuditDisplayProgress | null | u
|
|
|
128
128
|
const next = nextPending(g);
|
|
129
129
|
if (next) lines.push(`├─ next: ${truncate(next, 56)}`);
|
|
130
130
|
const queue = state.list?.length ?? 0;
|
|
131
|
-
lines.push(`└─ ${queue > 0 ? `list ${queue} · ` : ""}/goal status · /
|
|
131
|
+
lines.push(`└─ ${queue > 0 ? `list ${queue} · ` : ""}/goal status · /glla`);
|
|
132
132
|
return lines;
|
|
133
133
|
}
|
|
134
134
|
|
package/extensions/loops/goal.ts
CHANGED
|
@@ -834,7 +834,7 @@ async function cmdList(args: string, ctx: ExtensionContext): Promise<void> {
|
|
|
834
834
|
/**
|
|
835
835
|
* Config-gated push notification: if settings.notifyCmd is set, shell out
|
|
836
836
|
* with the message as $1. Fire-and-forget — a broken notify command never
|
|
837
|
-
* blocks the loop. /
|
|
837
|
+
* blocks the loop. /glla notify='<cmd>' to configure.
|
|
838
838
|
*/
|
|
839
839
|
function notifyExternal(ctx: ExtensionContext, message: string): void {
|
|
840
840
|
try {
|
|
@@ -1307,13 +1307,13 @@ function registerAgentTools(pi: any, ctx: ExtensionContext): void {
|
|
|
1307
1307
|
status: "active",
|
|
1308
1308
|
auditHistory: history,
|
|
1309
1309
|
pauseReason: `auditor infrastructure: ${result.error}`,
|
|
1310
|
-
pauseSuggestedAction: "Fix the auditor model (/
|
|
1310
|
+
pauseSuggestedAction: "Fix the auditor model (/glla model=provider/id) and call complete_goal again — your work was NOT judged",
|
|
1311
1311
|
}, ctx);
|
|
1312
1312
|
scheduleContinuation(ctx, true);
|
|
1313
1313
|
return {
|
|
1314
1314
|
content: [{
|
|
1315
1315
|
type: "text",
|
|
1316
|
-
text: `The auditor could not run (infrastructure, NOT a verdict): ${result.error}\nYour completion claim was not evaluated. Fix the auditor model with /
|
|
1316
|
+
text: `The auditor could not run (infrastructure, NOT a verdict): ${result.error}\nYour completion claim was not evaluated. Fix the auditor model with /glla model=provider/id and call complete_goal again — do not change your deliverable for this.`,
|
|
1317
1317
|
}],
|
|
1318
1318
|
details: {},
|
|
1319
1319
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-goal-list-loop-audit",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.1",
|
|
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",
|