@pimote/pimote 0.3.0 → 0.4.0

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 (50) hide show
  1. package/README.md +35 -24
  2. package/client/build/_app/immutable/assets/0.DzEJOwCY.css +2 -0
  3. package/client/build/_app/immutable/assets/2.BaqEkCa-.css +1 -0
  4. package/client/build/_app/immutable/chunks/Bu9BFOcV.js +5 -0
  5. package/client/build/_app/immutable/chunks/{D_Fpgknp.js → CC5lD39t.js} +1 -1
  6. package/client/build/_app/immutable/chunks/Cofo8G1m.js +1 -0
  7. package/client/build/_app/immutable/chunks/IBhhn0wx.js +1 -0
  8. package/client/build/_app/immutable/chunks/RduuwJ24.js +1 -0
  9. package/client/build/_app/immutable/entry/{app.DO-zgzyy.js → app.D7ddwq0U.js} +2 -2
  10. package/client/build/_app/immutable/entry/start.8XREk-Eq.js +1 -0
  11. package/client/build/_app/immutable/nodes/0.nayop99c.js +10 -0
  12. package/client/build/_app/immutable/nodes/{1.B2l9JGRO.js → 1.BuW4kxL-.js} +1 -1
  13. package/client/build/_app/immutable/nodes/2.BParOJL4.js +54 -0
  14. package/client/build/_app/version.json +1 -1
  15. package/client/build/index.html +7 -7
  16. package/package.json +3 -4
  17. package/server/dist/config.js +0 -1
  18. package/server/dist/extension-ui-bridge.js +17 -0
  19. package/server/dist/folder-index.js +1 -1
  20. package/server/dist/index.js +55 -18
  21. package/server/dist/message-mapper.js +1 -0
  22. package/server/dist/paths.js +2 -0
  23. package/server/dist/push-notification.js +11 -0
  24. package/server/dist/server.js +9 -1
  25. package/server/dist/session-manager.js +22 -8
  26. package/server/dist/static-host/gc.js +42 -0
  27. package/server/dist/static-host/http-handler.js +170 -0
  28. package/server/dist/static-host/index.js +117 -0
  29. package/server/dist/static-host/prompt.js +19 -0
  30. package/server/dist/static-host/registry.js +58 -0
  31. package/server/dist/static-host/store.js +44 -0
  32. package/server/dist/static-host/tools.js +118 -0
  33. package/server/dist/voice/fsm/reducers/lifecycle.js +14 -2
  34. package/server/dist/voice/index.js +49 -7
  35. package/server/dist/voice/speechmux-client.js +20 -3
  36. package/server/dist/voice/state-machine.js +7 -0
  37. package/server/dist/voice-orchestrator-boot.js +14 -50
  38. package/server/dist/voice-orchestrator.js +10 -22
  39. package/server/dist/ws-handler.js +4 -2
  40. package/shared/dist/protocol.d.ts +8 -0
  41. package/client/build/_app/immutable/assets/0.C7loWTOC.css +0 -2
  42. package/client/build/_app/immutable/assets/2.D9fiCd8W.css +0 -1
  43. package/client/build/_app/immutable/chunks/BNqgidwO.js +0 -5
  44. package/client/build/_app/immutable/chunks/D26i4pYm.js +0 -1
  45. package/client/build/_app/immutable/chunks/DoVhjU85.js +0 -1
  46. package/client/build/_app/immutable/chunks/DzqbY2XU.js +0 -1
  47. package/client/build/_app/immutable/entry/start.BZlrOH0-.js +0 -1
  48. package/client/build/_app/immutable/nodes/0.BEh4bPGQ.js +0 -10
  49. package/client/build/_app/immutable/nodes/2.ph9M0S1U.js +0 -54
  50. package/patches/@mariozechner+pi-coding-agent+0.67.6.patch +0 -24
@@ -1,24 +0,0 @@
1
- diff --git a/node_modules/@mariozechner/pi-coding-agent/dist/core/agent-session-runtime.js b/node_modules/@mariozechner/pi-coding-agent/dist/core/agent-session-runtime.js
2
- index fcb3466..20ee304 100644
3
- --- a/node_modules/@mariozechner/pi-coding-agent/dist/core/agent-session-runtime.js
4
- +++ b/node_modules/@mariozechner/pi-coding-agent/dist/core/agent-session-runtime.js
5
- @@ -75,9 +75,6 @@ export class AgentSessionRuntime {
6
- this.session.dispose();
7
- }
8
- apply(result) {
9
- - if (process.cwd() !== result.services.cwd) {
10
- - process.chdir(result.services.cwd);
11
- - }
12
- this._session = result.session;
13
- this._services = result.services;
14
- this._diagnostics = result.diagnostics;
15
- @@ -227,9 +224,6 @@ export class AgentSessionRuntime {
16
- export async function createAgentSessionRuntime(createRuntime, options) {
17
- assertSessionCwdExists(options.sessionManager, options.cwd);
18
- const result = await createRuntime(options);
19
- - if (process.cwd() !== result.services.cwd) {
20
- - process.chdir(result.services.cwd);
21
- - }
22
- return new AgentSessionRuntime(result.session, result.services, createRuntime, result.diagnostics, result.modelFallbackMessage);
23
- }
24
- export { createAgentSessionFromServices, createAgentSessionServices, } from "./agent-session-services.js";