pi-kage 0.3.4 → 0.3.5
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/README.md +2 -2
- package/bin/kage.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,8 +47,8 @@ can't check out the same branch twice, you share stash/refs, and you get a *fres
|
|
|
47
47
|
npm install -g pi-kage # then use `kage` anywhere
|
|
48
48
|
npx pi-kage # or run without installing
|
|
49
49
|
|
|
50
|
-
# pnpm
|
|
51
|
-
pnpm add -g pi-kage
|
|
50
|
+
# pnpm
|
|
51
|
+
pnpm add -g pi-kage
|
|
52
52
|
pnpm dlx pi-kage # or run without installing
|
|
53
53
|
|
|
54
54
|
# or install script (no npm needed — kage is a single, zero-dependency Node script)
|
package/bin/kage.mjs
CHANGED
|
@@ -30,7 +30,7 @@ import { homedir } from "node:os";
|
|
|
30
30
|
import { basename, dirname, join, resolve, sep } from "node:path";
|
|
31
31
|
import readline from "node:readline";
|
|
32
32
|
|
|
33
|
-
const VERSION = "0.3.
|
|
33
|
+
const VERSION = "0.3.5"; // keep in sync with package.json (enforced by test)
|
|
34
34
|
const MARKER = ".kage.json";
|
|
35
35
|
const SESSIONS = process.env.KAGE_SESSIONS_DIR || join(homedir(), ".pi", "agent", "sessions");
|
|
36
36
|
const RECENT_SESSIONS = 5; // how many of the origin's most-recent sessions to copy into a clone
|
package/package.json
CHANGED