pi-goal-list-loop-audit 0.31.6 → 0.31.7
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/extensions/loops/goal.ts +15 -4
- package/package.json +1 -1
package/extensions/loops/goal.ts
CHANGED
|
@@ -4440,10 +4440,21 @@ export async function handleSettingChoice(id: string, ctx: ExtensionContext): Pr
|
|
|
4440
4440
|
// v0.31.4: thinking is chosen WITH the model (user: "we are setting
|
|
4441
4441
|
// the thinking when we select the model now or we should") — there is
|
|
4442
4442
|
// no standalone thinking row to forget about. Esc keeps the level.
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
|
|
4446
|
-
|
|
4443
|
+
// v0.31.7: the select must be UNMISTAKABLY the auditor's — the user
|
|
4444
|
+
// Esc'd through it because it read like pi's own (general) thinking
|
|
4445
|
+
// dialog, and nothing was ever saved.
|
|
4446
|
+
const curThinking = loadSettings(ctx.cwd).auditorThinkingLevel;
|
|
4447
|
+
const t = await ctx.ui.select(
|
|
4448
|
+
"Auditor thinking — ISOLATED auditor session ONLY (your session model's thinking is untouched)",
|
|
4449
|
+
[
|
|
4450
|
+
`high — the default; the gate must not ride the session's coding dial${curThinking === undefined || curThinking === "high" ? " (current)" : ""}`,
|
|
4451
|
+
`medium${curThinking === "medium" ? " (current)" : ""}`,
|
|
4452
|
+
`low${curThinking === "low" ? " (current)" : ""}`,
|
|
4453
|
+
`minimal${curThinking === "minimal" ? " (current)" : ""}`,
|
|
4454
|
+
`xhigh${curThinking === "xhigh" ? " (current)" : ""}`,
|
|
4455
|
+
`off${curThinking === "off" ? " (current)" : ""}`,
|
|
4456
|
+
],
|
|
4457
|
+
);
|
|
4447
4458
|
if (t) saveSettings("global", ctx.cwd, { auditorThinkingLevel: t.split(" ")[0] as Settings["auditorThinkingLevel"] });
|
|
4448
4459
|
ctx.ui.notify(`Auditor model: ${pick.kind === "session" ? "session model (override cleared)" : pick.ref}${t ? ` · thinking ${t.split(" ")[0]}` : ""}`, "info");
|
|
4449
4460
|
return;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-goal-list-loop-audit",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.7",
|
|
4
4
|
"description": "Goal. Loop. Audit. Done. \u2014 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 \u2014 only the read tools needed to verify your goal.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "dracon",
|