pi-cohort 3.0.0 → 3.0.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 +7 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.0.1] - 2026-07-04
|
|
4
|
+
|
|
5
|
+
Tagged releases now get GitHub Release notes automatically, sourced from the CHANGELOG rather than an LLM or external API.
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- **`release.yml` posts release notes.** A new `release-notes` job (`needs: publish`, `contents: write`) extracts the CHANGELOG section matching the pushed tag with `awk` and publishes it as the GitHub Release body via `gh release create` (falling back to `gh release edit`). No LLM or API key; only `github.token`.
|
|
9
|
+
|
|
3
10
|
## [3.0.0] - 2026-07-02
|
|
4
11
|
|
|
5
12
|
Completes the `pi-subagents` -> `pi-cohort` rename by rebranding the last user-facing identifiers that still carried the old name.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-cohort",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Delegate Pi work to focused child agents: code review, scouting, implementation, parallel audits, saved chains, and background jobs.",
|
|
5
5
|
"author": "Jacek Juraszek",
|
|
6
6
|
"license": "MIT",
|
|
@@ -34,10 +34,11 @@
|
|
|
34
34
|
"CHANGELOG.md"
|
|
35
35
|
],
|
|
36
36
|
"scripts": {
|
|
37
|
+
"check:agents-core": "node scripts/check-agents-core.mjs",
|
|
37
38
|
"test": "npm run test:unit",
|
|
38
39
|
"test:unit": "node --experimental-strip-types --test test/unit/*.test.ts",
|
|
39
40
|
"test:integration": "node --experimental-transform-types --import ./test/support/register-loader.mjs --test test/integration/*.test.ts",
|
|
40
|
-
"test:all": "npm run test:unit && npm run test:integration"
|
|
41
|
+
"test:all": "npm run check:agents-core && npm run test:unit && npm run test:integration"
|
|
41
42
|
},
|
|
42
43
|
"pi": {
|
|
43
44
|
"extensions": [
|