pi-goal-list-loop-audit 0.34.7 → 0.34.8
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 +33 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -312,6 +312,35 @@ 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 (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
|
+
|
|
315
344
|
## Compatibility (what goes well, what conflicts)
|
|
316
345
|
|
|
317
346
|
**The Two-Driver Rule**: any plugin that drives agent turns on `agent_end`
|
|
@@ -325,12 +354,10 @@ contradictory turns. One driver at a time:
|
|
|
325
354
|
- **Installed-but-don't-run-simultaneously**: `@tmustier/pi-ralph-wiggum` —
|
|
326
355
|
fine to keep, never run a ralph loop while a goal/list/loop is active.
|
|
327
356
|
|
|
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).
|
|
357
|
+
**Goes well with it**: see **Recommended companions** above. `pi-chrome` too
|
|
358
|
+
(the research/search path for goals — logged-in browsing with no extra
|
|
359
|
+
services; standalone search skills like `mmx-cli`/`pi-search-skill` are
|
|
360
|
+
optional conveniences for bulk queries, not requirements).
|
|
334
361
|
|
|
335
362
|
**Overlaps — pick one**: `@tintinweb/pi-tasks` is a second task list next to
|
|
336
363
|
`/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.8",
|
|
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",
|