pi-kage 0.3.3 → 0.3.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/README.md CHANGED
@@ -47,6 +47,10 @@ 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 (use @latest so a stale metadata cache doesn't pin you to an old version)
51
+ pnpm add -g pi-kage@latest
52
+ pnpm dlx pi-kage # or run without installing
53
+
50
54
  # or install script (no npm needed — kage is a single, zero-dependency Node script)
51
55
  curl -fsSL https://raw.githubusercontent.com/kid7st/kage/main/install.sh | sh
52
56
  ```
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.3"; // keep in sync with package.json (enforced by test)
33
+ const VERSION = "0.3.4"; // 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-kage",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "🥷 Shadow Clone Jutsu for your git repo: copy it into an isolated folder, work in parallel with pi, then merge the session memory back",
5
5
  "keywords": [
6
6
  "pi",