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 +2 -0
- package/README.md +4 -2
- package/lib/run-store.ts +0 -4
- package/package.json +3 -3
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
|
+
[](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.
|
|
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
|
+
"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.
|
|
62
|
-
"@earendil-works/pi-coding-agent": "^0.
|
|
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"
|