pi-baton 0.5.0 → 0.7.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,32 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  This project follows semantic versioning.
6
6
 
7
+ ## [0.7.0] - 2026-06-26
8
+
9
+ ### Added
10
+
11
+ - Command handler tests for `/baton:new`, `/baton:start`, `/baton:run`, and `/baton:status` covering scaffold creation, inline validation, active-run guard, and no-active-run messaging.
12
+ - Handoff payload shape tests for implement, linear, and fix transitions.
13
+ - Run-store tests for active-run visibility across idle, running, and terminal states.
14
+
15
+ ### Changed
16
+
17
+ - Finalizes the shipped builtin `default-review-loop` workflow (`worker` / `reviewer` / `worker`) with full v1 command-surface test coverage.
18
+
19
+ ## [0.6.0] - 2026-06-25
20
+
21
+ ### Added
22
+
23
+ - Structured step envelopes for every run step (`summary`, `rawOutputPath`, and review fields when applicable).
24
+ - Step handoff payload carries `taskBrief`, prior `stepOutputSummary`, `rawOutputPath`, and run metadata between isolated steps.
25
+ - Review contract enforcement: `reject` requires non-empty `findings`; `accept` requires `acceptanceNote`.
26
+ - Builtin `default-review-loop` routes `fix` back to `review`; iteration cap stops infinite reject loops.
27
+ - Step-level `model` override with placeholder and session-model fallback via `resolveStepModel`.
28
+
29
+ ### Changed
30
+
31
+ - Expanded `run-engine` and `review-contract` tests for fix→review routing, model routing, envelope persistence, and contract violations.
32
+
7
33
  ## [0.5.0] - 2026-06-23
8
34
 
9
35
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-baton",
3
- "version": "0.5.0",
3
+ "version": "0.7.0",
4
4
  "description": "Pi-native workflow baton runner with per-step model switching and isolated step context.",
5
5
  "type": "module",
6
6
  "license": "MIT",