@ferris1225/pi-subagents 4.2.12 → 4.2.13

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +61 -0
  2. package/README.md +47 -13
  3. package/package.json +3 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,61 @@
1
+ # Changelog
2
+
3
+ Published versions of `@ferris1225/pi-subagents`. Unpublished numbers
4
+ (`4.2.3`, `4.2.6`, `4.2.9`–`4.2.11`) never shipped on npm; their changes
5
+ landed in the next published release.
6
+
7
+ ## 4.2.13
8
+
9
+ - README: table of contents, a What's new lead-in, and a pointer at this
10
+ changelog. Release notes describe the live `main` → npm path.
11
+
12
+ ## 4.2.12
13
+
14
+ - Executor confirms each named defect on current code before editing.
15
+ - Footer settled counts stay on the line only while a sibling is live, and
16
+ widget truncation no longer lies about what was cut.
17
+ - Merging to `main` publishes an unpublished `package.json` version to npm
18
+ and opens a matching GitHub Release.
19
+
20
+ ## 4.2.8
21
+
22
+ - Always-visible footer roll-up: `subagents 2 running · 1 repo lane · 3 done`.
23
+ - `wait: true` streams progress onto the tool card and reports child token
24
+ spend as the call's own usage.
25
+ - Completions are held while context compaction rewrites history, then
26
+ released on success, failure, or abort.
27
+ - A delivered result no longer enters the parent context a second time.
28
+ - Isolated worktrees link `node_modules`.
29
+ - Widget worktree badge is spelled out (`worktree:a91f3c`).
30
+
31
+ ## 4.2.7
32
+
33
+ - Executor routing is a single self-contained deliverable; `thinking` can
34
+ be set per dispatch.
35
+ - Child prompt temp directories are removed recursively.
36
+
37
+ ## 4.2.5
38
+
39
+ - The threads manifest lives per project, beside that project's artifacts.
40
+
41
+ ## 4.2.4
42
+
43
+ - Explorer findings are one-line retrieval leads.
44
+ - Worktree recovery retries cleanup when the patch was already applied.
45
+
46
+ ## 4.2.2
47
+
48
+ - A single artifact the main agent must fully absorb stays an inline read;
49
+ re-reads are bounded.
50
+
51
+ ## 4.2.1
52
+
53
+ - Upgraded configs prune retired built-in roles so the setup wizard never
54
+ mixes old and new names.
55
+
56
+ ## 4.2.0
57
+
58
+ - Built-in team is `explorer` and `executor`. The old
59
+ `worker` / `cleaner` / `documenter` / `synthesizer` / `reviewer` set is
60
+ gone.
61
+ - Live widget splits each run into an identity line and a dim activity line.
package/README.md CHANGED
@@ -10,6 +10,34 @@ A managed engineering team for [pi](https://github.com/earendil-works/pi): two
10
10
  focused sub-agents, durable threads, and Git worktree
11
11
  isolation. You install it once and your main agent delegates on its own.
12
12
 
13
+ ## What's new
14
+
15
+ **4.2.13** — this page now leads with current changes and keeps the 4.2 line
16
+ in [CHANGELOG.md](./CHANGELOG.md).
17
+
18
+ **4.2.12**
19
+
20
+ - The executor confirms a named defect on current code before it edits.
21
+ - Footer settled counts stay honest, and only while a sibling is still live.
22
+ - Merging to `main` publishes npm and opens a matching GitHub Release.
23
+
24
+ ## Contents
25
+
26
+ - [Why](#why)
27
+ - [Install](#install)
28
+ - [The team](#the-team)
29
+ - [Dispatching work](#dispatching-work)
30
+ - [Parallel edits](#parallel-edits)
31
+ - [Threads: resume, stop](#threads-resume-stop)
32
+ - [Live status and results](#live-status-and-results)
33
+ - [Models, thinking, and tools](#models-thinking-and-tools)
34
+ - [Configuration](#configuration)
35
+ - [Custom agents](#custom-agents)
36
+ - [Storage and cleanup](#storage-and-cleanup)
37
+ - [Development](#development)
38
+ - [Changelog](#changelog)
39
+ - [Release](#release)
40
+
13
41
  ## Why
14
42
 
15
43
  Delegation is supposed to remove coordination work. Most sub-agent launchers stop
@@ -374,23 +402,29 @@ There are no bundled runtime dependencies; pi and TypeBox are peers. The source
374
402
  split by responsibility: dispatch policy, thread lifecycle, RPC
375
403
  transport, worktree integration, completion delivery, tools, and TUI status.
376
404
 
377
- ## Release
405
+ ## Changelog
378
406
 
379
- Merging to `main` publishes `@ferris1225/pi-subagents` when `package.json`
380
- carries a version npm does not have yet, then opens a matching GitHub Release.
381
- Do not `npm publish` from a laptop.
407
+ The 4.2 line lives in [CHANGELOG.md](./CHANGELOG.md). Latest published
408
+ version is **4.2.13**.
382
409
 
383
- One-time setup pick one:
410
+ | Version | What changed |
411
+ | ------- | ------------ |
412
+ | 4.2.13 | README navigation, What's new, and this changelog. |
413
+ | 4.2.12 | Confirm-before-fix; honest footer counts; `main` publishes npm + GitHub Release. |
414
+ | 4.2.8 | Footer roll-up; wait-path token usage; hold completions across compaction. |
415
+ | 4.2.7 | Sharper executor routing; per-dispatch `thinking`. |
416
+ | 4.2.5 | Per-project threads manifest. |
417
+ | 4.2.4 | One-line explorer findings; recovery cleanup retry. |
418
+ | 4.2.2 | Single-artifact reads stay inline. |
419
+ | 4.2.1 | Prune retired roles from upgraded configs. |
420
+ | 4.2.0 | Team is `explorer` + `executor`; two-line live widget. |
384
421
 
385
- 1. **Trusted publisher (preferred):** on the
386
- [npm package page](https://www.npmjs.com/package/@ferris1225/pi-subagents)
387
- add a GitHub Actions trusted publisher for `MCapricorns/pi-subagents` with
388
- workflow filename `publish.yml` (no path, environment left blank).
389
- 2. **Token:** create an npm automation token and store it as the repository
390
- Actions secret `NPM_TOKEN`.
422
+ ## Release
391
423
 
392
- If the first run fails because neither is configured, add the publisher or
393
- secret and re-run the **Publish** workflow from the Actions tab.
424
+ Merging to `main` publishes `@ferris1225/pi-subagents` when `package.json`
425
+ carries a version npm does not have yet, then opens a matching GitHub Release.
426
+ Do not `npm publish` from a laptop. The workflow is
427
+ `.github/workflows/publish.yml` (npm trusted publisher or `NPM_TOKEN`).
394
428
 
395
429
  ## License
396
430
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ferris1225/pi-subagents",
3
- "version": "4.2.12",
4
- "description": "A managed sub-agent team for pi: specialized roles, pre-commit documentation sync, retained threads, auto-fix chains, model fallback, and Git worktree isolation.",
3
+ "version": "4.2.13",
4
+ "description": "A managed sub-agent team for pi: explorer and executor roles, durable threads, model fallback, and Git worktree isolation.",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -28,6 +28,7 @@
28
28
  "src",
29
29
  "agents",
30
30
  "README.md",
31
+ "CHANGELOG.md",
31
32
  "LICENSE"
32
33
  ],
33
34
  "pi": {