@gotgenes/pi-subagents 9.0.0 → 9.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 CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [9.0.1](https://github.com/gotgenes/pi-packages/compare/pi-subagents-v9.0.0...pi-subagents-v9.0.1) (2026-05-27)
9
+
10
+
11
+ ### Documentation
12
+
13
+ * **retro:** add retro notes for issue [#238](https://github.com/gotgenes/pi-packages/issues/238) ([84f2e49](https://github.com/gotgenes/pi-packages/commit/84f2e49c1c7a28e83ca556f377d7e3f970b8a5d2))
14
+
8
15
  ## [9.0.0](https://github.com/gotgenes/pi-packages/compare/pi-subagents-v8.0.0...pi-subagents-v9.0.0) (2026-05-27)
9
16
 
10
17
 
@@ -37,3 +37,36 @@ Full suite: 62 files, 977 tests, all passing; type check and lint clean.
37
37
  - **ESLint auto-fix in step 2**: ESLint rewrote `extensions === false` to `!extensions` and `cfg.toolFilter.extensions === false` to `!cfg.toolFilter.extensions` after the type narrowed to `boolean`.
38
38
  Both are semantically identical; the changes were staged and included in the same commit.
39
39
  - The `resolveBoolExtensions` helper in `custom-agents.ts` is a clean seam — if `skills` is ever also simplified to `boolean`, the same pattern applies.
40
+
41
+ ## Stage: Final Retrospective (2026-05-27T01:48:04Z)
42
+
43
+ ### Session summary
44
+
45
+ All three stages (planning, TDD, shipping) completed in a single continuous session.
46
+ Six implementation commits landed as `pi-subagents-v9.0.0` (major bump from `feat!:`).
47
+ Issue #238 closed; unblocks #239 (collapse `filterActiveTools`).
48
+
49
+ ### Observations
50
+
51
+ #### What went well
52
+
53
+ - The plan’s structure closely followed the successful #237 pattern, making execution predictable.
54
+ - The implementer caught the type-narrowing cascade on the first `pnpm run check` and adapted immediately — no user intervention needed.
55
+ - The `resolveBoolExtensions` helper extraction was a clean design choice that keeps `inheritField` reusable for `skills`.
56
+ - ESLint auto-fix of `=== false` → `!` after the type narrowed to `boolean` was handled smoothly within the same commit.
57
+
58
+ #### What caused friction (agent side)
59
+
60
+ - `instruction-violation` (self-identified) — The planner did not apply the testing skill’s existing rule: “When a TDD plan lists separate steps that share a type definition, changing that type in step N breaks steps N+1…N+k.”
61
+ The plan assigned test-fixture fixes (removing `extensions: string[]` values) to steps 2–4, but the type change in step 1 broke them all immediately.
62
+ Impact: no rework — the implementer folded fixes into step 1 — but the plan’s step boundaries were misleading.
63
+ - `missing-context` — The plan recommended `debugLog` for the deprecation warning without checking its function signature (`(context: string, err: unknown)`) or its debug-only behavior.
64
+ Impact: minor — switched to `console.warn` during implementation with no rework, but the plan was wrong.
65
+
66
+ #### What caused friction (user side)
67
+
68
+ - Nothing notable — no user corrections were needed across all three stages.
69
+
70
+ ### Changes made
71
+
72
+ 1. `.pi/skills/testing/SKILL.md` — Added type-narrowing-specific TDD planning rule: when a step narrows a union type, grep test files for fixtures using the removed variant and fold those fixes into the same step.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gotgenes/pi-subagents",
3
- "version": "9.0.0",
3
+ "version": "9.0.1",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/service.ts"