remote-pi-app 0.7.1

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 (159) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +675 -0
  3. package/dist/actions/handlers.d.ts +138 -0
  4. package/dist/actions/handlers.js +189 -0
  5. package/dist/actions/handlers.js.map +1 -0
  6. package/dist/actions/registry.d.ts +39 -0
  7. package/dist/actions/registry.js +58 -0
  8. package/dist/actions/registry.js.map +1 -0
  9. package/dist/bin/supervisord.d.ts +2 -0
  10. package/dist/bin/supervisord.js +86 -0
  11. package/dist/bin/supervisord.js.map +1 -0
  12. package/dist/config.d.ts +62 -0
  13. package/dist/config.js +115 -0
  14. package/dist/config.js.map +1 -0
  15. package/dist/daemon/client.d.ts +20 -0
  16. package/dist/daemon/client.js +131 -0
  17. package/dist/daemon/client.js.map +1 -0
  18. package/dist/daemon/control_protocol.d.ts +176 -0
  19. package/dist/daemon/control_protocol.js +63 -0
  20. package/dist/daemon/control_protocol.js.map +1 -0
  21. package/dist/daemon/cron_log.d.ts +45 -0
  22. package/dist/daemon/cron_log.js +72 -0
  23. package/dist/daemon/cron_log.js.map +1 -0
  24. package/dist/daemon/cron_registry.d.ts +80 -0
  25. package/dist/daemon/cron_registry.js +194 -0
  26. package/dist/daemon/cron_registry.js.map +1 -0
  27. package/dist/daemon/id.d.ts +24 -0
  28. package/dist/daemon/id.js +36 -0
  29. package/dist/daemon/id.js.map +1 -0
  30. package/dist/daemon/install.d.ts +170 -0
  31. package/dist/daemon/install.js +547 -0
  32. package/dist/daemon/install.js.map +1 -0
  33. package/dist/daemon/registry.d.ts +63 -0
  34. package/dist/daemon/registry.js +153 -0
  35. package/dist/daemon/registry.js.map +1 -0
  36. package/dist/daemon/rpc_child.d.ts +194 -0
  37. package/dist/daemon/rpc_child.js +389 -0
  38. package/dist/daemon/rpc_child.js.map +1 -0
  39. package/dist/daemon/supervisor.d.ts +93 -0
  40. package/dist/daemon/supervisor.js +596 -0
  41. package/dist/daemon/supervisor.js.map +1 -0
  42. package/dist/extension_ui_bridge.d.ts +26 -0
  43. package/dist/extension_ui_bridge.js +341 -0
  44. package/dist/extension_ui_bridge.js.map +1 -0
  45. package/dist/index.d.ts +213 -0
  46. package/dist/index.js +5090 -0
  47. package/dist/index.js.map +1 -0
  48. package/dist/mcp/mesh_result.d.ts +10 -0
  49. package/dist/mcp/mesh_result.js +42 -0
  50. package/dist/mcp/mesh_result.js.map +1 -0
  51. package/dist/mcp/mesh_server.d.ts +16 -0
  52. package/dist/mcp/mesh_server.js +327 -0
  53. package/dist/mcp/mesh_server.js.map +1 -0
  54. package/dist/mesh/canonical.d.ts +30 -0
  55. package/dist/mesh/canonical.js +61 -0
  56. package/dist/mesh/canonical.js.map +1 -0
  57. package/dist/mesh/client.d.ts +18 -0
  58. package/dist/mesh/client.js +125 -0
  59. package/dist/mesh/client.js.map +1 -0
  60. package/dist/mesh/encoding.d.ts +38 -0
  61. package/dist/mesh/encoding.js +216 -0
  62. package/dist/mesh/encoding.js.map +1 -0
  63. package/dist/mesh/self_revoke.d.ts +73 -0
  64. package/dist/mesh/self_revoke.js +401 -0
  65. package/dist/mesh/self_revoke.js.map +1 -0
  66. package/dist/mesh/siblings.d.ts +49 -0
  67. package/dist/mesh/siblings.js +159 -0
  68. package/dist/mesh/siblings.js.map +1 -0
  69. package/dist/mesh/types.d.ts +34 -0
  70. package/dist/mesh/types.js +11 -0
  71. package/dist/mesh/types.js.map +1 -0
  72. package/dist/mesh/verify.d.ts +17 -0
  73. package/dist/mesh/verify.js +86 -0
  74. package/dist/mesh/verify.js.map +1 -0
  75. package/dist/pairing/crypto.d.ts +8 -0
  76. package/dist/pairing/crypto.js +22 -0
  77. package/dist/pairing/crypto.js.map +1 -0
  78. package/dist/pairing/qr.d.ts +59 -0
  79. package/dist/pairing/qr.js +125 -0
  80. package/dist/pairing/qr.js.map +1 -0
  81. package/dist/pairing/storage.d.ts +120 -0
  82. package/dist/pairing/storage.js +604 -0
  83. package/dist/pairing/storage.js.map +1 -0
  84. package/dist/protocol/codec.d.ts +7 -0
  85. package/dist/protocol/codec.js +53 -0
  86. package/dist/protocol/codec.js.map +1 -0
  87. package/dist/protocol/types.d.ts +432 -0
  88. package/dist/protocol/types.js +2 -0
  89. package/dist/protocol/types.js.map +1 -0
  90. package/dist/rooms.d.ts +29 -0
  91. package/dist/rooms.js +57 -0
  92. package/dist/rooms.js.map +1 -0
  93. package/dist/session/bridge.d.ts +37 -0
  94. package/dist/session/bridge.js +130 -0
  95. package/dist/session/bridge.js.map +1 -0
  96. package/dist/session/broker.d.ts +189 -0
  97. package/dist/session/broker.js +507 -0
  98. package/dist/session/broker.js.map +1 -0
  99. package/dist/session/broker_remote.d.ts +74 -0
  100. package/dist/session/broker_remote.js +583 -0
  101. package/dist/session/broker_remote.js.map +1 -0
  102. package/dist/session/cwd_lock.d.ts +33 -0
  103. package/dist/session/cwd_lock.js +126 -0
  104. package/dist/session/cwd_lock.js.map +1 -0
  105. package/dist/session/envelope.d.ts +33 -0
  106. package/dist/session/envelope.js +117 -0
  107. package/dist/session/envelope.js.map +1 -0
  108. package/dist/session/global_config.d.ts +33 -0
  109. package/dist/session/global_config.js +73 -0
  110. package/dist/session/global_config.js.map +1 -0
  111. package/dist/session/ipc.d.ts +27 -0
  112. package/dist/session/ipc.js +22 -0
  113. package/dist/session/ipc.js.map +1 -0
  114. package/dist/session/leader_election.d.ts +32 -0
  115. package/dist/session/leader_election.js +106 -0
  116. package/dist/session/leader_election.js.map +1 -0
  117. package/dist/session/local_config.d.ts +55 -0
  118. package/dist/session/local_config.js +157 -0
  119. package/dist/session/local_config.js.map +1 -0
  120. package/dist/session/mesh_node.d.ts +116 -0
  121. package/dist/session/mesh_node.js +573 -0
  122. package/dist/session/mesh_node.js.map +1 -0
  123. package/dist/session/peer.d.ts +139 -0
  124. package/dist/session/peer.js +451 -0
  125. package/dist/session/peer.js.map +1 -0
  126. package/dist/session/peer_inventory.d.ts +13 -0
  127. package/dist/session/peer_inventory.js +48 -0
  128. package/dist/session/peer_inventory.js.map +1 -0
  129. package/dist/session/peer_limits.d.ts +9 -0
  130. package/dist/session/peer_limits.js +21 -0
  131. package/dist/session/peer_limits.js.map +1 -0
  132. package/dist/session/setup_wizard.d.ts +39 -0
  133. package/dist/session/setup_wizard.js +63 -0
  134. package/dist/session/setup_wizard.js.map +1 -0
  135. package/dist/session/tools.d.ts +24 -0
  136. package/dist/session/tools.js +252 -0
  137. package/dist/session/tools.js.map +1 -0
  138. package/dist/session/wizard.d.ts +13 -0
  139. package/dist/session/wizard.js +20 -0
  140. package/dist/session/wizard.js.map +1 -0
  141. package/dist/transport/peer_channel.d.ts +37 -0
  142. package/dist/transport/peer_channel.js +98 -0
  143. package/dist/transport/peer_channel.js.map +1 -0
  144. package/dist/transport/pi_forward_client.d.ts +29 -0
  145. package/dist/transport/pi_forward_client.js +62 -0
  146. package/dist/transport/pi_forward_client.js.map +1 -0
  147. package/dist/transport/relay_client.d.ts +91 -0
  148. package/dist/transport/relay_client.js +206 -0
  149. package/dist/transport/relay_client.js.map +1 -0
  150. package/dist/ui/footer.d.ts +32 -0
  151. package/dist/ui/footer.js +34 -0
  152. package/dist/ui/footer.js.map +1 -0
  153. package/docs/daemon.md +289 -0
  154. package/package.json +90 -0
  155. package/service-templates/launchd.plist.template +35 -0
  156. package/service-templates/systemd.service.template +19 -0
  157. package/service-templates/task-launcher.vbs.template +10 -0
  158. package/service-templates/task-scheduler.xml.template +38 -0
  159. package/skills/agent-network/SKILL.md +310 -0
