pi-goal-list-loop-audit 0.34.7 → 0.34.9
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 +37 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -312,6 +312,39 @@ stuck backoff caps at 5 minutes then pauses, measure commands get a 10m
|
|
|
312
312
|
hard timeout, and the auditor aborts after 10m with zero session activity
|
|
313
313
|
(infrastructure error, never a verdict).
|
|
314
314
|
|
|
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. The first is
|
|
319
|
+
**effectively required** — glla's drafting interviews, DECIDE findings,
|
|
320
|
+
and confirm dialogs are built around structured questions (it degrades
|
|
321
|
+
to plain-text prompts without it, but that is the fallback path, not the
|
|
322
|
+
product). The other three are optional; glla works without them:
|
|
323
|
+
|
|
324
|
+
- **`@juicesharp/rpiv-ask-user-question`** — **install this one.**
|
|
325
|
+
Structured questions with multi-select and markdown previews: the
|
|
326
|
+
/goal drafting interview, DECIDE findings, and every confirm dialog
|
|
327
|
+
render through it. Without it you get prose fallbacks — functional,
|
|
328
|
+
but not the intended UX.
|
|
329
|
+
- **`@tintinweb/pi-subagents`** — the `Agent` tool: parallel Explore /
|
|
330
|
+
Plan / general-purpose subagents. glla's prompts teach fan-out with ROI
|
|
331
|
+
(parallelize real work, never ceremony spawning) and brief discipline,
|
|
332
|
+
and big audit collects genuinely assume this exists. glla's subagent
|
|
333
|
+
guarantees (the main session owns the goal; workers can't clobber it)
|
|
334
|
+
are plugin-agnostic, but this is the provider we test against.
|
|
335
|
+
- **`@juicesharp/rpiv-advisor`** — a second opinion the executor model
|
|
336
|
+
can request mid-flight: the whole conversation branch is forwarded to a
|
|
337
|
+
stronger reviewer model, which answers with a plan, a correction, or a
|
|
338
|
+
stop signal. Drive the session with a cheap/fast model and buy strong
|
|
339
|
+
judgment per call. Role clarity: the advisor is *advisory*, never
|
|
340
|
+
verification — glla's isolated auditor remains the only completion
|
|
341
|
+
gate.
|
|
342
|
+
- **`@pi-unipi/notify`** — push beyond the desktop: Telegram, Gotify,
|
|
343
|
+
ntfy, with per-event routing. glla's built-in pushes cover the local
|
|
344
|
+
desktop case and fire only where there is something to DO; add this
|
|
345
|
+
for away-from-desk alerts — route it to critical events only, or every
|
|
346
|
+
glla pause/verdict pings twice.
|
|
347
|
+
|
|
315
348
|
## Compatibility (what goes well, what conflicts)
|
|
316
349
|
|
|
317
350
|
**The Two-Driver Rule**: any plugin that drives agent turns on `agent_end`
|
|
@@ -325,12 +358,10 @@ contradictory turns. One driver at a time:
|
|
|
325
358
|
- **Installed-but-don't-run-simultaneously**: `@tmustier/pi-ralph-wiggum` —
|
|
326
359
|
fine to keep, never run a ralph loop while a goal/list/loop is active.
|
|
327
360
|
|
|
328
|
-
**Goes well with it**:
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
standalone search skills like `mmx-cli`/`pi-search-skill` are optional
|
|
333
|
-
conveniences for bulk queries, not requirements).
|
|
361
|
+
**Goes well with it**: see **Recommended companions** above. `pi-chrome` too
|
|
362
|
+
(the research/search path for goals — logged-in browsing with no extra
|
|
363
|
+
services; standalone search skills like `mmx-cli`/`pi-search-skill` are
|
|
364
|
+
optional conveniences for bulk queries, not requirements).
|
|
334
365
|
|
|
335
366
|
**Overlaps — pick one**: `@tintinweb/pi-tasks` is a second task list next to
|
|
336
367
|
`/list`, and in practice the glla list *is* the task list (queue, statuses,
|
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.9",
|
|
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",
|