@a-company/paradigm 3.43.0 → 3.44.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 (31) hide show
  1. package/dist/{chunk-YW5OCVKB.js → chunk-FKJUBQU3.js} +14 -1
  2. package/dist/{symphony-ROEKK7VD.js → chunk-SOBTKFSP.js} +48 -431
  3. package/dist/{chunk-RGFANZ4Q.js → chunk-ZDHLG5VP.js} +14 -1
  4. package/dist/{chunk-CZEIK3Y2.js → chunk-ZMQA6SCO.js} +1 -1
  5. package/dist/{chunk-7WEKMZ46.js → chunk-ZSYVKSY6.js} +1 -1
  6. package/dist/{commands-LEPFD7S5.js → commands-5N4ILTPH.js} +13 -0
  7. package/dist/{dist-RVKYUCRU.js → dist-CM3MVWWW.js} +1 -1
  8. package/dist/{dist-Y7I3CFY5.js → dist-POMVY6WP.js} +2 -2
  9. package/dist/{habits-O37HTUKE.js → habits-RG5SVKXP.js} +2 -2
  10. package/dist/index.js +47 -47
  11. package/dist/mcp.js +19 -9
  12. package/dist/{platform-server-KK4OCRTV.js → platform-server-KHL6ZPPN.js} +10 -1
  13. package/dist/{reindex-NZQRGKPN.js → reindex-WIJMCJ4A.js} +1 -1
  14. package/dist/{sentinel-BKYTBT7M.js → sentinel-UOIGJWHH.js} +1 -1
  15. package/dist/{sentinel-bridge-IZTXYS5M.js → sentinel-bridge-APDXYAZS.js} +1 -1
  16. package/dist/sentinel-mcp.js +13 -0
  17. package/dist/sentinel.js +6 -6
  18. package/dist/{serve-3V2WXLGM.js → serve-JVXSRSUB.js} +1 -1
  19. package/dist/{server-OFEJ2HJP.js → server-JV6UFGWZ.js} +1 -1
  20. package/dist/symphony-EYRGGVNE.js +470 -0
  21. package/dist/symphony-QWOEKZMC.js +308 -0
  22. package/dist/{triage-POXJ2TIX.js → triage-IZ4MDYNB.js} +2 -2
  23. package/package.json +1 -1
  24. package/platform-ui/dist/assets/{GitSection-DvyJBF_-.js → GitSection-BD3Ze06e.js} +1 -1
  25. package/platform-ui/dist/assets/{GraphSection-BiQrXqfs.js → GraphSection-SglITfSs.js} +1 -1
  26. package/platform-ui/dist/assets/{LoreSection-BaH1FaRb.js → LoreSection-bR5Km4Fd.js} +1 -1
  27. package/platform-ui/dist/assets/{SentinelSection-DemAznjI.js → SentinelSection-QSpAZArG.js} +1 -1
  28. package/platform-ui/dist/assets/SymphonySection-CobYJgvg.js +1 -0
  29. package/platform-ui/dist/assets/SymphonySection-zY0C5tFl.css +1 -0
  30. package/platform-ui/dist/assets/{index-DDKhCt-w.js → index-DbxeSMkV.js} +11 -11
  31. package/platform-ui/dist/index.html +1 -1
