pi-cohort 3.0.1 → 4.0.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 +16 -0
- package/README.md +85 -1154
- package/agents/reviewer.md +1 -1
- package/package.json +7 -2
- package/src/extension/schemas.ts +2 -2
- package/src/runs/foreground/chain-clarify.ts +24 -8
- package/src/runs/foreground/subagent-executor.ts +9 -11
- package/src/runs/shared/single-output.ts +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.0.0] - 2026-07-16
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- **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`.
|
|
7
|
+
|
|
8
|
+
## [3.0.2] - 2026-07-05
|
|
9
|
+
|
|
10
|
+
Branding, funding, and gallery preview. No behavior change.
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- **Logo + pi.dev gallery preview.** Repo-root `pi-cohort.png` (640x640), shown in the README and wired as `pi.image` for the pi.dev catalog.
|
|
14
|
+
- **Buy Me a Coffee funding.** `funding` in `package.json`, `.github/FUNDING.yml`, and a README badge.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- README polish; dropped a stale "in this fork" self-reference.
|
|
18
|
+
|
|
3
19
|
## [3.0.1] - 2026-07-04
|
|
4
20
|
|
|
5
21
|
Tagged releases now get GitHub Release notes automatically, sourced from the CHANGELOG rather than an LLM or external API.
|