pi-goal-list-loop-audit 0.34.8 → 0.34.10
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/README.md +34 -29
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,6 +25,7 @@ Most pi goal extensions — `pi-goal`, `pi-goal-x`, `pi-loop-mode`, `ralphi`, `t
|
|
|
25
25
|
Install:
|
|
26
26
|
```bash
|
|
27
27
|
pi install npm:pi-goal-list-loop-audit
|
|
28
|
+
pi install npm:@juicesharp/rpiv-ask-user-question # effectively required — see Recommended companions
|
|
28
29
|
```
|
|
29
30
|
|
|
30
31
|
Five top-level commands — `/goal`, `/list`, `/loop`, `/glla`, `/review`:
|
|
@@ -138,6 +139,39 @@ dry, not "done"), `max=` iterations, or the arbitrary bounds `time=<hours>` /
|
|
|
138
139
|
`propose_loop_refine` to sharpen the target or swap the measure — you confirm,
|
|
139
140
|
the orchestrator test-runs and re-baselines, and both eras stay in history.
|
|
140
141
|
|
|
142
|
+
## Recommended companions
|
|
143
|
+
|
|
144
|
+
glla is the goal plane — it drives, verifies, and notifies. It does not
|
|
145
|
+
try to be the whole rig. Four plugins round it out. The first is
|
|
146
|
+
**effectively required** — glla's drafting interviews, DECIDE findings,
|
|
147
|
+
and confirm dialogs are built around structured questions (it degrades
|
|
148
|
+
to plain-text prompts without it, but that is the fallback path, not the
|
|
149
|
+
product). The other three are optional; glla works without them:
|
|
150
|
+
|
|
151
|
+
- **`@juicesharp/rpiv-ask-user-question`** — **install this one.**
|
|
152
|
+
Structured questions with multi-select and markdown previews: the
|
|
153
|
+
/goal drafting interview, DECIDE findings, and every confirm dialog
|
|
154
|
+
render through it. Without it you get prose fallbacks — functional,
|
|
155
|
+
but not the intended UX.
|
|
156
|
+
- **`@tintinweb/pi-subagents`** — the `Agent` tool: parallel Explore /
|
|
157
|
+
Plan / general-purpose subagents. glla's prompts teach fan-out with ROI
|
|
158
|
+
(parallelize real work, never ceremony spawning) and brief discipline,
|
|
159
|
+
and big audit collects genuinely assume this exists. glla's subagent
|
|
160
|
+
guarantees (the main session owns the goal; workers can't clobber it)
|
|
161
|
+
are plugin-agnostic, but this is the provider we test against.
|
|
162
|
+
- **`@juicesharp/rpiv-advisor`** — a second opinion the executor model
|
|
163
|
+
can request mid-flight: the whole conversation branch is forwarded to a
|
|
164
|
+
stronger reviewer model, which answers with a plan, a correction, or a
|
|
165
|
+
stop signal. Drive the session with a cheap/fast model and buy strong
|
|
166
|
+
judgment per call. Role clarity: the advisor is *advisory*, never
|
|
167
|
+
verification — glla's isolated auditor remains the only completion
|
|
168
|
+
gate.
|
|
169
|
+
- **`@pi-unipi/notify`** — push beyond the desktop: Telegram, Gotify,
|
|
170
|
+
ntfy, with per-event routing. glla's built-in pushes cover the local
|
|
171
|
+
desktop case and fire only where there is something to DO; add this
|
|
172
|
+
for away-from-desk alerts — route it to critical events only, or every
|
|
173
|
+
glla pause/verdict pings twice.
|
|
174
|
+
|
|
141
175
|
## Which loop? (the decision rule)
|
|
142
176
|
|
|
143
177
|
**`/goal`** — one thing, judged *semantically*. Research, features, docs,
|
|
@@ -312,35 +346,6 @@ stuck backoff caps at 5 minutes then pauses, measure commands get a 10m
|
|
|
312
346
|
hard timeout, and the auditor aborts after 10m with zero session activity
|
|
313
347
|
(infrastructure error, never a verdict).
|
|
314
348
|
|
|
315
|
-
## Recommended companions
|
|
316
|
-
|
|
317
|
-
glla is the goal plane — it drives, verifies, and notifies. It does not
|
|
318
|
-
try to be the whole rig. Four plugins round it out (all optional; glla
|
|
319
|
-
works without any of them):
|
|
320
|
-
|
|
321
|
-
- **`@tintinweb/pi-subagents`** — the `Agent` tool: parallel Explore /
|
|
322
|
-
Plan / general-purpose subagents. glla's prompts teach fan-out with ROI
|
|
323
|
-
(parallelize real work, never ceremony spawning) and brief discipline,
|
|
324
|
-
and big audit collects genuinely assume this exists. glla's subagent
|
|
325
|
-
guarantees (the main session owns the goal; workers can't clobber it)
|
|
326
|
-
are plugin-agnostic, but this is the provider we test against.
|
|
327
|
-
- **`@juicesharp/rpiv-advisor`** — a second opinion the executor model
|
|
328
|
-
can request mid-flight: the whole conversation branch is forwarded to a
|
|
329
|
-
stronger reviewer model, which answers with a plan, a correction, or a
|
|
330
|
-
stop signal. Drive the session with a cheap/fast model and buy strong
|
|
331
|
-
judgment per call. Role clarity: the advisor is *advisory*, never
|
|
332
|
-
verification — glla's isolated auditor remains the only completion
|
|
333
|
-
gate.
|
|
334
|
-
- **`@juicesharp/rpiv-ask-user-question`** — structured questions with
|
|
335
|
-
multi-select and markdown previews. glla's drafting interviews and
|
|
336
|
-
DECIDE findings render through it when installed (plain prompts
|
|
337
|
-
otherwise).
|
|
338
|
-
- **`@pi-unipi/notify`** — push beyond the desktop: Telegram, Gotify,
|
|
339
|
-
ntfy, with per-event routing. glla's built-in pushes cover the local
|
|
340
|
-
desktop case and fire only where there is something to DO; add this
|
|
341
|
-
for away-from-desk alerts — route it to critical events only, or every
|
|
342
|
-
glla pause/verdict pings twice.
|
|
343
|
-
|
|
344
349
|
## Compatibility (what goes well, what conflicts)
|
|
345
350
|
|
|
346
351
|
**The Two-Driver Rule**: any plugin that drives agent turns on `agent_end`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-goal-list-loop-audit",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.10",
|
|
4
4
|
"description": "Mission control for autonomous pi: interview-drafted goals, an audited task queue, and forever-loops (metric, spec, project-audit) that run for hours. An isolated extension-less auditor re-verifies every completion with raw evidence; confirmed drafts, decision pauses and consent gates keep you in charge.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "dracon",
|