pi-baton 0.7.3 → 0.7.4

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
@@ -9,6 +9,8 @@ This project follows semantic versioning.
9
9
  ### Changed
10
10
 
11
11
  - Bump package version to `0.7.3` for the next patch release.
12
+ - Bumped Pi dev toolchain packages to clear the transitive `protobufjs` audit advisory; the remaining `brace-expansion` finding is documented as upstream-blocked by `@earendil-works/pi-coding-agent`'s published shrinkwrap.
13
+ - Removed unused `clearActiveRunPointer` export from `lib/run-store.ts` (dead code with no callers; `loadActiveRun` / `loadMostRecentTerminalRun` already treat a missing `runId` as no active pointer).
12
14
 
13
15
  ## [0.7.2] - 2026-07-04
14
16
 
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Pi Baton
2
2
 
3
+ [![Join dotfield.xyz on Discord](https://img.shields.io/badge/Join%20dotfield.xyz%20on%20Discord-5865F2?logo=discord&logoColor=white)](https://discord.gg/4945dXZVW5)
4
+
3
5
  <p align="center">
4
6
  <img src="./assets/pi-baton-icon-512.png" alt="Pi Baton icon" width="192" height="192" />
5
7
  </p>
@@ -37,7 +39,7 @@ pi install npm:pi-baton
37
39
  Pin a specific version when you want reproducible installs:
38
40
 
39
41
  ```bash
40
- pi install npm:pi-baton@0.7.3
42
+ pi install npm:pi-baton@0.7.4
41
43
  ```
42
44
 
43
45
  Install into the current project instead of your user Pi settings:
@@ -169,4 +171,4 @@ For vulnerability reporting, see [`SECURITY.md`](SECURITY.md).
169
171
 
170
172
  ## License
171
173
 
172
- MIT
174
+ MIT
package/lib/run-store.ts CHANGED
@@ -84,10 +84,6 @@ export async function setActiveRunPointer(cwd: string, runId: string): Promise<v
84
84
  await writeJson(getActiveRunPointerPath(cwd), { runId } satisfies ActiveRunPointer);
85
85
  }
86
86
 
87
- export async function clearActiveRunPointer(cwd: string): Promise<void> {
88
- await writeJson(getActiveRunPointerPath(cwd), { runId: null });
89
- }
90
-
91
87
  export interface CreateRunInput {
92
88
  workflowId: string;
93
89
  workflowName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-baton",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
4
4
  "description": "Pi-native workflow baton runner with per-step model switching and isolated step context.",
5
5
  "type": "module",
6
6
  "engines": {
@@ -58,8 +58,8 @@
58
58
  "typebox": "*"
59
59
  },
60
60
  "devDependencies": {
61
- "@earendil-works/pi-ai": "^0.80.6",
62
- "@earendil-works/pi-coding-agent": "^0.80.6",
61
+ "@earendil-works/pi-ai": "^0.82.1",
62
+ "@earendil-works/pi-coding-agent": "^0.82.1",
63
63
  "typebox": "latest",
64
64
  "@types/node": "^26.0.1",
65
65
  "typescript": "^6.0.3"