pi-cohort 3.0.2 → 4.1.0
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/README.md +79 -1156
- package/agents/reviewer.md +1 -1
- package/package.json +1 -1
- package/src/extension/fanout-child.ts +3 -1
- package/src/extension/index.ts +3 -1
- package/src/extension/schemas.ts +2 -2
- package/src/runs/background/async-execution.ts +6 -0
- package/src/runs/background/subagent-runner.ts +6 -0
- package/src/runs/foreground/chain-clarify.ts +24 -8
- package/src/runs/foreground/chain-execution.ts +6 -0
- package/src/runs/foreground/execution.ts +1 -0
- package/src/runs/foreground/subagent-executor.ts +22 -11
- package/src/runs/shared/forward-flags.ts +82 -0
- package/src/runs/shared/pi-args.ts +6 -0
- package/src/runs/shared/single-output.ts +9 -0
- package/src/shared/types.ts +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.1.0] - 2026-07-19
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **Forward parent pi CLI flags into children.** Extension flags the parent `pi` was launched with (e.g. pi-lens's `--no-autofix`) are now auto-forwarded into spawned children - foreground, sync-background, and detached-async, at any nesting depth - derived universally from the parent's argv. Pi core flags are never forwarded. Opt out with `forwardParentFlags: false`. ([#2](https://github.com/jjuraszek/pi-cohort/issues/2))
|
|
7
|
+
|
|
8
|
+
## [4.0.0] - 2026-07-16
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- **BREAKING:** Foreground and async top-level single/parallel runs no longer inherit agent output defaults, and top-level parallel runs no longer inherit `defaultProgress`; output and parallel progress are opt-in per invocation. Chains retain their three-state inheritance semantics, and omitted top-level parallel-task `reads` still inherit `defaultReads`. Migrate callers with `output: true` (configured filename), `output: "path"` (explicit path), or `progress: true`.
|
|
12
|
+
|
|
3
13
|
## [3.0.2] - 2026-07-05
|
|
4
14
|
|
|
5
15
|
Branding, funding, and gallery preview. No behavior change.
|