@@ -0,0 +1,341 @@
1
+ // Plan/57 — Bridge @eko24ive/pi-ask clarification flows to the paired app over
2
+ // the extension_ui_request/response contract.
3
+ //
4
+ // pi-ask (when installed) runs ask_user in the Pi TUI on the desktop AND emits
5
+ // a same-process event contract on `pi.events` (docs/remote-events.md):
6
+ //
7
+ // @eko24ive/pi-ask:started { flowId, toolCallId?, source, title?, questions[] }
8
+ // @eko24ive/pi-ask:submit { requestId, flowId, response } // we emit this
9
+ // @eko24ive/pi-ask:submit-result{ requestId, flowId, ok, error? } // pi-ask emits
10
+ // @eko24ive/pi-ask:completed { flowId, result }
11
+ //
12
+ // This module subscribes to those events and translates them into the SDK's
13
+ // extension_ui_request/response wire shapes (mirrored from
14
+ // `pi --mode rpc`'s RpcExtensionUIRequest/Response) so the mobile app renders
15
+ // ask_user natively. pi-ask's richer schema rides in an optional `ask` envelope.
16
+ //
17
+ // Inert when pi-ask is absent: no events fire, nothing breaks. ask_user without
18
+ // pi-ask doesn't exist, so this bridge is strictly opt-in.
19
+ const PI_ASK_STARTED = "@eko24ive/pi-ask:started";
20
+ const PI_ASK_COMPLETED = "@eko24ive/pi-ask:completed";
21
+ const PI_ASK_SUBMIT = "@eko24ive/pi-ask:submit";
22
+ const PI_ASK_SUBMIT_RESULT = "@eko24ive/pi-ask:submit-result";
23
+ /** Drop a flow from `activeFlows` if pi-ask never resolves it (e.g. a flow
24
+ * disposed on session_shutdown — pi-ask does not emit `completed` for those).
25
+ * Bounds memory; generous vs. a human answer time. */
26
+ const FLOW_TTL_MS = 10 * 60 * 1000;
27
+ /**
28
+ * Wire pi-ask's event contract to the relay's extension_ui_request/response
29
+ * frames. Returns `null` only if the SDK exposes no usable `events` bus (defensive
30
+ * — modern Pi always has one); callers stay null-safe.
31
+ */
32
+ export function createExtensionUiBridge(pi, broadcast) {
33
+ const eventsRaw = pi.events;
34
+ if (!eventsRaw ||
35
+ typeof eventsRaw.on !== "function" ||
36
+ typeof eventsRaw.emit !== "function") {
37
+ return null;
38
+ }
39
+ // Assign to a freshly-typed const so the narrowed (non-undefined) type is
40
+ // preserved inside nested closures below (TS re-widens the raw capture).
41
+ const events = eventsRaw;
42
+ // flowId → flow. Kept so a label-only (degraded) response can map back to the
43
+ // option value, and so completed/submit-result can be tolerated if they arrive
44
+ // after the app already answered.
45
+ const activeFlows = new Map();
46
+ // Per-flow TTL timers (FLOW_TTL_MS). pi-ask disposes flows on session_shutdown
47
+ // WITHOUT emitting `completed`, so without this the `activeFlows` map would
48
+ // leak one entry per abandoned flow. Bounded, defensive.
49
+ const flowTimers = new Map();
50
+ function clearFlowTtl(flowId) {
51
+ const t = flowTimers.get(flowId);
52
+ if (t !== undefined) {
53
+ clearTimeout(t);
54
+ flowTimers.delete(flowId);
55
+ }
56
+ }
57
+ function armFlowTtl(flowId) {
58
+ clearFlowTtl(flowId);
59
+ flowTimers.set(flowId, setTimeout(() => {
60
+ if (!activeFlows.delete(flowId))
61
+ return; // already resolved
62
+ flowTimers.delete(flowId);
63
+ // Tell the app the bridge forgot this flow instead of stranding its
64
+ // modal silently: a matching WARNING notify keeps the modal open with
65
+ // a retry hint. Rich clients can still retry (the response carries
66
+ // flow_id and pi-ask's flow may still be pending on the desktop);
67
+ // degraded clients at least get closure.
68
+ broadcast({
69
+ type: "extension_ui_request",
70
+ id: flowId,
71
+ method: "notify",
72
+ message: "Clarification expired on the bridge — retry or answer on desktop.",
73
+ notify_type: "warning",
74
+ });
75
+ }, FLOW_TTL_MS));
76
+ }
77
+ const unsubStarted = events.on(PI_ASK_STARTED, (raw) => {
78
+ const event = parseStartedEvent(raw);
79
+ if (!event)
80
+ return;
81
+ const flow = {
82
+ flowId: event.flowId,
83
+ toolCallId: event.toolCallId ?? null,
84
+ source: event.source ?? "tool",
85
+ title: event.title ?? null,
86
+ questions: event.questions,
87
+ };
88
+ activeFlows.set(flow.flowId, flow);
89
+ armFlowTtl(flow.flowId);
90
+ broadcast(requestForFlow(flow));
91
+ });
92
+ const unsubCompleted = events.on(PI_ASK_COMPLETED, (raw) => {
93
+ const e = raw;
94
+ if (!e || e.version !== 1 || typeof e.flowId !== "string")
95
+ return;
96
+ const flowId = e.flowId;
97
+ clearFlowTtl(flowId);
98
+ activeFlows.delete(flowId);
99
+ // Same id as the originating request (the flowId). The app treats a `notify`
100
+ // whose id matches an open interactive request as "that flow resolved —
101
+ // dismiss it". Covers the non-submitting owner in a multi-owner setup.
102
+ broadcast({
103
+ type: "extension_ui_request",
104
+ id: flowId,
105
+ method: "notify",
106
+ message: "Clarification resolved.",
107
+ });
108
+ });
109
+ // submit-result is per-request feedback. On error (invalid answer / flow
110
+ // gone) surface a warning so the submitting owner can retry. The notify reuses
111
+ // the flowId as its id (same as the originating request) so the app correlates
112
+ // it to its open modal; notify_type "warning" distinguishes it from the
113
+ // `completed` dismiss (same id, absent/other notify_type). Success is covered
114
+ // by `completed`, so ok is a no-op here.
115
+ const unsubResult = events.on(PI_ASK_SUBMIT_RESULT, (raw) => {
116
+ const e = raw;
117
+ if (!e || e.version !== 1 || e.ok === true)
118
+ return;
119
+ const message = typeof e.message === "string"
120
+ ? e.message
121
+ : typeof e.error === "string"
122
+ ? e.error
123
+ : "Clarification answer was not accepted.";
124
+ const flowId = typeof e.flowId === "string"
125
+ ? e.flowId
126
+ : activeFlows.size === 1
127
+ // Defensive: pi-ask always carries flowId. If it's ever absent, an
128
+ // unambiguous single active flow is a safe attribution; with zero or
129
+ // several, the warning is uncorrelatable and the app ignores
130
+ // unmatched notifies — drop it instead of broadcasting a random id
131
+ // no client can act on.
132
+ ? activeFlows.keys().next().value
133
+ : undefined;
134
+ if (!flowId)
135
+ return;
136
+ broadcast({
137
+ type: "extension_ui_request",
138
+ id: flowId,
139
+ method: "notify",
140
+ message,
141
+ notify_type: "warning",
142
+ });
143
+ });
144
+ function respond(msg) {
145
+ const ask = msg.ask;
146
+ // Explicit cancel — with or without the ask envelope. A strict client
147
+ // (no envelope) only carries the request id, which IS the flowId by this
148
+ // bridge's contract; confirm via activeFlows before trusting it.
149
+ if (("cancelled" in msg && msg.cancelled === true) ||
150
+ (ask !== undefined && ask.kind === "cancel")) {
151
+ const flowId = ask?.flow_id ?? (activeFlows.has(msg.id) ? msg.id : null);
152
+ if (!flowId)
153
+ return;
154
+ emitSubmit(msg.id, flowId, { kind: "cancel" });
155
+ return;
156
+ }
157
+ // Rich path: the ask envelope carries the structured answer (option values).
158
+ if (ask !== undefined && ask.kind === "answer") {
159
+ emitSubmit(msg.id, ask.flow_id, {
160
+ kind: "answer",
161
+ mode: ask.mode,
162
+ answers: ask.answers,
163
+ });
164
+ return;
165
+ }
166
+ // Degraded path: a response without the ask envelope (e.g. a generic client
167
+ // that rendered only the SDK `select`). Map the chosen label back to the
168
+ // option value for the flow's first question.
169
+ const flow = activeFlows.get(msg.id);
170
+ if (!flow || flow.questions.length === 0)
171
+ return;
172
+ const question = flow.questions[0];
173
+ if (!question)
174
+ return;
175
+ const label = "value" in msg ? String(msg.value) : "";
176
+ // NB: pi-ask's schema doesn't forbid duplicate labels — on a collision the
177
+ // first match wins. Inherent ambiguity of a label-only (degraded) client.
178
+ const match = question.options.find((o) => o.label === label);
179
+ const answers = {
180
+ [question.id]: match
181
+ ? { values: [match.value] }
182
+ : label
183
+ ? { customText: label }
184
+ : {},
185
+ };
186
+ emitSubmit(msg.id, flow.flowId, {
187
+ kind: "answer",
188
+ mode: "submit",
189
+ answers,
190
+ });
191
+ }
192
+ function emitSubmit(requestId, flowId, response) {
193
+ try {
194
+ events.emit(PI_ASK_SUBMIT, {
195
+ version: 1,
196
+ requestId,
197
+ flowId,
198
+ response,
199
+ });
200
+ }
201
+ catch {
202
+ // pi-ask not installed or bus gone — nothing useful to do; the flow will
203
+ // either resolve locally (desktop TUI) or time out on its own.
204
+ }
205
+ }
206
+ return {
207
+ respond,
208
+ // Insertion order = the order the flows opened, so a client replaying more
209
+ // than one renders them oldest-first. pi-ask resolves one flow at a time in
210
+ // practice, so this is a defensive detail rather than a live case.
211
+ pendingRequests: () => [...activeFlows.values()].map(requestForFlow),
212
+ dispose() {
213
+ unsubStarted();
214
+ unsubCompleted();
215
+ unsubResult();
216
+ for (const t of flowTimers.values())
217
+ clearTimeout(t);
218
+ flowTimers.clear();
219
+ activeFlows.clear();
220
+ },
221
+ };
222
+ }
223
+ /** Build the single extension_ui_request that represents a whole ask flow. */
224
+ function requestForFlow(flow) {
225
+ const first = flow.questions[0];
226
+ const title = flow.title ?? first?.prompt ?? "Clarification";
227
+ const options = first ? first.options.map((o) => o.label) : [];
228
+ const ask = {
229
+ flow_id: flow.flowId,
230
+ tool_call_id: flow.toolCallId,
231
+ source: flow.source,
232
+ title: flow.title,
233
+ questions: flow.questions,
234
+ };
235
+ // A pure-text question (pi-ask allows an empty options array) degrades to
236
+ // `input` — a strict client renders a text field instead of an empty select.
237
+ if (options.length === 0) {
238
+ return {
239
+ type: "extension_ui_request",
240
+ // One request per flow → reuse the flowId as the correlation id. The
241
+ // app's response carries the same id (and ask.flow_id) for routing.
242
+ id: flow.flowId,
243
+ method: "input",
244
+ title,
245
+ placeholder: first?.prompt,
246
+ ask,
247
+ };
248
+ }
249
+ return {
250
+ type: "extension_ui_request",
251
+ // One request per flow → reuse the flowId as the correlation id. The app's
252
+ // response carries the same id (and ask.flow_id) so the bridge can route.
253
+ id: flow.flowId,
254
+ method: "select",
255
+ title,
256
+ options,
257
+ ask,
258
+ };
259
+ }
260
+ function parseStartedEvent(raw) {
261
+ if (!isRecord(raw))
262
+ return null;
263
+ if (raw.version !== 1)
264
+ return null;
265
+ if (typeof raw.flowId !== "string")
266
+ return null;
267
+ if (!Array.isArray(raw.questions))
268
+ return null;
269
+ const questions = [];
270
+ for (const q of raw.questions) {
271
+ const parsed = parseQuestion(q);
272
+ if (!parsed)
273
+ return null;
274
+ questions.push(parsed);
275
+ }
276
+ if (questions.length === 0)
277
+ return null;
278
+ return {
279
+ flowId: raw.flowId,
280
+ toolCallId: asString(raw.toolCallId),
281
+ source: asString(raw.source),
282
+ title: asString(raw.title),
283
+ questions,
284
+ };
285
+ }
286
+ function parseQuestion(value) {
287
+ if (!isRecord(value))
288
+ return null;
289
+ if (typeof value.id !== "string" || typeof value.prompt !== "string")
290
+ return null;
291
+ if (!Array.isArray(value.options))
292
+ return null;
293
+ const options = [];
294
+ for (const o of value.options) {
295
+ const opt = parseOption(o);
296
+ if (!opt)
297
+ return null;
298
+ options.push(opt);
299
+ }
300
+ // Empty options is valid: pi-ask's schema has no minItems — a question can be
301
+ // pure text (custom answer only). The request degrades to `input` upstream.
302
+ return {
303
+ id: value.id,
304
+ label: typeof value.label === "string" ? value.label : value.prompt,
305
+ prompt: value.prompt,
306
+ type: asQuestionType(value.type) ?? "single",
307
+ required: value.required === true,
308
+ presentedType: asQuestionType(value.presentedType),
309
+ requestedType: asQuestionType(value.requestedType),
310
+ options,
311
+ };
312
+ }
313
+ function parseOption(value) {
314
+ if (!isRecord(value))
315
+ return null;
316
+ // pi-ask's schema marks value/label Optional on input, but a started event
317
+ // always carries resolved values. Be lenient: fall back label→value.
318
+ const val = typeof value.value === "string" ? value.value : asString(value.label);
319
+ const label = typeof value.label === "string" ? value.label : val;
320
+ if (!val || !label)
321
+ return null;
322
+ return {
323
+ value: val,
324
+ label,
325
+ description: asString(value.description),
326
+ preview: asString(value.preview),
327
+ freeform: value.freeform === true ? true : undefined,
328
+ };
329
+ }
330
+ function asQuestionType(value) {
331
+ return value === "single" || value === "multi" || value === "preview"
332
+ ? value
333
+ : undefined;
334
+ }
335
+ function asString(value) {
336
+ return typeof value === "string" && value.length > 0 ? value : undefined;
337
+ }
338
+ function isRecord(value) {
339
+ return !!value && typeof value === "object" && !Array.isArray(value);
340
+ }
341
+ //# sourceMappingURL=extension_ui_bridge.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extension_ui_bridge.js","sourceRoot":"","sources":["../src/extension_ui_bridge.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,213 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * pi-extension — remote-pi slash commands + AgentBridge wiring
4
+ *
5
+ * Exported as ExtensionFactory (default export) to be loaded by Pi SDK:
6
+ * pi -e $(pwd)/dist/index.js
7
+ *
8
+ * State machine: idle → started → paired
9
+ * /remote-pi start connects to relay (idle → started)
10
+ * /remote-pi pair shows QR for new peers (started, async → paired via auto-listener)
11
+ * /remote-pi stop closes everything (any → idle)
12
+ *
13
+ * Pairing (post plano 06 — sem Noise XX):
14
+ * App envia inner `pair_request` (id, token, device_name) sobre canal opaco.
15
+ * Pi valida o token via qrSession.consumeToken, salva peer em peers.json
16
+ * {name, remote_epk, paired_at} e responde com `pair_ok` (ou `pair_error`).
17
+ * `ct` é base64(JSON.stringify(inner)) — sem cifra, sem MAC.
18
+ *
19
+ * Reconexão de peer conhecido:
20
+ * Se uma mensagem chega em estado `started` vinda de um epk presente em
21
+ * peers.json, o auto-listener promove direto pra `paired` sem novo
22
+ * pair_request, criando o PlainPeerChannel e roteando a mensagem.
23
+ *
24
+ * Architecture note — why we don't use AgentBridge directly here:
25
+ * AgentBridge.beforeToolCallHook is designed to be passed to createAgentSession().
26
+ * Inside an extension Pi already owns the AgentSession, so we can't re-bind
27
+ * beforeToolCall after the fact. The equivalent is pi.on("tool_call", …) which
28
+ * fires BEFORE execution and supports { block: true }.
29
+ * AgentBridge (src/session/agent_bridge.ts) remains the tested, mockable unit
30
+ * for integration tests.
31
+ */
32
+ import type { ExtensionContext, ExtensionFactory } from "@earendil-works/pi-coding-agent";
33
+ import type { ClientMessage, SessionHistoryEvent } from "./protocol/types.js";
34
+ import { PlainPeerChannel } from "./transport/peer_channel.js";
35
+ export type RemoteState = "idle" | "started";
36
+ /** Relay connectivity as seen by an RPC client (Cockpit). Derived from
37
+ * `_state` + `_relay`: "disconnected" = relay off (idle); "connected" = live
38
+ * WS; "reconnecting" = was on, WS dropped, retrying. Surfaced via the
39
+ * `remote-pi:relay-state` custom message (see `_emitRelayState`). */
40
+ export type RelayConnectivity = "connected" | "reconnecting" | "disconnected";
41
+ /** Sentinel prefix for a transparent control message an RPC client sends on the
42
+ * `prompt` channel (stdin). The `input` hook intercepts it, runs the action,
43
+ * and swallows it (`action:"handled"`) so it never becomes an LLM turn or a
44
+ * transcript entry. Starts with NUL so it can't collide with real user input
45
+ * and doesn't begin with "/" (which would route to the command parser). */
46
+ export declare const CTRL_PREFIX = "\0remote-pi-ctrl:";
47
+ type BufferMsg = {
48
+ role: "user" | "assistant" | "toolResult" | string;
49
+ content?: unknown;
50
+ timestamp?: number;
51
+ toolCallId?: string;
52
+ toolName?: string;
53
+ isError?: boolean;
54
+ usage?: {
55
+ input?: number;
56
+ output?: number;
57
+ };
58
+ /** Plan/32: pre-compaction token count, set on the synthetic
59
+ * `role:"compaction"` marker pushed in `session_compact`. */
60
+ tokensBefore?: number;
61
+ };
62
+ type MeshEnvelope = {
63
+ id: string;
64
+ from: string;
65
+ re: string | null;
66
+ body: unknown;
67
+ };
68
+ /** Test-only override of the message buffer. */
69
+ /**
70
+ * Test-only: emulate what `/remote-pi` does on the returning-user path
71
+ * (join the local mesh, then start the relay) without touching the FS for
72
+ * a `localConfigExists()` lookup. Lets tests bring the relay up without
73
+ * mocking the wizard or the local config storage.
74
+ *
75
+ * Typed loosely to accept any ctx shape with `ui.notify` + `cwd` — the
76
+ * unit tests use minimal mocks that don't satisfy the full
77
+ * `ExtensionContext` interface.
78
+ */
79
+ export declare function _connectForTest(ctx: unknown): Promise<void>;
80
+ /** Test-only: tear everything down (mirrors `/remote-pi stop`). */
81
+ export declare function _stopForTest(ctx: unknown): Promise<void>;
82
+ /** Test-only: read/reset the `_disposed` flag. Production clears it only when
83
+ * a host reuses this module for a replacement session; tests share one module
84
+ * across cases, so they also reset it to avoid cross-test pollution. */
85
+ export declare function _getDisposedForTest(): boolean;
86
+ export declare function _setDisposedForTest(v: boolean): void;
87
+ /** Test-only: reset the once-per-session auto-init gate so session_start re-runs it. */
88
+ export declare function _resetAutoInitedForTest(): void;
89
+ /** Test-only: set the auto-init gate for lifecycle replacement tests. */
90
+ export declare function _setAutoInitedForTest(value: boolean): void;
91
+ /** Test-only: true when this instance holds a live local-mesh node. */
92
+ export declare function _hasMeshNodeForTest(): boolean;
93
+ /** Test-only: drive the current real SelfRevoke producer through one sweep. */
94
+ export declare function _checkSelfRevokeForTest(): Promise<void>;
95
+ /** Test-only: the effective (possibly `#N`-suffixed) name the cwd-lock reserved. */
96
+ export declare function _getLockedNameForTest(): string | null;
97
+ /** Test-only: release + clear the cwd lock (the lock normally survives stop). */
98
+ export declare function _resetCwdLockForTest(): void;
99
+ /**
100
+ * Test-only: relay-only startup, no UDS mesh join. Replaces the old
101
+ * `remote-pi relay start` handler that some tests captured to bring up
102
+ * the relay in isolation (e.g. ping/pong tests that don't care about the
103
+ * agent-network broker).
104
+ */
105
+ export declare function _startRelayForTest(ctx: unknown): Promise<void>;
106
+ /** Test-only: public marker for canceled-keypair cache regression checks. */
107
+ export declare function _getCachedPublicKeyForTest(): string | null;
108
+ export declare function _setMessageBufferForTest(msgs: unknown[]): void;
109
+ /** Test-only accessor: returns a defensive copy of the buffer. */
110
+ export declare function _getMessageBufferForTest(): unknown[];
111
+ /** Test-only override of session started timestamp. */
112
+ export declare function _setSessionStartedAtForTest(ts: number | null): void;
113
+ /** Test-only: reset the cached model name (between tests). */
114
+ export declare function _setCurrentModelForTest(name: string | undefined): void;
115
+ /** Test-only: read the active turn id used for plain `cancel` routing. */
116
+ export declare function _getCurrentTurnIdForTest(): string | null;
117
+ export declare function _getPendingSteerIdsForTest(text: string): string[];
118
+ /** Test-only: override the bound AgentSession so a spy can capture the
119
+ * content handed to `sendUserMessage` (plan/30 multimodal ingest). */
120
+ export declare function _setPiForTest(pi: unknown): void;
121
+ /** Test-only: exposes pending reconnect timer state. */
122
+ export declare function _hasPendingReconnect(): boolean;
123
+ /**
124
+ * Public state-snapshot helper. Returns the derived UX state, not the raw
125
+ * `_state` enum: the W2D refactor collapsed the internal machine to
126
+ * `idle | started` and made `paired` a derived metric
127
+ * (`_activePeers.size > 0`). Tests and the footer keep the three-state
128
+ * mental model via this getter.
129
+ */
130
+ export declare function _getState(): "idle" | "started" | "paired";
131
+ /** Test-only: number of owners currently attached via PlainPeerChannel. */
132
+ export declare function _getActivePeerCountForTest(): number;
133
+ /** Test-only: true if a specific peer (base64 std) has an attached channel. */
134
+ export declare function _hasActivePeerForTest(appPeerIdStd: string): boolean;
135
+ /**
136
+ * Handle a transparent control command from an RPC client (Cockpit), received
137
+ * as a `CTRL_PREFIX`-tagged input the `input` hook swallowed. Toggles the relay
138
+ * WITHOUT leaving the local mesh (relay-only: `_cmdStart` up / `_goIdle` down),
139
+ * then emits the fresh state. `relay:status` just re-emits (no change) so the
140
+ * client can sync its button after (re)attaching to the RPC stream.
141
+ */
142
+ export declare function _handleControl(cmd: string): Promise<void>;
143
+ /**
144
+ * Per-owner disconnect callback. Fires when one specific owner's channel
145
+ * detaches (e.g. relay told us the peer is gone). Other owners' channels
146
+ * keep running — relay stays "started".
147
+ *
148
+ * Exported so tests can trigger the disconnect path for a specific peer.
149
+ *
150
+ * Backward-compat: a no-arg call (legacy tests / pre-W2D callers) falls
151
+ * back to detaching the most recently attached peer, mirroring the old
152
+ * singleton semantics.
153
+ */
154
+ export declare function _onPeerDisconnect(appPeerId?: string): void;
155
+ declare const extension: ExtensionFactory;
156
+ export default extension;
157
+ /** Test-only entry point for verifying mesh-to-agent delivery semantics. */
158
+ export declare function _deliverMeshMessageToAgentForTest(env: MeshEnvelope): void;
159
+ export declare function _routeClientMessageFrom(sender: PlainPeerChannel, msg: ClientMessage, ctx: Pick<ExtensionContext, "abort">): void;
160
+ /**
161
+ * Backward-compatible shim for legacy callers + tests that didn't track
162
+ * a specific sender channel. Routes to the most recently attached owner,
163
+ * mirroring the pre-W2D singleton behavior.
164
+ */
165
+ export declare function routeClientMessage(msg: ClientMessage, ctx: Pick<ExtensionContext, "abort">): void;
166
+ /**
167
+ * Maps SDK AgentMessage[] (UserMessage / AssistantMessage / ToolResultMessage)
168
+ * into the flat SessionHistoryEvent[] shape consumed by the app.
169
+ *
170
+ * Caveats (see report): in_reply_to of agent_message is the *last* user_input
171
+ * id seen in a linear scan — fine for typical conversational flow but not
172
+ * a perfect reconstruction of multi-turn ordering when tools interleave.
173
+ * Stable id for user_input is `sync_<timestamp>`.
174
+ */
175
+ export declare function _mapAgentMessagesToEvents(messages: BufferMsg[]): SessionHistoryEvent[];
176
+ /**
177
+ * `remote-pi restart-supervisor` — restarts the `pi-supervisord` PROCESS
178
+ * (not the daemons). The supervisor is a long-running Node process with no
179
+ * hot-reload, so after a `dist` rebuild the old code keeps running until the
180
+ * process is restarted. The Cockpit "Restart supervisor" button shells out to
181
+ * this; the OS-specific restart lives here so the app stays cross-platform.
182
+ *
183
+ * Restarting the supervisor re-spawns every daemon as a side effect. Exits 0
184
+ * on success, non-zero on failure (the Cockpit detects failure by exit code).
185
+ */
186
+ /** One step of a restart sequence. `ignoreFailure` steps (e.g. `schtasks /End`
187
+ * when the task isn't running) don't abort the sequence. */
188
+ export interface RestartStep {
189
+ cmd: string;
190
+ args: string[];
191
+ ignoreFailure?: boolean;
192
+ }
193
+ /** Pure: the OS command sequence that restarts the supervisor service, or null
194
+ * when the platform isn't supported. Most platforms are 1 step; Windows is 2
195
+ * (`schtasks /End` then `/Run`). Exported for tests. */
196
+ export declare function _restartSupervisorCommand(platform: NodeJS.Platform, uid: number): RestartStep[] | null;
197
+ /**
198
+ * Read-only probe of the local UDS broker for the mesh roster, backing
199
+ * `remote-pi peers`. Opens a raw connection to `sockPath`, sends a single
200
+ * unregistered `list_peers` request, and resolves with the peer names from the
201
+ * broker's reply (local UDS peers + cross-PC `<pc>:<peer>` entries).
202
+ *
203
+ * The probe deliberately does NOT register as a peer: the broker answers
204
+ * observer probes without assigning a name or broadcasting peer_joined/left
205
+ * (see Broker._tryObserverProbe), so a shell query never perturbs the mesh —
206
+ * no phantom peer flashes in anyone's roster, local or cross-PC.
207
+ *
208
+ * Resolves null when no broker is reachable (connection refused / no socket
209
+ * file — i.e. no Pi or daemon is leading the mesh on this machine), or on
210
+ * timeout, so the caller can print an "offline" message instead of an empty
211
+ * roster.
212
+ */
213
+ export declare function probeListPeers(sockPath: string, timeoutMs?: number): Promise<string[] | null>;