pi-baton 0.3.0 → 0.4.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 +9 -0
- package/lib/status.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ 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.4.0] - 2026-06-20
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `/baton:start` creates an idle run from workflow selection and a task brief without starting execution.
|
|
12
|
+
- `/baton:status` reports workflow name, task brief, last/current step, run state, iteration count, and run directory.
|
|
13
|
+
- Single active run guard blocks a second `/baton:start` and points users to `/baton:status` or `/baton:run`.
|
|
14
|
+
- Run manifests persist under `.pi/baton/runs/` with an active-run pointer.
|
|
15
|
+
|
|
7
16
|
## [0.3.0] - 2026-06-18
|
|
8
17
|
|
|
9
18
|
### Added
|
package/lib/status.ts
CHANGED
|
@@ -4,6 +4,7 @@ export function formatStatusSummary(manifest: RunManifest): string {
|
|
|
4
4
|
return [
|
|
5
5
|
`workflow: ${manifest.workflowName}`,
|
|
6
6
|
`task brief: ${manifest.taskBrief}`,
|
|
7
|
+
`last step: ${manifest.lastStep ?? "(none)"}`,
|
|
7
8
|
`current step: ${manifest.currentStep ?? "(none)"}`,
|
|
8
9
|
`run state: ${manifest.state}`,
|
|
9
10
|
`iteration count: ${manifest.iteration}`,
|