@pandi-coding-agent/pi-cante 0.80.2 → 0.80.3-cante.2

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.
Files changed (58) hide show
  1. package/CHANGELOG.md +35 -1
  2. package/dist/core/agent-session.d.ts +2 -0
  3. package/dist/core/agent-session.d.ts.map +1 -1
  4. package/dist/core/agent-session.js +30 -3
  5. package/dist/core/agent-session.js.map +1 -1
  6. package/dist/core/compaction/compaction.d.ts +0 -2
  7. package/dist/core/compaction/compaction.d.ts.map +1 -1
  8. package/dist/core/compaction/compaction.js +1 -9
  9. package/dist/core/compaction/compaction.js.map +1 -1
  10. package/dist/core/extensions/index.d.ts +1 -1
  11. package/dist/core/extensions/index.d.ts.map +1 -1
  12. package/dist/core/extensions/index.js.map +1 -1
  13. package/dist/core/extensions/types.d.ts +8 -1
  14. package/dist/core/extensions/types.d.ts.map +1 -1
  15. package/dist/core/extensions/types.js.map +1 -1
  16. package/dist/core/http-dispatcher.d.ts.map +1 -1
  17. package/dist/core/http-dispatcher.js +28 -1
  18. package/dist/core/http-dispatcher.js.map +1 -1
  19. package/dist/core/settings-manager.d.ts +3 -3
  20. package/dist/core/settings-manager.d.ts.map +1 -1
  21. package/dist/core/settings-manager.js +8 -8
  22. package/dist/core/settings-manager.js.map +1 -1
  23. package/dist/index.d.ts +1 -1
  24. package/dist/index.d.ts.map +1 -1
  25. package/dist/index.js.map +1 -1
  26. package/dist/modes/interactive/components/assistant-message.d.ts +3 -1
  27. package/dist/modes/interactive/components/assistant-message.d.ts.map +1 -1
  28. package/dist/modes/interactive/components/assistant-message.js +15 -7
  29. package/dist/modes/interactive/components/assistant-message.js.map +1 -1
  30. package/dist/modes/interactive/components/settings-selector.d.ts +2 -0
  31. package/dist/modes/interactive/components/settings-selector.d.ts.map +1 -1
  32. package/dist/modes/interactive/components/settings-selector.js +13 -1
  33. package/dist/modes/interactive/components/settings-selector.js.map +1 -1
  34. package/dist/modes/interactive/components/status-indicator.d.ts +28 -0
  35. package/dist/modes/interactive/components/status-indicator.d.ts.map +1 -0
  36. package/dist/modes/interactive/components/status-indicator.js +60 -0
  37. package/dist/modes/interactive/components/status-indicator.js.map +1 -0
  38. package/dist/modes/interactive/components/user-message.d.ts +6 -2
  39. package/dist/modes/interactive/components/user-message.d.ts.map +1 -1
  40. package/dist/modes/interactive/components/user-message.js +18 -5
  41. package/dist/modes/interactive/components/user-message.js.map +1 -1
  42. package/dist/modes/interactive/interactive-mode.d.ts +5 -7
  43. package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  44. package/dist/modes/interactive/interactive-mode.js +88 -116
  45. package/dist/modes/interactive/interactive-mode.js.map +1 -1
  46. package/docs/extensions.md +14 -0
  47. package/docs/settings.md +1 -0
  48. package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
  49. package/examples/extensions/custom-provider-anthropic/package.json +1 -1
  50. package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
  51. package/examples/extensions/gondolin/package-lock.json +2 -2
  52. package/examples/extensions/gondolin/package.json +1 -1
  53. package/examples/extensions/sandbox/package-lock.json +2 -2
  54. package/examples/extensions/sandbox/package.json +1 -1
  55. package/examples/extensions/with-deps/package-lock.json +2 -2
  56. package/examples/extensions/with-deps/package.json +1 -1
  57. package/npm-shrinkwrap.json +44 -44
  58. package/package.json +14 -14
@@ -322,6 +322,9 @@ user sends another prompt ◄─────────────────
322
322
  ├─► session_start { reason: "fork", previousSessionFile }
323
323
  └─► resources_discover { reason: "startup" }
324
324
 
325
+ /name or pi.setSessionName()
326
+ └─► session_info_changed
327
+
325
328
  /compact or auto-compaction
326
329
  ├─► session_before_compact (can cancel or customize)
327
330
  └─► session_compact
