pi-gauntlet 4.6.1 → 4.6.2
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/CHANGELOG.md +10 -0
- package/extensions/phase-tracker.ts +3 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v4.6.2 - 2026-08-07
|
|
4
|
+
|
|
5
|
+
Trim the always-shipped tool descriptions of the gauntlet-internal tools to
|
|
6
|
+
one-liners: `gauntlet_setting` -> "Resolve merged piGauntlet.* settings (repo
|
|
7
|
+
over preset); for skill use only.", `phase_tracker` -> phase arrow + "ad-hoc
|
|
8
|
+
calls do not arm gates. Not for ad-hoc use." Every call site is a skill body
|
|
9
|
+
already in context, so the cut prose was pure duplication (~120-200
|
|
10
|
+
tokens/request). Parameter schemas/descriptions and `plan_tracker` (whose long
|
|
11
|
+
description deters ambient TODO-list misuse) are untouched.
|
|
12
|
+
|
|
3
13
|
## v4.6.1 - 2026-08-04
|
|
4
14
|
|
|
5
15
|
Lazy-load the conformance disposition protocol (#5). The carried-open disposition
|
|
@@ -561,11 +561,7 @@ export default function (pi: ExtensionAPI) {
|
|
|
561
561
|
pi.registerTool({
|
|
562
562
|
name: "gauntlet_setting",
|
|
563
563
|
label: "Gauntlet Setting",
|
|
564
|
-
description:
|
|
565
|
-
"Gauntlet-internal, invoked by skills: resolve a merged piGauntlet.* setting " +
|
|
566
|
-
"(repo .pi/settings.json over the agent preset). Returns the resolved value as a " +
|
|
567
|
-
"JSON block in the result content - specCouncil yields the council-vs-worker verdict, " +
|
|
568
|
-
"closureReview yields the conformance-gate model/enforce/maxFixRounds. Not for ad-hoc use.",
|
|
564
|
+
description: "Resolve merged piGauntlet.* settings (repo over preset); for skill use only.",
|
|
569
565
|
parameters: GauntletSettingParams,
|
|
570
566
|
async execute(_toolCallId, params, _signal, _onUpdate, ctx) {
|
|
571
567
|
const { gauntlet, errors } = loadGauntletSettings(ctx.cwd);
|
|
@@ -584,10 +580,8 @@ export default function (pi: ExtensionAPI) {
|
|
|
584
580
|
name: "phase_tracker",
|
|
585
581
|
label: "Phase Tracker",
|
|
586
582
|
description:
|
|
587
|
-
"Track workflow phase progress (brainstorm → plan → implement → verify → ship)
|
|
588
|
-
"
|
|
589
|
-
"skip (mark phase skipped with reason), status (show all phases), reset (clear all phases), substep (set/clear a substep label on an in_progress phase). " +
|
|
590
|
-
"Drives gauntlet-flow enforcement entered via brainstorming; the closure gate, closure-model guard, and flow guards arm only when brainstorming started the flow. Ad-hoc start verify/start implement calls do not arm the gates. Not for ad-hoc use.",
|
|
583
|
+
"Track workflow phase progress (brainstorm → plan → implement → verify → ship); " +
|
|
584
|
+
"ad-hoc calls do not arm gates. Not for ad-hoc use.",
|
|
591
585
|
parameters: PhaseTrackerParams,
|
|
592
586
|
|
|
593
587
|
async execute(_toolCallId, params, _signal, _onUpdate, ctx) {
|
package/package.json
CHANGED