pi-subagents 0.41.0 → 0.42.1
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 +28 -0
- package/README.md +54 -1600
- package/inspector-runner.mjs +11 -0
- package/package.json +3 -3
- package/skills/pi-subagents/SKILL.md +5 -3
- package/skills/pi-subagents/references/constraints-and-recipes.md +5 -6
- package/skills/pi-subagents/references/execution-controls.md +6 -5
- package/skills/pi-subagents/references/prompting-and-roles.md +5 -3
- package/src/extension/schemas.ts +4 -4
- package/src/extension/tool-description.ts +4 -4
- package/src/inspectors/herdr/actions.ts +2 -2
- package/src/missions/actions.ts +7 -5
- package/src/runs/background/async-execution.ts +12 -1
- package/src/runs/background/async-job-tracker.ts +17 -2
- package/src/runs/foreground/chain-clarify.ts +13 -16
- package/src/runs/foreground/execution.ts +19 -7
- package/src/runs/foreground/subagent-executor.ts +20 -9
- package/src/runs/shared/acceptance.ts +2 -2
- package/src/runs/shared/mcp-direct-tool-allowlist.ts +2 -0
- package/src/runs/shared/pi-args.ts +465 -116
- package/src/shared/artifacts.ts +125 -0
- package/src/shared/types.ts +1 -1
- package/src/slash/slash-commands.ts +3 -3
- package/src/tui/fleet.ts +1 -1
- package/src/tui/render.ts +78 -43
- package/src/types/pi-runtime-compat.d.ts +0 -6
- package/src/workflows/chat-progress.ts +2 -2
- package/src/workflows/scripted-workflow.ts +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.42.1] - 2026-08-06
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- Prevent Pi from crashing when subagent status widgets and overlays are shown in narrow or resized terminal layouts. Thanks to @alanvardy for the report in #858 and @meatcar for the fix.
|
|
9
|
+
- Keep async scripted workflows running without an implicit 30-minute timeout, while preserving the foreground default and explicit timeout controls.
|
|
10
|
+
- Limit `workflowScript` chat progress to the supported `auto`, `off`, and `live-card` projections.
|
|
11
|
+
|
|
12
|
+
## [0.42.0] - 2026-08-06
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- Split the README reference material into focused docs and keep the README as a concise quick-start guide.
|
|
16
|
+
- Verified scripted workflows can mix dynamic parallel and sequential phases with managed worktree isolation.
|
|
17
|
+
- Added native `@gotgenes/pi-permission-system` compatibility for child processes. Thanks to @jagaliano for #847.
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
- Accept `mission.summary` as a title alias for workflow launches, so child runs start normally.
|
|
21
|
+
- Keep async subagent widget spinners moving during quiet running periods without adding extra polling.
|
|
22
|
+
- Preserve workflow child output after grouped intercom delivery, so scripts can consume `runs.run(...).output`. Thanks to @kaushal9696 for #846.
|
|
23
|
+
- Match pi-mcp-adapter cache identities that include `protocolVersion`, so direct MCP tool selections resolve from current adapter caches. Thanks to @ProCleiton for #848.
|
|
24
|
+
- Reject commandless verified acceptance at the runtime launch boundary before a child starts. Use `checked` or provide `acceptance.verify`. Thanks to @simonasr for #849.
|
|
25
|
+
- Warn when project-scoped subagent artifacts can be included in an npm package. Thanks to @nicobailon for #840.
|
|
26
|
+
- Fail child launch setup when an installed permission-system manifest cannot be read or names a missing extension entry.
|
|
27
|
+
- Let the Fleet inspector use the full 85% terminal-height budget on tall terminals. Thanks to @xz-dev for #839.
|
|
28
|
+
- Launch Herdr inspector panes through a JavaScript bootstrap instead of asking Node to type-strip TypeScript installed under `node_modules`. Thanks to @williamleong for #837.
|
|
29
|
+
- Removed the Pi CLI devDependency from the default install and test against a local runtime shim, so repo audits no longer report the upstream dev-only Undici advisory while real Pi E2E remains optional. Thanks to @dmg-egg for #782.
|
|
30
|
+
- Stream immediate and periodic progress for blocking foreground subagent runs, so long reasoning intervals remain visibly active. Thanks to @walter-erquinigo for #833.
|
|
31
|
+
|
|
5
32
|
## [0.41.0] - 2026-08-05
|
|
6
33
|
|
|
7
34
|
### Added
|
|
@@ -29,6 +56,7 @@
|
|
|
29
56
|
|
|
30
57
|
### Changed
|
|
31
58
|
- Collapsed the inactive FleetView roster to one active-work summary line while preserving keyboard expansion and inspector state restoration. Thanks to @xz-dev for #826.
|
|
59
|
+
- Clarified packaged pi-subagents guidance for cross-repository delegation, authority boundaries, and evidence-only external gates.
|
|
32
60
|
- Clarified when direct single-child calls are appropriate versus coordinated `workflowScript` orchestration, including stable keys and durable child outputs.
|
|
33
61
|
- Documented the headless pi-guard compatibility path for child-specific explicit allow/deny policy. Thanks to @chama-chomo for #742.
|
|
34
62
|
- Replaced session-scoped one-shot schedule actions with the `schedule.*` API and project-local schedule records. Calendar recurrence and the schedule inspector remain deferred to the next slice.
|