@@ -395,6 +398,17 @@ pi.on("session_start", async (event, ctx) => {
395
398
  });
396
399
  ```
397
400
 
401
+ #### session_info_changed
402
+
403
+ Fired when the current session display name is set via `/name`, RPC, or `pi.setSessionName()`.
404
+
405
+ ```typescript
406
+ pi.on("session_info_changed", async (event, ctx) => {
407
+ // event.name - current normalized name, or undefined if cleared
408
+ ctx.ui.notify(`Session renamed: ${event.name ?? "(none)"}`, "info");
409
+ });
410
+ ```
411
+
398
412
  #### session_before_switch
399
413
 
400
414
  Fired before starting a new session (`/new`) or switching sessions (`/resume`).
package/docs/settings.md CHANGED
@@ -61,6 +61,7 @@ Use `/trust` in interactive mode to save a project trust decision for future ses
61
61
  | `doubleEscapeAction` | string | `"tree"` | Action for double-escape: `"tree"`, `"fork"`, or `"none"` |
62
62
  | `treeFilterMode` | string | `"default"` | Default filter for `/tree`: `"default"`, `"no-tools"`, `"user-only"`, `"labeled-only"`, `"all"` |
63
63
  | `editorPaddingX` | number | `0` | Horizontal padding for input editor (0-3) |
64
+ | `outputPad` | number | `1` | Horizontal padding for user messages, assistant messages, and thinking (0 or 1) |
64
65
  | `autocompleteMaxVisible` | number | `5` | Max visible items in autocomplete dropdown (3-20) |
65
66
  | `showHardwareCursor` | boolean | `false` | Show the terminal cursor while TUI positions it for IME support |
66
67
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "pi-extension-custom-provider",
3
- "version": "0.80.2",
3
+ "version": "0.80.3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "pi-extension-custom-provider",
9
- "version": "0.80.2",
9
+ "version": "0.80.3",
10
10
  "dependencies": {
11
11
  "@anthropic-ai/sdk": "^0.52.0"
12
12
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-extension-custom-provider-anthropic",
3
3
  "private": true,
4
- "version": "0.80.2",
4
+ "version": "0.80.3",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-extension-custom-provider-gitlab-duo",
3
3
  "private": true,
4
- "version": "0.80.2",
4
+ "version": "0.80.3",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "pi-extension-gondolin",
3
- "version": "0.80.2",
3
+ "version": "0.80.3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "pi-extension-gondolin",
9
- "version": "0.80.2",
9
+ "version": "0.80.3",
10
10
  "dependencies": {
11
11
  "@earendil-works/gondolin": "0.12.0"
12
12
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-extension-gondolin",
3
3
  "private": true,
4
- "version": "0.80.2",
4
+ "version": "0.80.3",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "pi-extension-sandbox",
3
- "version": "1.10.2",
3
+ "version": "1.10.3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "pi-extension-sandbox",
9
- "version": "1.10.2",
9
+ "version": "1.10.3",
10
10
  "dependencies": {
11
11
  "@anthropic-ai/sandbox-runtime": "^0.0.26"
12
12
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-extension-sandbox",
3
3
  "private": true,
4
- "version": "1.10.2",
4
+ "version": "1.10.3",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "pi-extension-with-deps",
3
- "version": "0.80.2",
3
+ "version": "0.80.3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "pi-extension-with-deps",
9
- "version": "0.80.2",
9
+ "version": "0.80.3",
10
10
  "dependencies": {
11
11
  "ms": "^2.1.3"
12
12
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-extension-with-deps",
3
3
  "private": true,
4
- "version": "0.80.2",
4
+ "version": "0.80.3",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,38 +1,38 @@
1
1
  {
2
2
  "name": "@pandi-coding-agent/pi-cante",
3
- "version": "0.80.2",
3
+ "version": "0.80.3-cante.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@pandi-coding-agent/pi-cante",
9
- "version": "0.80.2",
9
+ "version": "0.80.3-cante.2",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
+ "@earendil-works/pi-agent-core": "^0.80.3",
13
+ "@earendil-works/pi-ai": "^0.80.3",
14
+ "@earendil-works/pi-tui": "^0.80.3",
12
15
  "@pandi-coding-agent/ask": "0.1.1",
13
- "@pandi-coding-agent/auto-compact": "0.1.1",
16
+ "@pandi-coding-agent/auto-compact": "0.2.0",
14
17
  "@pandi-coding-agent/bg": "0.1.2",
15
18
  "@pandi-coding-agent/btw": "0.1.1",
16
19
  "@pandi-coding-agent/clear": "0.1.1",
17
20
  "@pandi-coding-agent/container": "0.2.0",
18
21
  "@pandi-coding-agent/docs": "0.1.0",
19
22
  "@pandi-coding-agent/doctor": "0.2.1",
20
- "@pandi-coding-agent/dynamic-workflows": "0.2.0",
23
+ "@pandi-coding-agent/dynamic-workflows": "0.3.1",
21
24
  "@pandi-coding-agent/effort": "0.1.1",
22
25
  "@pandi-coding-agent/exit": "0.1.2",
23
- "@pandi-coding-agent/goal": "0.1.1",
24
- "@pandi-coding-agent/local-memory": "0.1.1",
25
- "@pandi-coding-agent/loop": "0.1.1",
26
+ "@pandi-coding-agent/goal": "0.2.1",
27
+ "@pandi-coding-agent/local-memory": "0.2.0",
28
+ "@pandi-coding-agent/loop": "0.2.1",
26
29
  "@pandi-coding-agent/mdview": "0.1.1",
27
30
  "@pandi-coding-agent/pandi": "0.1.1",
28
31
  "@pandi-coding-agent/pandi-theme": "0.1.1",
29
- "@pandi-coding-agent/plan": "0.1.1",
30
- "@pandi-coding-agent/rename": "0.2.0",
32
+ "@pandi-coding-agent/plan": "0.1.2",
33
+ "@pandi-coding-agent/rename": "0.3.0",
31
34
  "@pandi-coding-agent/typescript-lsp": "0.1.2",
32
- "@pandi-coding-agent/worktree": "0.1.1",
33
- "@earendil-works/pi-agent-core": "^0.80.2",
34
- "@earendil-works/pi-ai": "^0.80.2",
35
- "@earendil-works/pi-tui": "^0.80.2",
35
+ "@pandi-coding-agent/worktree": "0.2.0",
36
36
  "@silvia-odwyer/photon-node": "0.3.4",
37
37
  "chalk": "5.6.2",
38
38
  "cross-spawn": "7.0.6",
@@ -495,11 +495,11 @@
495
495
  }
496
496
  },
497
497
  "node_modules/@earendil-works/pi-agent-core": {
498
- "version": "0.80.2",
499
- "resolved": "https://registry.npmjs.org/@earendil-works/pi-agent-core/-/pi-agent-core-0.80.2.tgz",
498
+ "version": "0.80.3",
499
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-agent-core/-/pi-agent-core-0.80.3.tgz",
500
500
  "license": "MIT",
501
501
  "dependencies": {
502
- "@earendil-works/pi-ai": "^0.80.2",
502
+ "@earendil-works/pi-ai": "^0.80.3",
503
503
  "ignore": "7.0.5",
504
504
  "typebox": "1.1.38",
505
505
  "yaml": "2.9.0"
@@ -509,8 +509,8 @@
509
509
  }
510
510
  },
511
511
  "node_modules/@earendil-works/pi-ai": {
512
- "version": "0.80.2",
513
- "resolved": "https://registry.npmjs.org/@earendil-works/pi-ai/-/pi-ai-0.80.2.tgz",
512
+ "version": "0.80.3",
513
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-ai/-/pi-ai-0.80.3.tgz",
514
514
  "license": "MIT",
515
515
  "dependencies": {
516
516
  "@anthropic-ai/sdk": "0.91.1",
@@ -533,8 +533,8 @@
533
533
  }
534
534
  },
535
535
  "node_modules/@earendil-works/pi-tui": {
536
- "version": "0.80.2",
537
- "resolved": "https://registry.npmjs.org/@earendil-works/pi-tui/-/pi-tui-0.80.2.tgz",
536
+ "version": "0.80.3",
537
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-tui/-/pi-tui-0.80.3.tgz",
538
538
  "license": "MIT",
539
539
  "dependencies": {
540
540
  "get-east-asian-width": "1.6.0",
@@ -823,9 +823,9 @@
823
823
  }
824
824
  },
825
825
  "node_modules/@pandi-coding-agent/auto-compact": {
826
- "version": "0.1.1",
827
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/auto-compact/-/auto-compact-0.1.1.tgz",
828
- "integrity": "sha512-6bnM0x1iVKlh5hd0VEmO8CQTdq5qjo7k4OK2KYI1QRrbdsiuL9dDEJlcay3bw1sA9xeBHq5jZ87ug9z+bHlD6A==",
826
+ "version": "0.2.0",
827
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/auto-compact/-/auto-compact-0.2.0.tgz",
828
+ "integrity": "sha512-pAdHxGMbyPaXxWTLdE0qeG4A6moZRfI4qE23wW4066UE8mvd8Mn6F8RxWpxI30nRH1G2ZpptwbuKOVGnoIejwg==",
829
829
  "license": "MIT",
830
830
  "peerDependencies": {
831
831
  "@earendil-works/pi-coding-agent": "*"
@@ -894,9 +894,9 @@
894
894
  }
895
895
  },
896
896
  "node_modules/@pandi-coding-agent/dynamic-workflows": {
897
- "version": "0.2.0",
898
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/dynamic-workflows/-/dynamic-workflows-0.2.0.tgz",
899
- "integrity": "sha512-UkIaWc+SlKmE9zTpJ2tNjCB6JQ06kIiaxvD4nVqJtf1Nj9pkRn9yTANhQhvIWk2KuQAhZtG5mNVxzxBr87eCbQ==",
897
+ "version": "0.3.1",
898
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/dynamic-workflows/-/dynamic-workflows-0.3.1.tgz",
899
+ "integrity": "sha512-5MKzxvP+aRnuWB/D+317hm24h562vfOKuLbVL2ficld1T53jbNPyYy561fE/2iI8YQDycEKA6ouOtYAILxBylw==",
900
900
  "license": "MIT",
901
901
  "peerDependencies": {
902
902
  "@earendil-works/pi-ai": "*",
@@ -924,9 +924,9 @@
924
924
  }
925
925
  },
926
926
  "node_modules/@pandi-coding-agent/goal": {
927
- "version": "0.1.1",
928
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/goal/-/goal-0.1.1.tgz",
929
- "integrity": "sha512-M4yCiZ2hW1LNx/rXCVB0TC5CUdjBeagxq8MOzvWYUi6c1+Fs3EjSwuVB9g6+6OxttnXwqRiljBdM5GpDI/sl1w==",
927
+ "version": "0.2.1",
928
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/goal/-/goal-0.2.1.tgz",
929
+ "integrity": "sha512-5aV8BqqJPnJ27IkuxXbcVqRGUuxeTTClA3v24KeTykIZHdXjTf4/nmqqHQmt10gybYk1l8yMj384LFkwvZMUZw==",
930
930
  "license": "MIT",
931
931
  "peerDependencies": {
932
932
  "@earendil-works/pi-coding-agent": "*",
@@ -934,9 +934,9 @@
934
934
  }
935
935
  },
936
936
  "node_modules/@pandi-coding-agent/local-memory": {
937
- "version": "0.1.1",
938
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/local-memory/-/local-memory-0.1.1.tgz",
939
- "integrity": "sha512-bZ3f5tLxVhuAPcjiZw1roQ9rH661UhN2rtRoJEaL8mmDUi0HgNqIUeU5871PDO8k1nj8bIF6+BE9OEB93eVGSQ==",
937
+ "version": "0.2.0",
938
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/local-memory/-/local-memory-0.2.0.tgz",
939
+ "integrity": "sha512-sPtOxFJfLAXRGOCG3mY6XjfCvDaTNBARYU+VE0e6jcYjosJ+ielhVOaCGE0Oe81aXJSr41RkQDxLqoiqC+Mo5Q==",
940
940
  "license": "MIT",
941
941
  "peerDependencies": {
942
942
  "@earendil-works/pi-coding-agent": "*",
@@ -944,9 +944,9 @@
944
944
  }
945
945
  },
946
946
  "node_modules/@pandi-coding-agent/loop": {
947
- "version": "0.1.1",
948
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/loop/-/loop-0.1.1.tgz",
949
- "integrity": "sha512-kQx5OmfmgdJHATMqPOmRkskShq0j10CU5+3zKhgY50d8AY6T5m2v3uuncm3XyBA85Niuit8u63DVsJS6yHzo+Q==",
947
+ "version": "0.2.1",
948
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/loop/-/loop-0.2.1.tgz",
949
+ "integrity": "sha512-wQmx8rrIfC7l7Qu6UrUwHqldIlvnWG9fJLwtNNkIAACs5dJKEpeJu5tuXazGzw75IcDsFBey+pRghFoF2UiBJg==",
950
950
  "license": "MIT",
951
951
  "peerDependencies": {
952
952
  "@earendil-works/pi-coding-agent": "*",
@@ -982,9 +982,9 @@
982
982
  }
983
983
  },
984
984
  "node_modules/@pandi-coding-agent/plan": {
985
- "version": "0.1.1",
986
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/plan/-/plan-0.1.1.tgz",
987
- "integrity": "sha512-7ybJviVfti0mQMUcrn2wDwMqDHsanflJPOPy0mfYg6GddLhSL/egm35nGT6LWRu6PCotBPc2R45JjYkFvY19uw==",
985
+ "version": "0.1.2",
986
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/plan/-/plan-0.1.2.tgz",
987
+ "integrity": "sha512-fTwzf+8/1/XFf5oJ7PPgDny6zDSSNUZDO3jqBxpg4gvGXtBDm0QlaMA7lgmlhpiLEBY4//0Zc9+dM+xrN3ZbBA==",
988
988
  "license": "MIT",
989
989
  "peerDependencies": {
990
990
  "@earendil-works/pi-coding-agent": "*",
@@ -993,9 +993,9 @@
993
993
  }
994
994
  },
995
995
  "node_modules/@pandi-coding-agent/rename": {
996
- "version": "0.2.0",
997
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/rename/-/rename-0.2.0.tgz",
998
- "integrity": "sha512-WfPgQy6oChdZy/4UpzL4wJiWzu586MVnn7q3BhFtWnZN/POzbghqn0EdCG1s3syP1oaeCK5ScRjKePc3Ht8lqA==",
996
+ "version": "0.3.0",
997
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/rename/-/rename-0.3.0.tgz",
998
+ "integrity": "sha512-WZjmPvmdUBACehlACqFoG84BDmy8LgsagSe1QKVVgb+sZfixx4IprfF2+sIPI8JWTOX5foHvlw4Kjn48qghAuw==",
999
999
  "license": "MIT",
1000
1000
  "peerDependencies": {
1001
1001
  "@earendil-works/pi-coding-agent": "*"
@@ -1013,9 +1013,9 @@
1013
1013
  }
1014
1014
  },
1015
1015
  "node_modules/@pandi-coding-agent/worktree": {
1016
- "version": "0.1.1",
1017
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/worktree/-/worktree-0.1.1.tgz",
1018
- "integrity": "sha512-VVVKyHqXViUYXb8tyOgxvSOcsu6XCOGXhCCLDd/YjHuMiw40SuOc0RKYaj6cn6HiSDGXBD48vDaACnhT/jzkwQ==",
1016
+ "version": "0.2.0",
1017
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/worktree/-/worktree-0.2.0.tgz",
1018
+ "integrity": "sha512-/EsWMCGEkbO8NAud1dkT3u8P69GzByllnA8ZOUZ07dJczlFz+CFP+gUBg1os/pXBsWECTWhsy7z1Ln82gwnTcg==",
1019
1019
  "license": "MIT",
1020
1020
  "peerDependencies": {
1021
1021
  "@earendil-works/pi-ai": "*",
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@pandi-coding-agent/pi-cante",
3
- "version": "0.80.2",
3
+ "version": "0.80.3-cante.2",
4
4
  "description": "pi-cante: a pi coding agent distribution bundling the pandi extension pack",
5
5
  "type": "module",
6
6
  "piConfig": {
7
7
  "name": "pi-cante",
8
- "configDir": ".pi"
8
+ "configDir": ".pi-cante"
9
9
  },
10
10
  "bin": {
11
11
  "pi-cante": "dist/cli.js"
@@ -34,36 +34,36 @@
34
34
  "build": "tsgo -p tsconfig.build.json && shx chmod +x dist/cli.js dist/rpc-entry.js && npm run copy-assets",
35
35
  "build:binary": "npm --prefix ../tui run build && npm --prefix ../ai run build && npm --prefix ../agent run build && npm run build && bun build --compile ./dist/bun/cli.js ./src/utils/image-resize-worker.ts --outfile dist/pi && npm run copy-binary-assets",
36
36
  "copy-assets": "shx mkdir -p dist/modes/interactive/theme && shx cp src/modes/interactive/theme/*.json dist/modes/interactive/theme/ && shx mkdir -p dist/modes/interactive/assets && shx cp src/modes/interactive/assets/*.png dist/modes/interactive/assets/ && shx mkdir -p dist/core/export-html/vendor && shx cp src/core/export-html/template.html src/core/export-html/template.css src/core/export-html/template.js dist/core/export-html/ && shx cp src/core/export-html/vendor/*.js dist/core/export-html/vendor/",
37
- "copy-binary-assets": "shx cp package.json dist/ && shx cp README.md dist/ && shx cp CHANGELOG.md dist/ && shx mkdir -p dist/theme && shx cp src/modes/interactive/theme/*.json dist/theme/ && shx mkdir -p dist/assets && shx cp src/modes/interactive/assets/*.png dist/assets/ && shx mkdir -p dist/export-html/vendor && shx cp src/core/export-html/template.html dist/export-html/ && shx cp src/core/export-html/vendor/*.js dist/export-html/vendor/ && shx cp -r docs dist/ && shx cp -r examples dist/ && shx cp ../../node_modules/@silvia-odwyer/photon-node/photon_rs_bg.wasm dist/ && shx cp -r ../ai/dist/wasm dist/wasm",
37
+ "copy-binary-assets": "shx cp package.json dist/ && shx cp README.md dist/ && shx cp CHANGELOG.md dist/ && shx mkdir -p dist/theme && shx cp src/modes/interactive/theme/*.json dist/theme/ && shx mkdir -p dist/assets && shx cp src/modes/interactive/assets/*.png dist/assets/ && shx mkdir -p dist/export-html/vendor && shx cp src/core/export-html/template.html dist/export-html/ && shx cp src/core/export-html/vendor/*.js dist/export-html/vendor/ && shx cp -r docs dist/ && shx cp -r examples dist/ && shx cp ../../node_modules/@silvia-odwyer/photon-node/photon_rs_bg.wasm dist/",
38
38
  "test": "vitest --run",
39
39
  "shrinkwrap": "node ../../scripts/generate-coding-agent-shrinkwrap.mjs",
40
40
  "prepublishOnly": "npm run clean && npm run build && npm run shrinkwrap"
41
41
  },
42
42
  "dependencies": {
43
+ "@earendil-works/pi-agent-core": "^0.80.3",
44
+ "@earendil-works/pi-ai": "^0.80.3",
45
+ "@earendil-works/pi-tui": "^0.80.3",
43
46
  "@pandi-coding-agent/ask": "0.1.1",
44
- "@pandi-coding-agent/auto-compact": "0.1.1",
47
+ "@pandi-coding-agent/auto-compact": "0.2.0",
45
48
  "@pandi-coding-agent/bg": "0.1.2",
46
49
  "@pandi-coding-agent/btw": "0.1.1",
47
50
  "@pandi-coding-agent/clear": "0.1.1",
48
51
  "@pandi-coding-agent/container": "0.2.0",
49
52
  "@pandi-coding-agent/docs": "0.1.0",
50
53
  "@pandi-coding-agent/doctor": "0.2.1",
51
- "@pandi-coding-agent/dynamic-workflows": "0.2.0",
54
+ "@pandi-coding-agent/dynamic-workflows": "0.3.1",
52
55
  "@pandi-coding-agent/effort": "0.1.1",
53
56
  "@pandi-coding-agent/exit": "0.1.2",
54
- "@pandi-coding-agent/goal": "0.1.1",
55
- "@pandi-coding-agent/local-memory": "0.1.1",
56
- "@pandi-coding-agent/loop": "0.1.1",
57
+ "@pandi-coding-agent/goal": "0.2.1",
58
+ "@pandi-coding-agent/local-memory": "0.2.0",
59
+ "@pandi-coding-agent/loop": "0.2.1",
57
60
  "@pandi-coding-agent/mdview": "0.1.1",
58
61
  "@pandi-coding-agent/pandi": "0.1.1",
59
62
  "@pandi-coding-agent/pandi-theme": "0.1.1",
60
- "@pandi-coding-agent/plan": "0.1.1",
61
- "@pandi-coding-agent/rename": "0.2.0",
63
+ "@pandi-coding-agent/plan": "0.1.2",
64
+ "@pandi-coding-agent/rename": "0.3.0",
62
65
  "@pandi-coding-agent/typescript-lsp": "0.1.2",
63
- "@pandi-coding-agent/worktree": "0.1.1",
64
- "@earendil-works/pi-agent-core": "^0.80.2",
65
- "@earendil-works/pi-ai": "^0.80.2",
66
- "@earendil-works/pi-tui": "^0.80.2",
66
+ "@pandi-coding-agent/worktree": "0.2.0",
67
67
  "@silvia-odwyer/photon-node": "0.3.4",
68
68
  "chalk": "5.6.2",
69
69
  "cross-spawn": "7.0.6",