@@ -0,0 +1,470 @@
1
+ #!/usr/bin/env node
2
+ import {
3
+ acknowledgeMessages,
4
+ approveFileRequest,
5
+ buildMessage,
6
+ cleanStaleAgents,
7
+ createFileRequest,
8
+ createThread,
9
+ denyFileRequest,
10
+ discoverClaudeCodeSessions,
11
+ garbageCollect,
12
+ getMyIdentity,
13
+ getThreadMessages,
14
+ isAgentAsleep,
15
+ isPathDenied,
16
+ listAgents,
17
+ listFileRequests,
18
+ listThreads,
19
+ loadThread,
20
+ loadTrustConfig,
21
+ markAgentPollTime,
22
+ readInbox,
23
+ registerAgent,
24
+ resolveAgentIdentity,
25
+ resolveThread,
26
+ routeMessage,
27
+ unregisterAgent
28
+ } from "./chunk-SOBTKFSP.js";
29
+ import "./chunk-ZXMDA7VB.js";
30
+
31
+ // src/commands/symphony/index.ts
32
+ import chalk from "chalk";
33
+ import * as net from "net";
34
+ async function symphonyJoinCommand(options) {
35
+ const rootDir = process.cwd();
36
+ if (options.remote) {
37
+ console.log(chalk.yellow(`Remote linking to ${options.remote} \u2014 not yet implemented in Phase 0.`));
38
+ console.log(chalk.gray("Remote linking will be available in a future Symphony phase."));
39
+ return;
40
+ }
41
+ const identity = registerAgent(rootDir);
42
+ console.log(chalk.green(`\u2713 Joined as ${chalk.bold(identity.id)}`));
43
+ const sessions = discoverClaudeCodeSessions();
44
+ const others = sessions.filter((s) => s.id !== identity.id);
45
+ if (others.length > 0) {
46
+ console.log(chalk.cyan(`
47
+ Found ${others.length} other session${others.length !== 1 ? "s" : ""}:`));
48
+ for (const s of others) {
49
+ const status = isAgentAsleep(s) ? chalk.yellow("asleep") : chalk.green("awake");
50
+ console.log(` ${chalk.white(s.id)} \u2014 ${s.name} [${status}]`);
51
+ }
52
+ } else {
53
+ console.log(chalk.gray('\n No other sessions found. Open another terminal and run "paradigm symphony join".'));
54
+ }
55
+ console.log(chalk.gray(`
56
+ Tip: Set up polling with: /loop 10s paradigm_symphony_poll`));
57
+ }
58
+ async function symphonyLeaveCommand() {
59
+ const rootDir = process.cwd();
60
+ const agentId = resolveAgentIdentity(rootDir);
61
+ const success = unregisterAgent(agentId);
62
+ if (success) {
63
+ console.log(chalk.green(`\u2713 Left the score: ${agentId}`));
64
+ } else {
65
+ console.log(chalk.yellow(`No active part found for this project.`));
66
+ }
67
+ }
68
+ async function symphonyWhoamiCommand() {
69
+ const rootDir = process.cwd();
70
+ const identity = getMyIdentity(rootDir);
71
+ if (!identity) {
72
+ console.log(chalk.yellow('Not joined. Run "paradigm symphony join" first.'));
73
+ return;
74
+ }
75
+ const agents = listAgents();
76
+ const others = agents.filter((a) => a.id !== identity.id);
77
+ const threads = listThreads("active");
78
+ const unread = readInbox(identity.id);
79
+ console.log(chalk.cyan(`
80
+ ${chalk.bold(identity.id)}`));
81
+ console.log(chalk.gray(` Project: ${identity.project}`));
82
+ console.log(chalk.gray(` Role: ${identity.role}`));
83
+ console.log(chalk.gray(` PID: ${identity.pid}`));
84
+ console.log(chalk.gray(` Started: ${identity.startedAt}`));
85
+ if (identity.statusBlurb) {
86
+ console.log(chalk.white(` Status: ${identity.statusBlurb}`));
87
+ }
88
+ console.log(`
89
+ ${chalk.white(`${others.length} linked peer${others.length !== 1 ? "s" : ""}`)} \u2014 ${chalk.white(`${threads.length} active thread${threads.length !== 1 ? "s" : ""}`)} \u2014 ${chalk.white(`${unread.length} unread`)}`);
90
+ }
91
+ async function symphonyListCommand(options) {
92
+ cleanStaleAgents();
93
+ const agents = listAgents();
94
+ if (options.json) {
95
+ console.log(JSON.stringify(agents, null, 2));
96
+ return;
97
+ }
98
+ if (agents.length === 0) {
99
+ console.log(chalk.yellow('No agents joined. Run "paradigm symphony join" in each terminal.'));
100
+ return;
101
+ }
102
+ console.log(chalk.cyan(`
103
+ Symphony Agents (${agents.length})
104
+ `));
105
+ console.log(chalk.gray(` ${"AGENT ID".padEnd(30)} ${"PROJECT".padEnd(15)} ${"ROLE".padEnd(10)} STATUS`));
106
+ console.log(chalk.gray(` ${"\u2500".repeat(30)} ${"\u2500".repeat(15)} ${"\u2500".repeat(10)} ${"\u2500".repeat(8)}`));
107
+ for (const agent of agents) {
108
+ const status = isAgentAsleep(agent) ? chalk.yellow("asleep") : chalk.green("awake");
109
+ console.log(` ${chalk.white(agent.id.padEnd(30))} ${agent.project.padEnd(15)} ${agent.role.padEnd(10)} ${status}`);
110
+ if (agent.statusBlurb) {
111
+ console.log(` ${chalk.gray(` \u2514 ${agent.statusBlurb}`)}`);
112
+ }
113
+ }
114
+ console.log();
115
+ }
116
+ async function symphonySendCommand(messageText, options) {
117
+ const rootDir = process.cwd();
118
+ let identity = getMyIdentity(rootDir);
119
+ if (!identity) {
120
+ identity = registerAgent(rootDir);
121
+ console.log(chalk.gray(`Auto-joined as ${identity.id}`));
122
+ }
123
+ const sender = {
124
+ id: identity.id,
125
+ name: identity.name,
126
+ type: "human",
127
+ // CLI notes come from the human
128
+ project: identity.project,
129
+ role: identity.role
130
+ };
131
+ let recipients;
132
+ if (options.to) {
133
+ recipients = [{ id: options.to, name: options.to, type: "agent" }];
134
+ }
135
+ let threadRoot = options.thread;
136
+ if (!threadRoot) {
137
+ const topic = messageText.length > 60 ? messageText.slice(0, 60) + "..." : messageText;
138
+ const thread = createThread(topic, sender);
139
+ threadRoot = thread.id;
140
+ }
141
+ const message = buildMessage({
142
+ sender,
143
+ recipients,
144
+ intent: "context",
145
+ text: messageText,
146
+ threadRoot
147
+ });
148
+ const deliveryCount = routeMessage(message);
149
+ console.log(chalk.green(`\u2713 Sent to ${deliveryCount} agent${deliveryCount !== 1 ? "s" : ""}`));
150
+ console.log(chalk.gray(` Thread: ${threadRoot}`));
151
+ console.log(chalk.gray(` Note: ${message.id}`));
152
+ }
153
+ async function symphonyReadCommand() {
154
+ const rootDir = process.cwd();
155
+ const identity = getMyIdentity(rootDir);
156
+ if (!identity) {
157
+ console.log(chalk.yellow('Not joined. Run "paradigm symphony join" first.'));
158
+ return;
159
+ }
160
+ markAgentPollTime(identity.id);
161
+ const messages = readInbox(identity.id);
162
+ if (messages.length === 0) {
163
+ console.log(chalk.gray("\n No unread notes.\n"));
164
+ return;
165
+ }
166
+ const byThread = /* @__PURE__ */ new Map();
167
+ for (const msg of messages) {
168
+ const tid = msg.threadRoot || "direct";
169
+ if (!byThread.has(tid)) byThread.set(tid, []);
170
+ byThread.get(tid).push(msg);
171
+ }
172
+ console.log(chalk.cyan(`
173
+ ${messages.length} unread note${messages.length !== 1 ? "s" : ""}
174
+ `));
175
+ for (const [threadId, msgs] of byThread) {
176
+ let threadLabel = threadId;
177
+ if (threadId !== "direct") {
178
+ const thread = loadThread(threadId);
179
+ if (thread) threadLabel = `${thread.topic} (${threadId})`;
180
+ }
181
+ console.log(chalk.white(` \u250C\u2500 ${threadLabel}`));
182
+ for (let i = 0; i < msgs.length; i++) {
183
+ const msg = msgs[i];
184
+ const isLast = i === msgs.length - 1;
185
+ const prefix = isLast ? " \u2514\u2500" : " \u251C\u2500";
186
+ const time = new Date(msg.timestamp).toLocaleTimeString(void 0, { hour: "numeric", minute: "2-digit" });
187
+ console.log(`${prefix} ${chalk.cyan(msg.sender.name)} ${chalk.gray(`[${msg.intent}]`)} ${chalk.gray(time)}`);
188
+ const textLines = msg.content.text.split("\n");
189
+ const indent = isLast ? " " : " \u2502 ";
190
+ for (const line of textLines) {
191
+ console.log(`${indent}${line}`);
192
+ }
193
+ if (msg.symbols.length > 0) {
194
+ console.log(`${indent}${chalk.gray(`Symbols: ${msg.symbols.join(", ")}`)}`);
195
+ }
196
+ }
197
+ console.log();
198
+ }
199
+ const lastId = messages[messages.length - 1].id;
200
+ acknowledgeMessages(identity.id, lastId);
201
+ garbageCollect(identity.id);
202
+ }
203
+ async function symphonyThreadsCommand(options) {
204
+ const threads = listThreads();
205
+ if (options.json) {
206
+ console.log(JSON.stringify(threads, null, 2));
207
+ return;
208
+ }
209
+ if (threads.length === 0) {
210
+ console.log(chalk.gray("\n No threads.\n"));
211
+ return;
212
+ }
213
+ console.log(chalk.cyan(`
214
+ Threads (${threads.length})
215
+ `));
216
+ console.log(chalk.gray(` ${"ID".padEnd(14)} ${"TOPIC".padEnd(35)} ${"MSGS".padEnd(6)} ${"STATUS".padEnd(10)} LAST ACTIVITY`));
217
+ console.log(chalk.gray(` ${"\u2500".repeat(14)} ${"\u2500".repeat(35)} ${"\u2500".repeat(6)} ${"\u2500".repeat(10)} ${"\u2500".repeat(20)}`));
218
+ for (const thread of threads) {
219
+ const topic = thread.topic.length > 33 ? thread.topic.slice(0, 33) + ".." : thread.topic;
220
+ const status = thread.status === "active" ? chalk.green("active") : chalk.gray("resolved");
221
+ const lastAct = new Date(thread.lastActivity).toLocaleString(void 0, {
222
+ month: "short",
223
+ day: "numeric",
224
+ hour: "numeric",
225
+ minute: "2-digit"
226
+ });
227
+ console.log(` ${chalk.white(thread.id.padEnd(14))} ${topic.padEnd(35)} ${String(thread.messageCount).padEnd(6)} ${status.padEnd(10)} ${chalk.gray(lastAct)}`);
228
+ }
229
+ console.log();
230
+ }
231
+ async function symphonyThreadCommand(threadId) {
232
+ const thread = loadThread(threadId);
233
+ if (!thread) {
234
+ console.log(chalk.red(`Thread not found: ${threadId}`));
235
+ return;
236
+ }
237
+ const messages = getThreadMessages(threadId);
238
+ console.log(chalk.cyan(`
239
+ Thread: ${thread.topic}`));
240
+ console.log(chalk.gray(` ID: ${thread.id} | Status: ${thread.status} | Notes: ${thread.messageCount}`));
241
+ console.log(chalk.gray(` Participants: ${thread.participants.map((p) => p.name).join(", ")}`));
242
+ if (thread.decision) {
243
+ console.log(chalk.green(` Decision: ${thread.decision}`));
244
+ }
245
+ console.log(chalk.gray(`
246
+ ${"\u2500".repeat(60)}
247
+ `));
248
+ for (const msg of messages) {
249
+ const time = new Date(msg.timestamp).toLocaleString(void 0, {
250
+ month: "short",
251
+ day: "numeric",
252
+ hour: "numeric",
253
+ minute: "2-digit"
254
+ });
255
+ console.log(` ${chalk.cyan(msg.sender.name)} ${chalk.gray(`[${msg.intent}]`)} ${chalk.gray(time)}`);
256
+ const textLines = msg.content.text.split("\n");
257
+ for (const line of textLines) {
258
+ console.log(` ${line}`);
259
+ }
260
+ if (msg.symbols.length > 0) {
261
+ console.log(` ${chalk.gray(`Symbols: ${msg.symbols.join(", ")}`)}`);
262
+ }
263
+ if (msg.content.decision) {
264
+ console.log(` ${chalk.green(`Decision: ${msg.content.decision}`)}`);
265
+ }
266
+ console.log();
267
+ }
268
+ }
269
+ async function symphonyResolveCommand(threadId, options) {
270
+ const thread = loadThread(threadId);
271
+ if (!thread) {
272
+ console.log(chalk.red(`Thread not found: ${threadId}`));
273
+ return;
274
+ }
275
+ const success = resolveThread(threadId, options.decision);
276
+ if (success) {
277
+ console.log(chalk.green(`\u2713 Thread resolved: ${thread.topic}`));
278
+ if (options.decision) {
279
+ console.log(chalk.gray(` Decision: ${options.decision}`));
280
+ }
281
+ console.log(chalk.gray(` Tip: Record this as lore with "paradigm lore record --title 'Thread: ${thread.topic}'"`));
282
+ } else {
283
+ console.log(chalk.red("Failed to resolve thread."));
284
+ }
285
+ }
286
+ async function symphonyStatusCommand(options) {
287
+ cleanStaleAgents();
288
+ const rootDir = process.cwd();
289
+ const identity = getMyIdentity(rootDir);
290
+ const agents = listAgents();
291
+ const threads = listThreads("active");
292
+ const pendingRequests = listFileRequests("pending");
293
+ const unread = identity ? readInbox(identity.id) : [];
294
+ if (options.json) {
295
+ console.log(JSON.stringify({
296
+ identity: identity ? { id: identity.id, project: identity.project, role: identity.role } : null,
297
+ agents: agents.map((a) => ({ id: a.id, status: isAgentAsleep(a) ? "asleep" : "awake", statusBlurb: a.statusBlurb })),
298
+ activeThreads: threads.length,
299
+ unreadMessages: unread.length,
300
+ pendingFileRequests: pendingRequests.length
301
+ }, null, 2));
302
+ return;
303
+ }
304
+ console.log(chalk.cyan("\n Symphony Status\n"));
305
+ if (identity) {
306
+ console.log(` ${chalk.white("Identity:")} ${identity.id}`);
307
+ } else {
308
+ console.log(` ${chalk.yellow("Not joined.")} Run "paradigm symphony join" to join.`);
309
+ }
310
+ const awake = agents.filter((a) => !isAgentAsleep(a)).length;
311
+ console.log(` ${chalk.white("Agents:")} ${agents.length} joined (${awake} awake)`);
312
+ for (const a of agents) {
313
+ const st = isAgentAsleep(a) ? chalk.yellow("asleep") : chalk.green("awake");
314
+ const blurb = a.statusBlurb ? chalk.gray(` \u2014 ${a.statusBlurb}`) : "";
315
+ console.log(` ${chalk.white(a.id)} [${st}]${blurb}`);
316
+ }
317
+ console.log(` ${chalk.white("Threads:")} ${threads.length} active`);
318
+ console.log(` ${chalk.white("Unread:")} ${unread.length} note${unread.length !== 1 ? "s" : ""}`);
319
+ console.log(` ${chalk.white("File Requests:")} ${pendingRequests.length} pending`);
320
+ console.log();
321
+ }
322
+ async function symphonyServeCommand(options) {
323
+ const port = parseInt(options.port || "3939", 10);
324
+ console.log(chalk.cyan(`
325
+ Starting Symphony TCP server on port ${port}...`));
326
+ console.log(chalk.gray(" Phase 0 stub \u2014 remote linking protocol not yet implemented.\n"));
327
+ const server = net.createServer((socket) => {
328
+ socket.write(JSON.stringify({ type: "hello", version: "0.1.0" }) + "\n");
329
+ socket.on("data", (data) => {
330
+ try {
331
+ const msg = JSON.parse(data.toString().trim());
332
+ socket.write(JSON.stringify({ type: "ack", received: msg.type }) + "\n");
333
+ } catch {
334
+ socket.write(JSON.stringify({ type: "error", message: "Invalid JSON" }) + "\n");
335
+ }
336
+ });
337
+ socket.on("error", () => {
338
+ });
339
+ });
340
+ server.listen(port, "0.0.0.0", () => {
341
+ console.log(chalk.green(` \u2713 Symphony server listening on 0.0.0.0:${port}`));
342
+ console.log(chalk.gray(` Connect from another machine: paradigm symphony join --remote <this-ip>:${port}`));
343
+ });
344
+ server.on("error", (err) => {
345
+ console.log(chalk.red(` Failed to start server: ${err.message}`));
346
+ });
347
+ await new Promise(() => {
348
+ });
349
+ }
350
+ async function symphonyRequestCommand(file, options) {
351
+ const rootDir = process.cwd();
352
+ let identity = getMyIdentity(rootDir);
353
+ if (!identity) {
354
+ identity = registerAgent(rootDir);
355
+ }
356
+ const from = options.from;
357
+ const reason = options.reason || "Needed for current task";
358
+ if (!from) {
359
+ console.log(chalk.red("--from is required. Specify which agent to request from."));
360
+ const agents = listAgents().filter((a) => a.id !== identity.id);
361
+ if (agents.length > 0) {
362
+ console.log(chalk.gray("\nAvailable agents:"));
363
+ for (const a of agents) {
364
+ console.log(chalk.gray(` ${a.id}`));
365
+ }
366
+ }
367
+ return;
368
+ }
369
+ const trust = loadTrustConfig();
370
+ if (isPathDenied(file, trust)) {
371
+ console.log(chalk.red(`\u2717 "${file}" is on the hard-deny list and cannot be requested.`));
372
+ return;
373
+ }
374
+ const record = createFileRequest({
375
+ filePath: file,
376
+ requester: {
377
+ id: identity.id,
378
+ name: identity.name,
379
+ type: "agent",
380
+ project: identity.project,
381
+ role: identity.role
382
+ },
383
+ reason
384
+ });
385
+ const msg = buildMessage({
386
+ sender: {
387
+ id: identity.id,
388
+ name: identity.name,
389
+ type: "agent",
390
+ project: identity.project,
391
+ role: identity.role
392
+ },
393
+ recipients: [{ id: from, name: from, type: "agent" }],
394
+ intent: "fileRequest",
395
+ text: `File request: ${file}
396
+ Reason: ${reason}`,
397
+ symbols: []
398
+ });
399
+ routeMessage(msg);
400
+ console.log(chalk.green(`\u2713 File request created: ${record.request.requestId}`));
401
+ console.log(chalk.gray(` File: ${file}`));
402
+ console.log(chalk.gray(` From: ${from}`));
403
+ console.log(chalk.gray(` Reason: ${reason}`));
404
+ console.log(chalk.gray(`
405
+ The owning agent's human must approve with:`));
406
+ console.log(chalk.white(` paradigm symphony approve ${record.request.requestId}`));
407
+ }
408
+ async function symphonyRequestsCommand() {
409
+ const requests = listFileRequests("pending");
410
+ if (requests.length === 0) {
411
+ console.log(chalk.gray("\n No pending file requests.\n"));
412
+ return;
413
+ }
414
+ console.log(chalk.cyan(`
415
+ Pending File Requests (${requests.length})
416
+ `));
417
+ for (const req of requests) {
418
+ const age = Date.now() - new Date(req.createdAt).getTime();
419
+ const ageMin = Math.round(age / 6e4);
420
+ console.log(` ${chalk.white(req.request.requestId)}`);
421
+ console.log(` File: ${req.request.filePath}`);
422
+ console.log(` From: ${req.request.requester.name} (${req.request.requester.id})`);
423
+ console.log(` Reason: ${req.request.reason}`);
424
+ console.log(chalk.gray(` ${ageMin}m ago`));
425
+ console.log(chalk.gray(` \u2192 paradigm symphony approve ${req.request.requestId}`));
426
+ console.log(chalk.gray(` \u2192 paradigm symphony deny ${req.request.requestId}`));
427
+ console.log();
428
+ }
429
+ }
430
+ async function symphonyApproveCommand(requestId, options) {
431
+ const rootDir = process.cwd();
432
+ const result = approveFileRequest(requestId, rootDir, options.redact);
433
+ if (!result.success) {
434
+ console.log(chalk.red(`\u2717 ${result.error}`));
435
+ return;
436
+ }
437
+ const label = options.redact ? "approved (redacted)" : "approved";
438
+ console.log(chalk.green(`\u2713 File request ${label}`));
439
+ console.log(chalk.gray(` File: ${result.delivery?.filePath}`));
440
+ console.log(chalk.gray(` Size: ${result.delivery?.size} bytes`));
441
+ console.log(chalk.gray(` SHA-256: ${result.delivery?.hash?.slice(0, 16)}...`));
442
+ }
443
+ async function symphonyDenyCommand(requestId, options) {
444
+ const success = denyFileRequest(requestId, options.reason);
445
+ if (success) {
446
+ console.log(chalk.green(`\u2713 File request denied: ${requestId}`));
447
+ if (options.reason) {
448
+ console.log(chalk.gray(` Reason: ${options.reason}`));
449
+ }
450
+ } else {
451
+ console.log(chalk.red(`\u2717 File request not found or already resolved: ${requestId}`));
452
+ }
453
+ }
454
+ export {
455
+ symphonyApproveCommand,
456
+ symphonyDenyCommand,
457
+ symphonyJoinCommand,
458
+ symphonyLeaveCommand,
459
+ symphonyListCommand,
460
+ symphonyReadCommand,
461
+ symphonyRequestCommand,
462
+ symphonyRequestsCommand,
463
+ symphonyResolveCommand,
464
+ symphonySendCommand,
465
+ symphonyServeCommand,
466
+ symphonyStatusCommand,
467
+ symphonyThreadCommand,
468
+ symphonyThreadsCommand,
469
+ symphonyWhoamiCommand
470
+ };