svamp-cli 0.2.256 → 0.2.257

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 (25) hide show
  1. package/bin/skills/artifact/SKILL.md +1 -1
  2. package/dist/{agentCommands-DfTICQUR.mjs → agentCommands-fCsOp7ko.mjs} +5 -5
  3. package/dist/{auth-CaFzUB-H.mjs → auth-BH6Awl3O.mjs} +1 -1
  4. package/dist/cli.mjs +61 -61
  5. package/dist/{commands-Dp4OLJ80.mjs → commands-B5veY89L.mjs} +1 -1
  6. package/dist/{commands-DPKRLSJZ.mjs → commands-B6BkPRui.mjs} +31 -15
  7. package/dist/{commands-CRvH25K7.mjs → commands-BCmpKBjg.mjs} +1 -1
  8. package/dist/{commands-MopZEqZ7.mjs → commands-BpNDUqvv.mjs} +6 -6
  9. package/dist/{commands-Cgi-GKQk.mjs → commands-BzF6GzdR.mjs} +1 -1
  10. package/dist/{commands-BrTyEX8u.mjs → commands-CE1PdEJJ.mjs} +1 -1
  11. package/dist/{commands-C6_ClNDg.mjs → commands-DNIxtTXe.mjs} +2 -2
  12. package/dist/{fleet-DT3LusNA.mjs → fleet-XYsLuf-3.mjs} +1 -1
  13. package/dist/{frpc--8kUn3Em.mjs → frpc-QESvQN-s.mjs} +1 -1
  14. package/dist/{headlessCli-DJIDtYga.mjs → headlessCli-DuCmcrAL.mjs} +2 -2
  15. package/dist/index.mjs +1 -1
  16. package/dist/{package-CBpvrZJs.mjs → package-BA3c2JLu.mjs} +1 -1
  17. package/dist/{rpc-BV_9jVwX.mjs → rpc-Bscxex4z.mjs} +1 -1
  18. package/dist/{rpc-DPlerDzK.mjs → rpc-DCeDG4c7.mjs} +1 -1
  19. package/dist/{run-19FUjQ96.mjs → run-BmOCcZRG.mjs} +1 -1
  20. package/dist/{run-BDX-RaEm.mjs → run-BtGnnEMI.mjs} +108 -84
  21. package/dist/{scheduler-CueRBYz_.mjs → scheduler-Dbqmnd_o.mjs} +1 -1
  22. package/dist/{serveCommands-DRP03-lg.mjs → serveCommands-DueTsJSe.mjs} +5 -5
  23. package/dist/{serveManager-CQGY6nFz.mjs → serveManager-BclzoPIb.mjs} +2 -2
  24. package/dist/{sideband-BQ4pkLIQ.mjs → sideband-C_ifGgde.mjs} +1 -1
  25. package/package.json +1 -1
@@ -492,7 +492,7 @@ No file needed. Auto-resize doesn't work for URL embeds — set `height` explici
492
492
 
493
493
  ## Anti-patterns
494
494
 
495
- - **Don't put HTML inline** — `<artifact>...HTML body...</artifact>` is not supported. Always use `src="./file.html"`.
495
+ - **Prefer files for anything substantial** — inline `<artifact>…HTML body…</artifact>` is supported (up to the 512 KB limit below), but reserve it for small self-contained widgets; anything iterated, large, or that references other files should use `src="./file.html"`.
496
496
  - **Don't fetch from non-CORS endpoints.** If you don't control the server, the iframe can't reach it. Pre-compute and embed.
497
497
  - **Don't omit `<!doctype html>`** in your HTML file. Quirks mode breaks CSS.
498
498
  - **Don't open multiple `<artifact>`s back-to-back** for content that could be one. One artifact = one file = one tag.
@@ -2,7 +2,7 @@ import { existsSync, readFileSync, mkdirSync, writeFileSync, renameSync } from '
2
2
  import { join, dirname } from 'node:path';
3
3
  import os from 'node:os';
4
4
  import { requireNotSandboxed } from './sandboxDetect-DNTcbgWD.mjs';
5
- import { k as shortId } from './run-BDX-RaEm.mjs';
5
+ import { k as shortId } from './run-BtGnnEMI.mjs';
6
6
  import 'os';
7
7
  import 'fs/promises';
8
8
  import 'fs';
@@ -97,7 +97,7 @@ async function sessionSetTitle(title) {
97
97
  }
98
98
  async function sessionSetProjectDescription(description) {
99
99
  const dir = process.cwd();
100
- const { projectName, writeProjectInfo, sanitizeDescription, projectInfoPath } = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.al; });
100
+ const { projectName, writeProjectInfo, sanitizeDescription, projectInfoPath } = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.al; });
101
101
  const desc = sanitizeDescription(description, 240);
102
102
  if (!desc) {
103
103
  console.error("Project description is empty.");
@@ -344,7 +344,7 @@ async function sessionBroadcast(action, args) {
344
344
  console.log(`Broadcast sent: ${action}`);
345
345
  }
346
346
  async function connectToMachineService() {
347
- const { connectAndGetMachine } = await import('./commands-BrTyEX8u.mjs');
347
+ const { connectAndGetMachine } = await import('./commands-CE1PdEJJ.mjs');
348
348
  return connectAndGetMachine();
349
349
  }
350
350
  function buildInboxMessage(args) {
@@ -422,7 +422,7 @@ async function inboxSend(targetSessionId, opts) {
422
422
  console.error("Message body is required.");
423
423
  process.exit(1);
424
424
  }
425
- const { connectAndResolveSession } = await import('./commands-BrTyEX8u.mjs');
425
+ const { connectAndResolveSession } = await import('./commands-CE1PdEJJ.mjs');
426
426
  let server;
427
427
  try {
428
428
  const { targetId, messageId } = await inboxSendCore(
@@ -476,7 +476,7 @@ async function inboxReply(messageId, body) {
476
476
  console.error("SVAMP_SESSION_ID not set. This command must be run inside a Svamp session.");
477
477
  process.exit(1);
478
478
  }
479
- const { connectAndResolveSession } = await import('./commands-BrTyEX8u.mjs');
479
+ const { connectAndResolveSession } = await import('./commands-CE1PdEJJ.mjs');
480
480
  const { server: localServer, machine: localMachine } = await connectToMachineService();
481
481
  let localDisconnected = false;
482
482
  const disconnectLocal = async () => {
@@ -1,4 +1,4 @@
1
- import { a1 as resolveModel } from './run-BDX-RaEm.mjs';
1
+ import { a1 as resolveModel } from './run-BtGnnEMI.mjs';
2
2
  import 'os';
3
3
  import 'fs/promises';
4
4
  import 'fs';
package/dist/cli.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import { e as clearStopMarker, f as stopMarkerExists, s as startDaemon, b as stopDaemon, d as daemonStatus } from './run-BDX-RaEm.mjs';
1
+ import { e as clearStopMarker, f as stopMarkerExists, s as startDaemon, b as stopDaemon, d as daemonStatus } from './run-BtGnnEMI.mjs';
2
2
  import { ensureSupervisorViaServiceManager, LAUNCHD_LABEL } from './serviceManager-hlOVxkhW.mjs';
3
3
  import 'os';
4
4
  import 'fs/promises';
@@ -35,7 +35,7 @@ const subcommand = args[0];
35
35
  let daemonSubcommand = args[1];
36
36
  async function main() {
37
37
  try {
38
- const { getLoadedConfig } = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.ar; });
38
+ const { getLoadedConfig } = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.ar; });
39
39
  getLoadedConfig();
40
40
  } catch {
41
41
  }
@@ -54,7 +54,7 @@ async function main() {
54
54
  }
55
55
  const whenIdle = args.includes("--when-idle");
56
56
  const force = args.includes("--force");
57
- const mod = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.at; });
57
+ const mod = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.at; });
58
58
  if (whenIdle && !force) {
59
59
  if (mod.isDaemonAlive()) {
60
60
  mod.writePendingRestart({ reason: "svamp daemon restart --when-idle" });
@@ -355,7 +355,7 @@ async function main() {
355
355
  console.error("svamp service: Service commands are not available in sandboxed sessions.");
356
356
  process.exit(1);
357
357
  }
358
- const { handleServiceCommand } = await import('./commands-MopZEqZ7.mjs');
358
+ const { handleServiceCommand } = await import('./commands-BpNDUqvv.mjs');
359
359
  await handleServiceCommand();
360
360
  } else if (subcommand === "serve") {
361
361
  const { isSandboxed: isSandboxedServe } = await import('./sandboxDetect-DNTcbgWD.mjs');
@@ -363,7 +363,7 @@ async function main() {
363
363
  console.error("svamp serve: Serve commands are not available in sandboxed sessions.");
364
364
  process.exit(1);
365
365
  }
366
- const { handleServeCommand } = await import('./serveCommands-DRP03-lg.mjs');
366
+ const { handleServeCommand } = await import('./serveCommands-DueTsJSe.mjs');
367
367
  await handleServeCommand();
368
368
  process.exit(0);
369
369
  } else if (subcommand === "process" || subcommand === "proc") {
@@ -372,7 +372,7 @@ async function main() {
372
372
  console.error("svamp process: Process commands are not available in sandboxed sessions.");
373
373
  process.exit(1);
374
374
  }
375
- const { processCommand } = await import('./commands-C6_ClNDg.mjs');
375
+ const { processCommand } = await import('./commands-DNIxtTXe.mjs');
376
376
  let machineId;
377
377
  const processArgs = args.slice(1);
378
378
  const mIdx = processArgs.findIndex((a) => a === "--machine" || a === "-m");
@@ -386,18 +386,18 @@ async function main() {
386
386
  }), machineId);
387
387
  process.exit(0);
388
388
  } else if (subcommand === "issue" || subcommand === "issues") {
389
- const { issueCommand } = await import('./commands-Cgi-GKQk.mjs');
389
+ const { issueCommand } = await import('./commands-BzF6GzdR.mjs');
390
390
  await issueCommand(args.slice(1));
391
391
  process.exit(0);
392
392
  } else if (subcommand === "workflow" || subcommand === "workflows") {
393
- const { workflowCommand } = await import('./commands-Dp4OLJ80.mjs');
393
+ const { workflowCommand } = await import('./commands-B5veY89L.mjs');
394
394
  await workflowCommand(args.slice(1));
395
395
  process.exit(0);
396
396
  } else if (subcommand === "wise-agent" || subcommand === "wise") {
397
397
  await handleWiseAgentCommand(args.slice(1));
398
398
  process.exit(0);
399
399
  } else if (subcommand === "feature" || subcommand === "crew") {
400
- const { crewCommand } = await import('./commands-DPKRLSJZ.mjs');
400
+ const { crewCommand } = await import('./commands-B6BkPRui.mjs');
401
401
  await crewCommand(args.slice(1));
402
402
  process.exit(0);
403
403
  } else if (subcommand === "--help" || subcommand === "-h") {
@@ -405,7 +405,7 @@ async function main() {
405
405
  } else if (!subcommand || subcommand === "start") {
406
406
  await handleInteractiveCommand();
407
407
  } else if (subcommand === "--version" || subcommand === "-v") {
408
- const pkg = await import('./package-CBpvrZJs.mjs').catch(() => ({ default: { version: "unknown" } }));
408
+ const pkg = await import('./package-BA3c2JLu.mjs').catch(() => ({ default: { version: "unknown" } }));
409
409
  console.log(`svamp version: ${pkg.default.version}`);
410
410
  } else {
411
411
  console.error(`Unknown command: ${subcommand}`);
@@ -414,7 +414,7 @@ async function main() {
414
414
  }
415
415
  }
416
416
  async function handleInteractiveCommand() {
417
- const { runInteractive } = await import('./run-19FUjQ96.mjs');
417
+ const { runInteractive } = await import('./run-BmOCcZRG.mjs');
418
418
  const interactiveArgs = subcommand === "start" ? args.slice(1) : args;
419
419
  let directory = process.cwd();
420
420
  let resumeSessionId;
@@ -459,7 +459,7 @@ async function handleAgentCommand() {
459
459
  return;
460
460
  }
461
461
  if (agentArgs[0] === "list") {
462
- const { KNOWN_ACP_AGENTS, KNOWN_MCP_AGENTS: KNOWN_MCP_AGENTS2 } = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.ao; });
462
+ const { KNOWN_ACP_AGENTS, KNOWN_MCP_AGENTS: KNOWN_MCP_AGENTS2 } = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.ao; });
463
463
  console.log("Known agents:");
464
464
  for (const [name, config2] of Object.entries(KNOWN_ACP_AGENTS)) {
465
465
  console.log(` ${name.padEnd(12)} ${config2.command} ${config2.args.join(" ")} (ACP)`);
@@ -471,7 +471,7 @@ async function handleAgentCommand() {
471
471
  console.log('Use "svamp agent -- <command> [args]" for a custom ACP agent.');
472
472
  return;
473
473
  }
474
- const { resolveAcpAgentConfig, KNOWN_MCP_AGENTS } = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.ao; });
474
+ const { resolveAcpAgentConfig, KNOWN_MCP_AGENTS } = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.ao; });
475
475
  let cwd = process.cwd();
476
476
  const filteredArgs = [];
477
477
  for (let i = 0; i < agentArgs.length; i++) {
@@ -495,12 +495,12 @@ async function handleAgentCommand() {
495
495
  console.log(`Starting ${config.agentName} agent in ${cwd}...`);
496
496
  let backend;
497
497
  if (KNOWN_MCP_AGENTS[config.agentName]) {
498
- const { CodexMcpBackend } = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.ap; });
498
+ const { CodexMcpBackend } = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.ap; });
499
499
  backend = new CodexMcpBackend({ cwd, log: logFn });
500
500
  } else {
501
- const { AcpBackend } = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.an; });
502
- const { GeminiTransport } = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.aq; });
503
- const { DefaultTransport } = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.am; });
501
+ const { AcpBackend } = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.an; });
502
+ const { GeminiTransport } = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.aq; });
503
+ const { DefaultTransport } = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.am; });
504
504
  const transportHandler = config.agentName === "gemini" ? new GeminiTransport() : new DefaultTransport(config.agentName);
505
505
  backend = new AcpBackend({
506
506
  agentName: config.agentName,
@@ -627,7 +627,7 @@ async function handleSessionCommand() {
627
627
  process.exit(1);
628
628
  }
629
629
  }
630
- const { sessionList, sessionWhoami, sessionSpawn, sessionArchive, sessionResume, sessionDelete, sessionInfo, sessionMessages, sessionAttach, sessionMachines, sessionSend, sessionWait, sessionShare, sessionLoopStart, sessionLoopCancel, sessionLoopStatus, sessionLoopExtend, sessionInboxSend, sessionInboxList, sessionInboxRead, sessionInboxReply, sessionInboxClear } = await import('./commands-BrTyEX8u.mjs');
630
+ const { sessionList, sessionWhoami, sessionSpawn, sessionArchive, sessionResume, sessionDelete, sessionInfo, sessionMessages, sessionAttach, sessionMachines, sessionSend, sessionWait, sessionShare, sessionLoopStart, sessionLoopCancel, sessionLoopStatus, sessionLoopExtend, sessionInboxSend, sessionInboxList, sessionInboxRead, sessionInboxReply, sessionInboxClear } = await import('./commands-CE1PdEJJ.mjs');
631
631
  const parseFlagStr = (flag, shortFlag) => {
632
632
  for (let i = 1; i < sessionArgs.length; i++) {
633
633
  if ((sessionArgs[i] === flag || shortFlag) && i + 1 < sessionArgs.length) {
@@ -695,7 +695,7 @@ async function handleSessionCommand() {
695
695
  allowDomain.push(sessionArgs[++i]);
696
696
  }
697
697
  }
698
- const { parseShareArg } = await import('./commands-BrTyEX8u.mjs');
698
+ const { parseShareArg } = await import('./commands-CE1PdEJJ.mjs');
699
699
  const shareEntries = share.map((s) => parseShareArg(s));
700
700
  await sessionSpawn(agent, dir, targetMachineId, {
701
701
  message,
@@ -785,7 +785,7 @@ async function handleSessionCommand() {
785
785
  console.error(" Rewinds history: rewrites the message + drops everything after it, then restarts Claude.");
786
786
  process.exit(1);
787
787
  }
788
- const { sessionEditMessage } = await import('./commands-BrTyEX8u.mjs');
788
+ const { sessionEditMessage } = await import('./commands-CE1PdEJJ.mjs');
789
789
  await sessionEditMessage(sessionArgs[1], sessionArgs[2], sessionArgs[3], targetMachineId);
790
790
  } else if (sessionSubcommand === "refine") {
791
791
  if (!sessionArgs[1] || !sessionArgs[2]) {
@@ -793,7 +793,7 @@ async function handleSessionCommand() {
793
793
  console.error(" Asks the agent to revise its latest reply in place (no extra round).");
794
794
  process.exit(1);
795
795
  }
796
- const { sessionRefineLastReply } = await import('./commands-BrTyEX8u.mjs');
796
+ const { sessionRefineLastReply } = await import('./commands-CE1PdEJJ.mjs');
797
797
  await sessionRefineLastReply(sessionArgs[1], sessionArgs[2], targetMachineId);
798
798
  } else if (sessionSubcommand === "undo-edit" || sessionSubcommand === "undo") {
799
799
  if (!sessionArgs[1]) {
@@ -801,7 +801,7 @@ async function handleSessionCommand() {
801
801
  console.error(" Reverts the most recent edit/refine, restoring the pre-edit history.");
802
802
  process.exit(1);
803
803
  }
804
- const { sessionUndoEdit } = await import('./commands-BrTyEX8u.mjs');
804
+ const { sessionUndoEdit } = await import('./commands-CE1PdEJJ.mjs');
805
805
  await sessionUndoEdit(sessionArgs[1], targetMachineId);
806
806
  } else if (sessionSubcommand === "query") {
807
807
  const dir = sessionArgs[1];
@@ -811,7 +811,7 @@ async function handleSessionCommand() {
811
811
  console.error(" Spawns a stateless Claude session in <directory>, sends <prompt>, prints the answer, then deletes the session.");
812
812
  process.exit(1);
813
813
  }
814
- const { sessionQuery } = await import('./commands-BrTyEX8u.mjs');
814
+ const { sessionQuery } = await import('./commands-CE1PdEJJ.mjs');
815
815
  await sessionQuery(dir, prompt, targetMachineId, {
816
816
  timeout: parseFlagInt("--timeout"),
817
817
  json: hasFlag("--json"),
@@ -844,7 +844,7 @@ async function handleSessionCommand() {
844
844
  console.error("Usage: svamp session approve <session-id> [request-id] [--json]");
845
845
  process.exit(1);
846
846
  }
847
- const { sessionApprove } = await import('./commands-BrTyEX8u.mjs');
847
+ const { sessionApprove } = await import('./commands-CE1PdEJJ.mjs');
848
848
  const approveReqId = sessionArgs[2] && !sessionArgs[2].startsWith("--") ? sessionArgs[2] : void 0;
849
849
  await sessionApprove(sessionArgs[1], approveReqId, targetMachineId, {
850
850
  json: hasFlag("--json")
@@ -854,7 +854,7 @@ async function handleSessionCommand() {
854
854
  console.error("Usage: svamp session deny <session-id> [request-id] [--json]");
855
855
  process.exit(1);
856
856
  }
857
- const { sessionDeny } = await import('./commands-BrTyEX8u.mjs');
857
+ const { sessionDeny } = await import('./commands-CE1PdEJJ.mjs');
858
858
  const denyReqId = sessionArgs[2] && !sessionArgs[2].startsWith("--") ? sessionArgs[2] : void 0;
859
859
  await sessionDeny(sessionArgs[1], denyReqId, targetMachineId, {
860
860
  json: hasFlag("--json")
@@ -906,7 +906,7 @@ async function handleSessionCommand() {
906
906
  console.error("Usage: svamp session set-title <title>");
907
907
  process.exit(1);
908
908
  }
909
- const { sessionSetTitle } = await import('./agentCommands-DfTICQUR.mjs');
909
+ const { sessionSetTitle } = await import('./agentCommands-fCsOp7ko.mjs');
910
910
  await sessionSetTitle(title);
911
911
  } else if (sessionSubcommand === "set-project-description" || sessionSubcommand === "set-project") {
912
912
  const desc = sessionArgs.slice(1).filter((a) => !a.startsWith("--")).join(" ");
@@ -914,7 +914,7 @@ async function handleSessionCommand() {
914
914
  console.error("Usage: svamp session set-project-description <text>");
915
915
  process.exit(1);
916
916
  }
917
- const { sessionSetProjectDescription } = await import('./agentCommands-DfTICQUR.mjs');
917
+ const { sessionSetProjectDescription } = await import('./agentCommands-fCsOp7ko.mjs');
918
918
  await sessionSetProjectDescription(desc);
919
919
  } else if (sessionSubcommand === "set-link") {
920
920
  const url = sessionArgs[1];
@@ -923,11 +923,11 @@ async function handleSessionCommand() {
923
923
  process.exit(1);
924
924
  }
925
925
  const label = sessionArgs[2] && !sessionArgs[2].startsWith("--") ? sessionArgs[2] : void 0;
926
- const { sessionSetLink } = await import('./agentCommands-DfTICQUR.mjs');
926
+ const { sessionSetLink } = await import('./agentCommands-fCsOp7ko.mjs');
927
927
  await sessionSetLink(url, label);
928
928
  } else if (sessionSubcommand === "link") {
929
929
  const op = sessionArgs[1];
930
- const lm = await import('./agentCommands-DfTICQUR.mjs');
930
+ const lm = await import('./agentCommands-fCsOp7ko.mjs');
931
931
  if (op === "add") {
932
932
  const url = sessionArgs[2];
933
933
  if (!url || url.startsWith("--")) {
@@ -962,7 +962,7 @@ async function handleSessionCommand() {
962
962
  process.exit(1);
963
963
  }
964
964
  const level = parseFlagStr("--level") || "info";
965
- const { sessionNotify } = await import('./agentCommands-DfTICQUR.mjs');
965
+ const { sessionNotify } = await import('./agentCommands-fCsOp7ko.mjs');
966
966
  await sessionNotify(message, level);
967
967
  } else if (sessionSubcommand === "broadcast") {
968
968
  const action = sessionArgs[1];
@@ -970,7 +970,7 @@ async function handleSessionCommand() {
970
970
  console.error("Usage: svamp session broadcast <action> [args...]\nActions: open-canvas <url> [label], close-canvas, toast <message>");
971
971
  process.exit(1);
972
972
  }
973
- const { sessionBroadcast } = await import('./agentCommands-DfTICQUR.mjs');
973
+ const { sessionBroadcast } = await import('./agentCommands-fCsOp7ko.mjs');
974
974
  await sessionBroadcast(action, sessionArgs.slice(2).filter((a) => !a.startsWith("--")));
975
975
  } else if (sessionSubcommand === "inbox") {
976
976
  const inboxSubcmd = sessionArgs[1];
@@ -981,7 +981,7 @@ async function handleSessionCommand() {
981
981
  process.exit(1);
982
982
  }
983
983
  if (agentSessionId) {
984
- const { inboxSend } = await import('./agentCommands-DfTICQUR.mjs');
984
+ const { inboxSend } = await import('./agentCommands-fCsOp7ko.mjs');
985
985
  await inboxSend(sessionArgs[2], {
986
986
  body: sessionArgs[3],
987
987
  subject: parseFlagStr("--subject"),
@@ -996,7 +996,7 @@ async function handleSessionCommand() {
996
996
  }
997
997
  } else if (inboxSubcmd === "list" || inboxSubcmd === "ls") {
998
998
  if (agentSessionId && !sessionArgs[2]) {
999
- const { inboxList } = await import('./agentCommands-DfTICQUR.mjs');
999
+ const { inboxList } = await import('./agentCommands-fCsOp7ko.mjs');
1000
1000
  await inboxList({
1001
1001
  unread: hasFlag("--unread"),
1002
1002
  limit: parseFlagInt("--limit"),
@@ -1018,7 +1018,7 @@ async function handleSessionCommand() {
1018
1018
  process.exit(1);
1019
1019
  }
1020
1020
  if (agentSessionId && !sessionArgs[3]) {
1021
- const { inboxList } = await import('./agentCommands-DfTICQUR.mjs');
1021
+ const { inboxList } = await import('./agentCommands-fCsOp7ko.mjs');
1022
1022
  await sessionInboxRead(agentSessionId, sessionArgs[2], targetMachineId);
1023
1023
  } else if (sessionArgs[3]) {
1024
1024
  await sessionInboxRead(sessionArgs[2], sessionArgs[3], targetMachineId);
@@ -1028,7 +1028,7 @@ async function handleSessionCommand() {
1028
1028
  }
1029
1029
  } else if (inboxSubcmd === "reply") {
1030
1030
  if (agentSessionId && sessionArgs[2] && sessionArgs[3] && !sessionArgs[4]) {
1031
- const { inboxReply } = await import('./agentCommands-DfTICQUR.mjs');
1031
+ const { inboxReply } = await import('./agentCommands-fCsOp7ko.mjs');
1032
1032
  await inboxReply(sessionArgs[2], sessionArgs[3]);
1033
1033
  } else if (sessionArgs[2] && sessionArgs[3] && sessionArgs[4]) {
1034
1034
  await sessionInboxReply(sessionArgs[2], sessionArgs[3], sessionArgs[4], targetMachineId);
@@ -1066,7 +1066,7 @@ async function handleMachineCommand() {
1066
1066
  return;
1067
1067
  }
1068
1068
  if (machineSubcommand === "share") {
1069
- const { machineShare } = await import('./commands-BrTyEX8u.mjs');
1069
+ const { machineShare } = await import('./commands-CE1PdEJJ.mjs');
1070
1070
  let machineId;
1071
1071
  const shareArgs = [];
1072
1072
  for (let i = 1; i < machineArgs.length; i++) {
@@ -1117,14 +1117,14 @@ async function handleMachineCommand() {
1117
1117
  process.exit(1);
1118
1118
  }
1119
1119
  if (all) {
1120
- const { fleetExec } = await import('./fleet-DT3LusNA.mjs');
1120
+ const { fleetExec } = await import('./fleet-XYsLuf-3.mjs');
1121
1121
  await fleetExec(command, { cwd });
1122
1122
  } else {
1123
- const { machineExec } = await import('./commands-BrTyEX8u.mjs');
1123
+ const { machineExec } = await import('./commands-CE1PdEJJ.mjs');
1124
1124
  await machineExec(machineId, command, cwd);
1125
1125
  }
1126
1126
  } else if (machineSubcommand === "info") {
1127
- const { machineInfo } = await import('./commands-BrTyEX8u.mjs');
1127
+ const { machineInfo } = await import('./commands-CE1PdEJJ.mjs');
1128
1128
  let machineId;
1129
1129
  for (let i = 1; i < machineArgs.length; i++) {
1130
1130
  if ((machineArgs[i] === "--machine" || machineArgs[i] === "-m") && i + 1 < machineArgs.length) {
@@ -1144,10 +1144,10 @@ async function handleMachineCommand() {
1144
1144
  level = machineArgs[++i];
1145
1145
  }
1146
1146
  }
1147
- const { machineNotify } = await import('./agentCommands-DfTICQUR.mjs');
1147
+ const { machineNotify } = await import('./agentCommands-fCsOp7ko.mjs');
1148
1148
  await machineNotify(message, level);
1149
1149
  } else if (machineSubcommand === "ls") {
1150
- const { machineLs } = await import('./commands-BrTyEX8u.mjs');
1150
+ const { machineLs } = await import('./commands-CE1PdEJJ.mjs');
1151
1151
  let machineId;
1152
1152
  let showHidden = false;
1153
1153
  let path;
@@ -1206,20 +1206,20 @@ Examples:
1206
1206
  };
1207
1207
  const hasFlag = (name) => fleetArgs.includes(`--${name}`);
1208
1208
  if (sub === "status") {
1209
- const { fleetStatus } = await import('./fleet-DT3LusNA.mjs');
1209
+ const { fleetStatus } = await import('./fleet-XYsLuf-3.mjs');
1210
1210
  await fleetStatus();
1211
1211
  } else if (sub === "upgrade-claude") {
1212
- const { fleetUpgradeClaude } = await import('./fleet-DT3LusNA.mjs');
1212
+ const { fleetUpgradeClaude } = await import('./fleet-XYsLuf-3.mjs');
1213
1213
  await fleetUpgradeClaude({ version: flag("version", "-v") });
1214
1214
  } else if (sub === "upgrade-svamp") {
1215
- const { fleetUpgradeSvamp } = await import('./fleet-DT3LusNA.mjs');
1215
+ const { fleetUpgradeSvamp } = await import('./fleet-XYsLuf-3.mjs');
1216
1216
  await fleetUpgradeSvamp({ version: flag("version", "-v"), excludeSelf: hasFlag("exclude-self"), force: hasFlag("force") });
1217
1217
  } else if (sub === "daemon-restart") {
1218
- const { fleetDaemonRestart } = await import('./fleet-DT3LusNA.mjs');
1218
+ const { fleetDaemonRestart } = await import('./fleet-XYsLuf-3.mjs');
1219
1219
  await fleetDaemonRestart({ graceful: !hasFlag("cleanup") });
1220
1220
  } else if (sub === "push-skill") {
1221
1221
  const name = fleetArgs[1];
1222
- const { fleetPushSkill } = await import('./fleet-DT3LusNA.mjs');
1222
+ const { fleetPushSkill } = await import('./fleet-XYsLuf-3.mjs');
1223
1223
  await fleetPushSkill(name);
1224
1224
  } else {
1225
1225
  console.error(`Unknown fleet subcommand: ${sub}`);
@@ -1235,7 +1235,7 @@ async function handleSkillsCommand() {
1235
1235
  await printSkillsHelp();
1236
1236
  return;
1237
1237
  }
1238
- const { skillsFind, skillsInstall, skillsList, skillsRemove, skillsPublish } = await import('./commands-CRvH25K7.mjs');
1238
+ const { skillsFind, skillsInstall, skillsList, skillsRemove, skillsPublish } = await import('./commands-BCmpKBjg.mjs');
1239
1239
  if (skillsSubcommand === "find" || skillsSubcommand === "search") {
1240
1240
  const query = skillsArgs.slice(1).filter((a) => !a.startsWith("--")).join(" ");
1241
1241
  if (!query) {
@@ -1282,7 +1282,7 @@ async function loginToHypha() {
1282
1282
  process.exit(1);
1283
1283
  }
1284
1284
  const anchor = anchorArg.replace(/\/+$/, "");
1285
- const { loadInstanceConfig } = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.ar; });
1285
+ const { loadInstanceConfig } = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.ar; });
1286
1286
  let cfg = null;
1287
1287
  try {
1288
1288
  cfg = await loadInstanceConfig({ anchor, force: true });
@@ -1393,7 +1393,7 @@ async function logoutFromHypha() {
1393
1393
  } catch {
1394
1394
  }
1395
1395
  try {
1396
- const { clearInstanceConfigCache } = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.ar; });
1396
+ const { clearInstanceConfigCache } = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.ar; });
1397
1397
  clearInstanceConfigCache();
1398
1398
  } catch {
1399
1399
  }
@@ -1732,7 +1732,7 @@ async function applyClaudeAuthFlags(argv) {
1732
1732
  "--use-hypha-proxy, --use-claude-login, and --anthropic-base-url/--anthropic-api-key are mutually exclusive"
1733
1733
  );
1734
1734
  }
1735
- const mod = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.ak; });
1735
+ const mod = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.ak; });
1736
1736
  if (hasHypha) {
1737
1737
  let url;
1738
1738
  const hyphaIdx = argv.indexOf("--use-hypha-proxy");
@@ -1786,7 +1786,7 @@ async function applyDaemonShareFlag(argv) {
1786
1786
  }
1787
1787
  }
1788
1788
  if (collected.length === 0) return;
1789
- const { updateEnvFile } = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.ak; });
1789
+ const { updateEnvFile } = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.ak; });
1790
1790
  const seen = /* @__PURE__ */ new Set();
1791
1791
  const deduped = collected.filter((e) => {
1792
1792
  const k = e.toLowerCase();
@@ -1819,7 +1819,7 @@ async function handleWiseAgentCommand(rest) {
1819
1819
  }
1820
1820
  });
1821
1821
  const message = rest.slice(1).map((a, idx) => ({ a, idx: idx + 1 })).filter(({ a, idx }) => !a.startsWith("-") && !consumed.has(String(idx))).map(({ a }) => a).join(" ");
1822
- const { wiseAskCli } = await import('./commands-BrTyEX8u.mjs');
1822
+ const { wiseAskCli } = await import('./commands-CE1PdEJJ.mjs');
1823
1823
  await wiseAskCli(machineId, message, sessionId, { json });
1824
1824
  return;
1825
1825
  }
@@ -1831,7 +1831,7 @@ async function handleWiseAgentCommand(rest) {
1831
1831
  }
1832
1832
  return void 0;
1833
1833
  };
1834
- const { runWiseVoiceCli } = await import('./headlessCli-DJIDtYga.mjs');
1834
+ const { runWiseVoiceCli } = await import('./headlessCli-DuCmcrAL.mjs');
1835
1835
  await runWiseVoiceCli({ voice: valueOf(["--voice"]), wakeKeywordPath: valueOf(["--wake"]), model: valueOf(["--model"]) });
1836
1836
  return;
1837
1837
  }
@@ -1849,7 +1849,7 @@ async function handleWiseAgentCommand(rest) {
1849
1849
  const mode = valueOf(["--mode"]);
1850
1850
  const mission = valueOf(["--mission"]);
1851
1851
  const url = rest.slice(1).find((a) => /^https?:\/\//.test(a)) || "";
1852
- const { wiseJoinMeetingCli } = await import('./commands-BrTyEX8u.mjs');
1852
+ const { wiseJoinMeetingCli } = await import('./commands-CE1PdEJJ.mjs');
1853
1853
  await wiseJoinMeetingCli(machineId, url, sessionId, { json, mode, mission });
1854
1854
  return;
1855
1855
  }
@@ -1861,7 +1861,7 @@ async function handleWiseAgentCommand(rest) {
1861
1861
  }
1862
1862
  return void 0;
1863
1863
  };
1864
- const { wiseLeaveMeetingCli } = await import('./commands-BrTyEX8u.mjs');
1864
+ const { wiseLeaveMeetingCli } = await import('./commands-CE1PdEJJ.mjs');
1865
1865
  await wiseLeaveMeetingCli(valueOf(["--machine", "-m"]), valueOf(["--session", "-s"]), { json: rest.includes("--json") });
1866
1866
  return;
1867
1867
  }
@@ -1885,7 +1885,7 @@ async function handleWiseAgentCommand(rest) {
1885
1885
  }
1886
1886
  });
1887
1887
  const text = rest.slice(1).map((a, idx) => ({ a, idx: idx + 1 })).filter(({ a, idx }) => !a.startsWith("-") && !consumed.has(String(idx))).map(({ a }) => a).join(" ");
1888
- const { wiseAnnounceCli } = await import('./commands-BrTyEX8u.mjs');
1888
+ const { wiseAnnounceCli } = await import('./commands-CE1PdEJJ.mjs');
1889
1889
  await wiseAnnounceCli(machineId, text, sessionId, { json });
1890
1890
  return;
1891
1891
  }
@@ -1897,7 +1897,7 @@ async function handleWiseAgentCommand(rest) {
1897
1897
  }
1898
1898
  return void 0;
1899
1899
  };
1900
- const { wiseMeetingsCli } = await import('./commands-BrTyEX8u.mjs');
1900
+ const { wiseMeetingsCli } = await import('./commands-CE1PdEJJ.mjs');
1901
1901
  await wiseMeetingsCli(valueOf(["--machine", "-m"]), { json: rest.includes("--json") });
1902
1902
  return;
1903
1903
  }
@@ -1947,7 +1947,7 @@ If none is set, hitting a WISE Agent channel returns a clear "not configured" er
1947
1947
  return;
1948
1948
  }
1949
1949
  const authArgs = rest.slice(1);
1950
- const mod = await import('./auth-CaFzUB-H.mjs');
1950
+ const mod = await import('./auth-BH6Awl3O.mjs');
1951
1951
  let action;
1952
1952
  try {
1953
1953
  action = mod.parseWiseAgentAuthArgs(authArgs);
@@ -1957,7 +1957,7 @@ If none is set, hitting a WISE Agent channel returns a clear "not configured" er
1957
1957
  return;
1958
1958
  }
1959
1959
  if (action) {
1960
- const { updateEnvFile } = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.ak; });
1960
+ const { updateEnvFile } = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.ak; });
1961
1961
  const updates = mod.buildWiseAgentEnvUpdates(action);
1962
1962
  updateEnvFile(updates);
1963
1963
  for (const [k, v] of Object.entries(updates)) {
@@ -1971,7 +1971,7 @@ If none is set, hitting a WISE Agent channel returns a clear "not configured" er
1971
1971
  }
1972
1972
  async function handleDaemonAuthCommand(argv) {
1973
1973
  const sub = (argv[0] || "status").toLowerCase();
1974
- const mod = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.ak; });
1974
+ const mod = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.ak; });
1975
1975
  if (sub === "--help" || sub === "-h" || sub === "help") {
1976
1976
  console.log(`
1977
1977
  svamp daemon auth \u2014 Configure how Claude subprocesses authenticate
@@ -2291,7 +2291,7 @@ Examples:
2291
2291
  async function printSkillsHelp() {
2292
2292
  let browseUrl = "<HYPHA_SERVER_URL>/<workspace>/artifacts/marketplace (set HYPHA_SERVER_URL)";
2293
2293
  try {
2294
- const { getArtifactBaseUrl, getSkillsCollectionName } = await import('./run-BDX-RaEm.mjs').then(function (n) { return n.as; });
2294
+ const { getArtifactBaseUrl, getSkillsCollectionName } = await import('./run-BtGnnEMI.mjs').then(function (n) { return n.as; });
2295
2295
  browseUrl = `${getArtifactBaseUrl()}/${getSkillsCollectionName()}`;
2296
2296
  } catch {
2297
2297
  }
@@ -1,5 +1,5 @@
1
1
  import { spawnSync } from 'node:child_process';
2
- import { n as resolveProjectRoot, M as workflowSteps, D as setWorkflowEnabled, I as isWorkflowEnabled, E as removeWorkflow, B as getWorkflow, H as listWorkflows, F as saveWorkflow, G as rawWorkflow } from './run-BDX-RaEm.mjs';
2
+ import { n as resolveProjectRoot, M as workflowSteps, D as setWorkflowEnabled, I as isWorkflowEnabled, E as removeWorkflow, B as getWorkflow, H as listWorkflows, F as saveWorkflow, G as rawWorkflow } from './run-BtGnnEMI.mjs';
3
3
  import 'os';
4
4
  import 'fs/promises';
5
5
  import 'fs';
@@ -1,8 +1,8 @@
1
1
  import { existsSync } from 'node:fs';
2
2
  import { resolve } from 'node:path';
3
- import { connectAndGetMachine, resolveSessionId, createWorktree, connectAndResolveSession } from './commands-BrTyEX8u.mjs';
3
+ import { connectAndGetMachine, resolveSessionId, createWorktree, connectAndResolveSession } from './commands-CE1PdEJJ.mjs';
4
4
  import { execSync } from 'node:child_process';
5
- import { u as updateIssue, t as addComment, v as addIssue, k as shortId } from './run-BDX-RaEm.mjs';
5
+ import { u as updateIssue, t as addComment, v as addIssue, k as shortId } from './run-BtGnnEMI.mjs';
6
6
  import 'node:os';
7
7
  import 'os';
8
8
  import 'fs/promises';
@@ -169,6 +169,9 @@ function removeWorktree(worktreePath) {
169
169
  }
170
170
  }
171
171
  }
172
+ function resolveNotifyLead(leadId, childParentSessionId, childId) {
173
+ return leadId || childParentSessionId || childId;
174
+ }
172
175
 
173
176
  function isStandaloneChild(crew) {
174
177
  return !!crew && crew.standalone === true;
@@ -554,25 +557,24 @@ async function featureMerge(childPartial, opts = {}) {
554
557
  console.error("Could not determine the lead project root (base worktree).");
555
558
  process.exit(1);
556
559
  }
557
- if (leadId) {
558
- try {
559
- await inbox(
560
- machine,
561
- leadId,
562
- childId,
563
- `<crew-freeze>Your lead is merging branch ${branch} into ${base}. Stop editing files now; do not commit until told.</crew-freeze>`,
564
- "crew: freeze for merge"
565
- );
566
- } catch {
567
- }
560
+ const notifyLead = resolveNotifyLead(leadId, meta?.parentSessionId, childId);
561
+ try {
562
+ await inbox(
563
+ machine,
564
+ notifyLead,
565
+ childId,
566
+ `<crew-freeze>Your lead is merging branch ${branch} into ${base}. Stop editing files now; do not commit until told.</crew-freeze>`,
567
+ "crew: freeze for merge"
568
+ );
569
+ } catch {
568
570
  }
569
571
  const r = mergeBack({ projectRoot, branch, worktreePath, baseBranch: base, deleteBranch: opts.deleteBranch });
570
572
  if (!r.ok) {
571
- if (r.rework && leadId) {
573
+ if (r.rework) {
572
574
  try {
573
575
  await inbox(
574
576
  machine,
575
- leadId,
577
+ notifyLead,
576
578
  childId,
577
579
  `<crew-rework branch="${branch}">
578
580
  Merge was not applied: ${r.detail}
@@ -585,7 +587,21 @@ Resolve and run \`svamp feature done\` again.
585
587
  console.error(`Merge deferred (rework) at ${r.stage}: ${r.detail}`);
586
588
  console.error(`Child ${childId.slice(0, 8)} re-woken with guidance; left running.`);
587
589
  } else {
590
+ try {
591
+ await inbox(
592
+ machine,
593
+ notifyLead,
594
+ childId,
595
+ `<crew-blocked branch="${branch}">
596
+ Merge could not be applied (${r.stage}): ${r.detail}
597
+ Stop editing and hold \u2014 do not keep working. Once the blocker is resolved, the lead can retry \`svamp feature merge\`.
598
+ </crew-blocked>`,
599
+ "crew: merge blocked"
600
+ );
601
+ } catch {
602
+ }
588
603
  console.error(`Merge failed at ${r.stage}: ${r.detail}`);
604
+ console.error(`Child ${childId.slice(0, 8)} notified + left running (un-merged work preserved). Resolve the blocker, then retry \`svamp feature merge ${childId.slice(0, 8)}\`.`);
589
605
  }
590
606
  process.exit(1);
591
607
  }
@@ -1,7 +1,7 @@
1
1
  import os from 'os';
2
2
  import fs__default from 'fs';
3
3
  import { resolve, join, relative } from 'path';
4
- import { T as parseFrontmatter, U as getSkillsServer, V as getSkillsWorkspaceName, W as getSkillsCollectionName, X as fetchWithTimeout, Y as searchSkills, Z as SKILLS_DIR, _ as getSkillInfo, $ as downloadSkillFile, a0 as listSkillFiles } from './run-BDX-RaEm.mjs';
4
+ import { T as parseFrontmatter, U as getSkillsServer, V as getSkillsWorkspaceName, W as getSkillsCollectionName, X as fetchWithTimeout, Y as searchSkills, Z as SKILLS_DIR, _ as getSkillInfo, $ as downloadSkillFile, a0 as listSkillFiles } from './run-BtGnnEMI.mjs';
5
5
  import 'fs/promises';
6
6
  import 'url';
7
7
  import 'child_process';
@@ -58,7 +58,7 @@ async function serviceExpose(args) {
58
58
  process.exit(1);
59
59
  }
60
60
  if (foreground) {
61
- const { runFrpcTunnel } = await import('./frpc--8kUn3Em.mjs');
61
+ const { runFrpcTunnel } = await import('./frpc-QESvQN-s.mjs');
62
62
  await runFrpcTunnel(name, ports, void 0, {
63
63
  group,
64
64
  groupKey,
@@ -68,7 +68,7 @@ async function serviceExpose(args) {
68
68
  });
69
69
  return;
70
70
  }
71
- const { connectAndGetMachine } = await import('./commands-BrTyEX8u.mjs');
71
+ const { connectAndGetMachine } = await import('./commands-CE1PdEJJ.mjs');
72
72
  const { server, machine } = await connectAndGetMachine();
73
73
  try {
74
74
  const status = await machine.tunnelStart({
@@ -90,7 +90,7 @@ async function serviceExpose(args) {
90
90
  console.log(` port ${port}: ${url}`);
91
91
  }
92
92
  if (process.env.SVAMP_SESSION_ID) {
93
- const { autoAddSessionLink } = await import('./agentCommands-DfTICQUR.mjs');
93
+ const { autoAddSessionLink } = await import('./agentCommands-fCsOp7ko.mjs');
94
94
  let added = 0;
95
95
  for (const [port, url] of urlEntries) {
96
96
  const label = urlEntries.length > 1 ? `${name}:${port}` : name;
@@ -136,7 +136,7 @@ async function serviceServe(args) {
136
136
  };
137
137
  process.on("SIGINT", cleanup);
138
138
  process.on("SIGTERM", cleanup);
139
- const { runFrpcTunnel } = await import('./frpc--8kUn3Em.mjs');
139
+ const { runFrpcTunnel } = await import('./frpc-QESvQN-s.mjs');
140
140
  await runFrpcTunnel(name, [caddyPort]);
141
141
  } catch (err) {
142
142
  console.error(`Error serving directory: ${err.message}`);
@@ -145,7 +145,7 @@ async function serviceServe(args) {
145
145
  }
146
146
  async function serviceList(_args) {
147
147
  try {
148
- const { connectAndGetMachine } = await import('./commands-BrTyEX8u.mjs');
148
+ const { connectAndGetMachine } = await import('./commands-CE1PdEJJ.mjs');
149
149
  const { server, machine } = await connectAndGetMachine();
150
150
  try {
151
151
  const tunnels = await machine.tunnelList({});
@@ -185,7 +185,7 @@ async function serviceDelete(args) {
185
185
  process.exit(1);
186
186
  }
187
187
  try {
188
- const { connectAndGetMachine } = await import('./commands-BrTyEX8u.mjs');
188
+ const { connectAndGetMachine } = await import('./commands-CE1PdEJJ.mjs');
189
189
  const { server, machine } = await connectAndGetMachine();
190
190
  try {
191
191
  await machine.tunnelStop({ name });
@@ -1,7 +1,7 @@
1
1
  import { execSync } from 'node:child_process';
2
2
  import { existsSync, readFileSync } from 'node:fs';
3
3
  import { join } from 'node:path';
4
- import { n as resolveProjectRoot, x as searchIssues, w as listIssues, p as resumeIssue, q as pauseIssue, t as addComment, u as updateIssue, o as getIssue, y as isVisibleTo, L as summarize, v as addIssue } from './run-BDX-RaEm.mjs';
4
+ import { n as resolveProjectRoot, x as searchIssues, w as listIssues, p as resumeIssue, q as pauseIssue, t as addComment, u as updateIssue, o as getIssue, y as isVisibleTo, L as summarize, v as addIssue } from './run-BtGnnEMI.mjs';
5
5
  import 'os';
6
6
  import 'fs/promises';
7
7
  import 'fs';
@@ -2,7 +2,7 @@ import { existsSync, readFileSync, writeFileSync } from 'node:fs';
2
2
  import { execSync } from 'node:child_process';
3
3
  import { basename, resolve, join, isAbsolute } from 'node:path';
4
4
  import os from 'node:os';
5
- import { a2 as formatHandle, a3 as normalizeAllowedUser, a4 as loadSecurityContextConfig, a5 as resolveSecurityContext, a6 as buildSecurityContextFromFlags, a7 as mergeSecurityContexts, c as connectToHypha, a8 as buildSessionShareUrl, a9 as computeOutboundHop, k as shortId, aa as registerAwaitingReply, ab as buildMachineShareUrl, ac as parseHandle, ad as handleMatchesMetadata } from './run-BDX-RaEm.mjs';
5
+ import { a2 as formatHandle, a3 as normalizeAllowedUser, a4 as loadSecurityContextConfig, a5 as resolveSecurityContext, a6 as buildSecurityContextFromFlags, a7 as mergeSecurityContexts, c as connectToHypha, a8 as buildSessionShareUrl, a9 as computeOutboundHop, k as shortId, aa as registerAwaitingReply, ab as buildMachineShareUrl, ac as parseHandle, ad as handleMatchesMetadata } from './run-BtGnnEMI.mjs';
6
6
  import 'os';
7
7
  import 'fs/promises';
8
8
  import 'fs';
@@ -1,11 +1,11 @@
1
1
  import { writeFileSync, readFileSync } from 'fs';
2
2
  import { resolve } from 'path';
3
- import { connectAndGetMachine } from './commands-BrTyEX8u.mjs';
3
+ import { connectAndGetMachine } from './commands-CE1PdEJJ.mjs';
4
4
  import 'node:fs';
5
5
  import 'node:child_process';
6
6
  import 'node:path';
7
7
  import 'node:os';
8
- import './run-BDX-RaEm.mjs';
8
+ import './run-BtGnnEMI.mjs';
9
9
  import 'os';
10
10
  import 'fs/promises';
11
11
  import 'url';
@@ -1,7 +1,7 @@
1
1
  import { existsSync, readFileSync } from 'node:fs';
2
2
  import { join } from 'node:path';
3
3
  import os from 'node:os';
4
- import { c as connectToHypha } from './run-BDX-RaEm.mjs';
4
+ import { c as connectToHypha } from './run-BtGnnEMI.mjs';
5
5
  import { PINNED_CLAUDE_CODE_VERSION } from './pinnedClaudeCode-DuLXaoGP.mjs';
6
6
  import 'os';
7
7
  import 'fs/promises';
@@ -4,7 +4,7 @@ import { mkdirSync, writeFileSync, unlinkSync, existsSync, chmodSync, readFileSy
4
4
  import { join } from 'path';
5
5
  import { homedir, platform, arch } from 'os';
6
6
  import { randomUUID, createHash } from 'crypto';
7
- import { h as getFrpsSubdomainHost, i as getFrpsServerPort, j as getFrpsServerAddr } from './run-BDX-RaEm.mjs';
7
+ import { h as getFrpsSubdomainHost, i as getFrpsServerPort, j as getFrpsServerAddr } from './run-BtGnnEMI.mjs';
8
8
  import 'fs/promises';
9
9
  import 'url';
10
10
  import 'node:crypto';
@@ -1,5 +1,5 @@
1
- import { a1 as resolveModel, ae as describeMisconfiguration, af as buildMachineDeps } from './run-BDX-RaEm.mjs';
2
- import { handleRealtimeEvent, initMachineVoiceSession } from './sideband-BQ4pkLIQ.mjs';
1
+ import { a1 as resolveModel, ae as describeMisconfiguration, af as buildMachineDeps } from './run-BtGnnEMI.mjs';
2
+ import { handleRealtimeEvent, initMachineVoiceSession } from './sideband-C_ifGgde.mjs';
3
3
  import { WebSocket } from 'ws';
4
4
  import { execSync, spawn } from 'child_process';
5
5
  import 'os';
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- export { c as connectToHypha, a as createSessionStore, d as daemonStatus, g as getHyphaServerUrl, r as registerMachineService, s as startDaemon, b as stopDaemon } from './run-BDX-RaEm.mjs';
1
+ export { c as connectToHypha, a as createSessionStore, d as daemonStatus, g as getHyphaServerUrl, r as registerMachineService, s as startDaemon, b as stopDaemon } from './run-BtGnnEMI.mjs';
2
2
  import 'os';
3
3
  import 'fs/promises';
4
4
  import 'fs';
@@ -1,5 +1,5 @@
1
1
  var name = "svamp-cli";
2
- var version = "0.2.256";
2
+ var version = "0.2.257";
3
3
  var description = "Svamp CLI — AI workspace daemon on Hypha Cloud";
4
4
  var author = "Amun AI AB";
5
5
  var license = "SEE LICENSE IN LICENSE";
@@ -1,4 +1,4 @@
1
- import { n as resolveProjectRoot, u as updateIssue, o as getIssue, p as resumeIssue, q as pauseIssue, t as addComment, v as addIssue, w as listIssues, x as searchIssues, y as isVisibleTo } from './run-BDX-RaEm.mjs';
1
+ import { n as resolveProjectRoot, u as updateIssue, o as getIssue, p as resumeIssue, q as pauseIssue, t as addComment, v as addIssue, w as listIssues, x as searchIssues, y as isVisibleTo } from './run-BtGnnEMI.mjs';
2
2
  import 'os';
3
3
  import 'fs/promises';
4
4
  import 'fs';
@@ -1,4 +1,4 @@
1
- import { n as resolveProjectRoot, z as getRun, A as listRuns, B as getWorkflow, C as runWorkflow, D as setWorkflowEnabled, E as removeWorkflow, F as saveWorkflow, G as rawWorkflow, H as listWorkflows } from './run-BDX-RaEm.mjs';
1
+ import { n as resolveProjectRoot, z as getRun, A as listRuns, B as getWorkflow, C as runWorkflow, D as setWorkflowEnabled, E as removeWorkflow, F as saveWorkflow, G as rawWorkflow, H as listWorkflows } from './run-BtGnnEMI.mjs';
2
2
  import 'os';
3
3
  import 'fs/promises';
4
4
  import 'fs';
@@ -1,4 +1,4 @@
1
- import{createRequire as _pkgrollCR}from"node:module";const require=_pkgrollCR(import.meta.url);import { ag as applyClaudeProxyEnv, ah as composeSessionId, ai as generateFriendlyName, c as connectToHypha, a as createSessionStore, r as registerMachineService, aj as generateHookSettings } from './run-BDX-RaEm.mjs';
1
+ import{createRequire as _pkgrollCR}from"node:module";const require=_pkgrollCR(import.meta.url);import { ag as applyClaudeProxyEnv, ah as composeSessionId, ai as generateFriendlyName, c as connectToHypha, a as createSessionStore, r as registerMachineService, aj as generateHookSettings } from './run-BtGnnEMI.mjs';
2
2
  import os from 'node:os';
3
3
  import { resolve, join } from 'node:path';
4
4
  import { existsSync, readFileSync, watch } from 'node:fs';
@@ -2985,7 +2985,7 @@ async function registerMachineService(server, machineId, metadata, daemonState,
2985
2985
  const tunnels = handlers.tunnels;
2986
2986
  if (!tunnels) throw new Error("Tunnel management not available");
2987
2987
  if (tunnels.has(params.name)) throw new Error(`Tunnel '${params.name}' already running`);
2988
- const { FrpcTunnel } = await import('./frpc--8kUn3Em.mjs');
2988
+ const { FrpcTunnel } = await import('./frpc-QESvQN-s.mjs');
2989
2989
  const tunnel = new FrpcTunnel({
2990
2990
  name: params.name,
2991
2991
  ports: params.ports,
@@ -3452,7 +3452,7 @@ QUESTION: ${params.question || "Summarize this concisely."}` }
3452
3452
  }
3453
3453
  const deps = buildSessionDeps(rpc, { cwd, ownerEmail: owner });
3454
3454
  const sender = { name: context?.user?.email || context?.user?.id || "user", kind: "user", verified: true };
3455
- const { toolsForRole } = await import('./sideband-BQ4pkLIQ.mjs');
3455
+ const { toolsForRole } = await import('./sideband-C_ifGgde.mjs');
3456
3456
  const r2 = await runWiseAgent({ message: params.message, sender, config: { tools: toolsForRole(role2) }, deps, transport, model: resolved.model });
3457
3457
  return fmt(r2);
3458
3458
  }
@@ -3551,7 +3551,7 @@ QUESTION: ${params.question || "Summarize this concisely."}` }
3551
3551
  if (r.error || !r.sender) return { error: r.error || "unauthorized" };
3552
3552
  const callId = "call_" + Math.random().toString(16).slice(2, 12);
3553
3553
  const rendered = renderMessage(c, { sender: r.sender, body: { message: kwargs.message }, callId });
3554
- const { queryCore } = await import('./commands-BrTyEX8u.mjs');
3554
+ const { queryCore } = await import('./commands-CE1PdEJJ.mjs');
3555
3555
  const timeout = c.reply?.timeout_sec || 120;
3556
3556
  let result;
3557
3557
  try {
@@ -10239,21 +10239,37 @@ class ProcessSupervisor {
10239
10239
  * a desired-stopped intent so a daemon restart does not resurrect it. `stopAll` (a daemon
10240
10240
  * shutdown, not a user action) passes false so keepAlive processes auto-restore (#nightly).
10241
10241
  */
10242
+ /**
10243
+ * #0347: run `fn` in the entry's lifecycle critical section. Each call awaits the previous
10244
+ * lifecycle op's SETTLEMENT before running, so stop/restart/apply/update/remove are strictly
10245
+ * serialized per entry and can never interleave across an `await killChild` (which is what let
10246
+ * two ops double-spawn an orphan, or resurrect a just-stopped process). The chain tail never
10247
+ * rejects (a failed op must not wedge the queue); the caller still gets the real result/error.
10248
+ */
10249
+ runExclusive(entry, fn) {
10250
+ const prev = entry.opLock ?? Promise.resolve();
10251
+ const result = prev.then(fn, fn);
10252
+ entry.opLock = result.then(() => void 0, () => void 0);
10253
+ return result;
10254
+ }
10242
10255
  async stop(idOrName, opts) {
10243
10256
  const entry = this.require(idOrName);
10244
10257
  entry.stopping = true;
10245
10258
  this.clearTimers(entry);
10246
- if (entry.child) {
10247
- await this.killChild(entry.child);
10248
- entry.child = void 0;
10249
- }
10250
- entry.state.status = "stopped";
10251
- entry.state.stoppedAt = Date.now();
10252
- entry.state.pid = void 0;
10253
- if (opts?.markDesiredStopped !== false && !entry.deleted && !entry.spec.desiredStopped) {
10254
- entry.spec.desiredStopped = true;
10255
- await this.persistSpec(entry.spec);
10256
- }
10259
+ return this.runExclusive(entry, async () => {
10260
+ entry.stopping = true;
10261
+ if (entry.child) {
10262
+ await this.killChild(entry.child);
10263
+ entry.child = void 0;
10264
+ }
10265
+ entry.state.status = "stopped";
10266
+ entry.state.stoppedAt = Date.now();
10267
+ entry.state.pid = void 0;
10268
+ if (opts?.markDesiredStopped !== false && !entry.deleted && !entry.spec.desiredStopped) {
10269
+ entry.spec.desiredStopped = true;
10270
+ await this.persistSpec(entry.spec);
10271
+ }
10272
+ });
10257
10273
  }
10258
10274
  /** Restart a process (stop if running, then start again). */
10259
10275
  async restart(idOrName) {
@@ -10261,25 +10277,27 @@ class ProcessSupervisor {
10261
10277
  if (entry.deleted) throw new Error(`Process '${idOrName}' has been removed`);
10262
10278
  if (entry.restarting) return;
10263
10279
  entry.restarting = true;
10264
- try {
10265
- if (entry.child) {
10266
- entry.stopping = true;
10267
- this.clearTimers(entry);
10268
- await this.killChild(entry.child);
10269
- entry.child = void 0;
10270
- }
10271
- if (entry.deleted) return;
10272
- entry.stopping = false;
10273
- this.resetFailureTracking(entry);
10274
- if (entry.spec.desiredStopped) {
10275
- entry.spec.desiredStopped = false;
10276
- await this.persistSpec(entry.spec);
10280
+ return this.runExclusive(entry, async () => {
10281
+ try {
10282
+ if (entry.child) {
10283
+ entry.stopping = true;
10284
+ this.clearTimers(entry);
10285
+ await this.killChild(entry.child);
10286
+ entry.child = void 0;
10287
+ }
10288
+ if (entry.deleted) return;
10289
+ entry.stopping = false;
10290
+ this.resetFailureTracking(entry);
10291
+ if (entry.spec.desiredStopped) {
10292
+ entry.spec.desiredStopped = false;
10293
+ await this.persistSpec(entry.spec);
10294
+ }
10295
+ entry.state.restartCount++;
10296
+ await this.startEntry(entry, false);
10297
+ } finally {
10298
+ entry.restarting = false;
10277
10299
  }
10278
- entry.state.restartCount++;
10279
- await this.startEntry(entry, false);
10280
- } finally {
10281
- entry.restarting = false;
10282
- }
10300
+ });
10283
10301
  }
10284
10302
  /** Stop the process and remove it from supervision (deletes persisted spec). */
10285
10303
  async remove(idOrName) {
@@ -10288,15 +10306,17 @@ class ProcessSupervisor {
10288
10306
  entry.deleted = true;
10289
10307
  entry.stopping = true;
10290
10308
  this.clearTimers(entry);
10291
- if (entry.child) {
10292
- await this.killChild(entry.child);
10293
- entry.child = void 0;
10294
- }
10295
- entry.state.status = "stopped";
10296
- entry.state.stoppedAt = Date.now();
10297
- entry.state.pid = void 0;
10298
- this.entries.delete(id);
10299
- await this.deleteSpec(id);
10309
+ return this.runExclusive(entry, async () => {
10310
+ if (entry.child) {
10311
+ await this.killChild(entry.child);
10312
+ entry.child = void 0;
10313
+ }
10314
+ entry.state.status = "stopped";
10315
+ entry.state.stoppedAt = Date.now();
10316
+ entry.state.pid = void 0;
10317
+ this.entries.delete(id);
10318
+ await this.deleteSpec(id);
10319
+ });
10300
10320
  }
10301
10321
  /** List all supervised processes. */
10302
10322
  list() {
@@ -10330,26 +10350,28 @@ class ProcessSupervisor {
10330
10350
  if (this.specsEqual(existing.spec, spec)) {
10331
10351
  return { action: "no-change", info: this.toInfo(existing) };
10332
10352
  }
10333
- const updatedSpec = {
10334
- ...spec,
10335
- id: existing.spec.id,
10336
- createdAt: existing.spec.createdAt
10337
- // preserve original creation time
10338
- };
10339
- existing.spec = updatedSpec;
10340
- await this.persistSpec(updatedSpec);
10341
- existing.stopping = true;
10342
- this.clearTimers(existing);
10343
- if (existing.child) {
10344
- await this.killChild(existing.child);
10345
- existing.child = void 0;
10346
- }
10347
- if (existing.deleted) return { action: "updated", info: this.toInfo(existing) };
10348
- existing.stopping = false;
10349
- this.resetFailureTracking(existing);
10350
- existing.state.status = "starting";
10351
- this.spawnProcess(existing);
10352
- return { action: "updated", info: this.toInfo(existing) };
10353
+ return this.runExclusive(existing, async () => {
10354
+ const updatedSpec = {
10355
+ ...spec,
10356
+ id: existing.spec.id,
10357
+ createdAt: existing.spec.createdAt
10358
+ // preserve original creation time
10359
+ };
10360
+ existing.spec = updatedSpec;
10361
+ await this.persistSpec(updatedSpec);
10362
+ existing.stopping = true;
10363
+ this.clearTimers(existing);
10364
+ if (existing.child) {
10365
+ await this.killChild(existing.child);
10366
+ existing.child = void 0;
10367
+ }
10368
+ if (existing.deleted) return { action: "updated", info: this.toInfo(existing) };
10369
+ existing.stopping = false;
10370
+ this.resetFailureTracking(existing);
10371
+ existing.state.status = "starting";
10372
+ this.spawnProcess(existing);
10373
+ return { action: "updated", info: this.toInfo(existing) };
10374
+ });
10353
10375
  }
10354
10376
  /**
10355
10377
  * Update a running process's spec and restart it.
@@ -10358,21 +10380,23 @@ class ProcessSupervisor {
10358
10380
  async update(idOrName, partialSpec) {
10359
10381
  const entry = this.require(idOrName);
10360
10382
  if (entry.deleted) throw new Error(`Process '${idOrName}' has been removed`);
10361
- const updatedSpec = { ...entry.spec, ...partialSpec };
10362
- entry.spec = updatedSpec;
10363
- await this.persistSpec(updatedSpec);
10364
- entry.stopping = true;
10365
- this.clearTimers(entry);
10366
- if (entry.child) {
10367
- await this.killChild(entry.child);
10368
- entry.child = void 0;
10369
- }
10370
- if (entry.deleted) return this.toInfo(entry);
10371
- entry.stopping = false;
10372
- this.resetFailureTracking(entry);
10373
- entry.state.status = "starting";
10374
- this.spawnProcess(entry);
10375
- return this.toInfo(entry);
10383
+ return this.runExclusive(entry, async () => {
10384
+ const updatedSpec = { ...entry.spec, ...partialSpec };
10385
+ entry.spec = updatedSpec;
10386
+ await this.persistSpec(updatedSpec);
10387
+ entry.stopping = true;
10388
+ this.clearTimers(entry);
10389
+ if (entry.child) {
10390
+ await this.killChild(entry.child);
10391
+ entry.child = void 0;
10392
+ }
10393
+ if (entry.deleted) return this.toInfo(entry);
10394
+ entry.stopping = false;
10395
+ this.resetFailureTracking(entry);
10396
+ entry.state.status = "starting";
10397
+ this.spawnProcess(entry);
10398
+ return this.toInfo(entry);
10399
+ });
10376
10400
  }
10377
10401
  // ── Spec equality ─────────────────────────────────────────────────────────
10378
10402
  /** Compare two specs for equality (ignoring id, createdAt, and runtime state). */
@@ -13534,7 +13558,7 @@ async function startDaemon(options) {
13534
13558
  try {
13535
13559
  const dir = loadSessionIndex()[sessionId]?.directory;
13536
13560
  if (!dir) return;
13537
- const { reconcileServiceLinks } = await import('./agentCommands-DfTICQUR.mjs');
13561
+ const { reconcileServiceLinks } = await import('./agentCommands-fCsOp7ko.mjs');
13538
13562
  const configPath = getSvampConfigPath(dir, sessionId);
13539
13563
  const config = readSvampConfig(configPath);
13540
13564
  const entries = Array.from(urls.entries());
@@ -13552,7 +13576,7 @@ async function startDaemon(options) {
13552
13576
  }
13553
13577
  }
13554
13578
  async function createExposedTunnel(spec) {
13555
- const { FrpcTunnel } = await import('./frpc--8kUn3Em.mjs');
13579
+ const { FrpcTunnel } = await import('./frpc-QESvQN-s.mjs');
13556
13580
  const tunnel = new FrpcTunnel({
13557
13581
  name: spec.name,
13558
13582
  ports: spec.ports,
@@ -13573,7 +13597,7 @@ async function startDaemon(options) {
13573
13597
  }
13574
13598
  const tunnelRecreateState = /* @__PURE__ */ new Map();
13575
13599
  const tunnelRecreateInFlight = /* @__PURE__ */ new Set();
13576
- const { ServeManager } = await import('./serveManager-CQGY6nFz.mjs');
13600
+ const { ServeManager } = await import('./serveManager-BclzoPIb.mjs');
13577
13601
  const serveManager = new ServeManager(SVAMP_HOME, (msg) => logger.log(`[SERVE] ${msg}`), hyphaServerUrl);
13578
13602
  ensureAutoInstalledSkills(logger).catch(() => {
13579
13603
  });
@@ -15689,11 +15713,11 @@ ${capturedError}${buildClaudeErrorHint(capturedError)}`;
15689
15713
  });
15690
15714
  },
15691
15715
  onIssue: async (params) => {
15692
- const { issueRpc } = await import('./rpc-BV_9jVwX.mjs');
15716
+ const { issueRpc } = await import('./rpc-Bscxex4z.mjs');
15693
15717
  return issueRpc(params?.cwd || directory, params || {}, { notifySession: notifyIssueOwner, rekickLoopOwner });
15694
15718
  },
15695
15719
  onWorkflow: async (params) => {
15696
- const { workflowRpc } = await import('./rpc-DPlerDzK.mjs');
15720
+ const { workflowRpc } = await import('./rpc-DCeDG4c7.mjs');
15697
15721
  return workflowRpc(params?.cwd || directory, params || {});
15698
15722
  },
15699
15723
  onRipgrep: async (args, cwd) => {
@@ -16242,11 +16266,11 @@ ${capturedError}${buildClaudeErrorHint(capturedError)}`;
16242
16266
  });
16243
16267
  },
16244
16268
  onIssue: async (params) => {
16245
- const { issueRpc } = await import('./rpc-BV_9jVwX.mjs');
16269
+ const { issueRpc } = await import('./rpc-Bscxex4z.mjs');
16246
16270
  return issueRpc(params?.cwd || directory, params || {}, { notifySession: notifyIssueOwner, rekickLoopOwner });
16247
16271
  },
16248
16272
  onWorkflow: async (params) => {
16249
- const { workflowRpc } = await import('./rpc-DPlerDzK.mjs');
16273
+ const { workflowRpc } = await import('./rpc-DCeDG4c7.mjs');
16250
16274
  return workflowRpc(params?.cwd || directory, params || {});
16251
16275
  },
16252
16276
  onRipgrep: async (args, cwd) => {
@@ -17211,7 +17235,7 @@ ${oracle.output.trim().slice(0, 500)}`, "\u{1F501} Continuing loop");
17211
17235
  const PING_TIMEOUT_MS = 15e3;
17212
17236
  const POST_RECONNECT_GRACE_MS = 2e4;
17213
17237
  const RECONNECT_JITTER_MS = 2500;
17214
- const { WorkflowScheduler } = await import('./scheduler-CueRBYz_.mjs');
17238
+ const { WorkflowScheduler } = await import('./scheduler-Dbqmnd_o.mjs');
17215
17239
  const workflowScheduler = new WorkflowScheduler({
17216
17240
  projectRoots: () => {
17217
17241
  const dirs = /* @__PURE__ */ new Set();
@@ -1,4 +1,4 @@
1
- import { n as resolveProjectRoot, H as listWorkflows, I as isWorkflowEnabled, J as workflowCrons, C as runWorkflow, K as cronMatches } from './run-BDX-RaEm.mjs';
1
+ import { n as resolveProjectRoot, H as listWorkflows, I as isWorkflowEnabled, J as workflowCrons, C as runWorkflow, K as cronMatches } from './run-BtGnnEMI.mjs';
2
2
  import 'os';
3
3
  import 'fs/promises';
4
4
  import 'fs';
@@ -54,7 +54,7 @@ async function handleServeCommand() {
54
54
  }
55
55
  }
56
56
  async function serveAdd(args, machineId) {
57
- const { connectAndGetMachine } = await import('./commands-BrTyEX8u.mjs');
57
+ const { connectAndGetMachine } = await import('./commands-CE1PdEJJ.mjs');
58
58
  const pos = positionalArgs(args);
59
59
  const name = pos[0];
60
60
  if (!name) {
@@ -93,7 +93,7 @@ async function serveAdd(args, machineId) {
93
93
  }
94
94
  }
95
95
  async function serveApply(args, machineId) {
96
- const { connectAndGetMachine } = await import('./commands-BrTyEX8u.mjs');
96
+ const { connectAndGetMachine } = await import('./commands-CE1PdEJJ.mjs');
97
97
  const fs = await import('fs');
98
98
  const yaml = await import('yaml');
99
99
  const file = positionalArgs(args)[0];
@@ -182,7 +182,7 @@ async function serveApply(args, machineId) {
182
182
  }
183
183
  }
184
184
  async function serveRemove(args, machineId) {
185
- const { connectAndGetMachine } = await import('./commands-BrTyEX8u.mjs');
185
+ const { connectAndGetMachine } = await import('./commands-CE1PdEJJ.mjs');
186
186
  const pos = positionalArgs(args);
187
187
  const name = pos[0];
188
188
  if (!name) {
@@ -202,7 +202,7 @@ async function serveRemove(args, machineId) {
202
202
  }
203
203
  }
204
204
  async function serveList(args, machineId) {
205
- const { connectAndGetMachine } = await import('./commands-BrTyEX8u.mjs');
205
+ const { connectAndGetMachine } = await import('./commands-CE1PdEJJ.mjs');
206
206
  const all = hasFlag(args, "--all", "-a");
207
207
  const json = hasFlag(args, "--json");
208
208
  const sessionId = getFlag(args, "--session");
@@ -235,7 +235,7 @@ async function serveList(args, machineId) {
235
235
  }
236
236
  }
237
237
  async function serveInfo(machineId) {
238
- const { connectAndGetMachine } = await import('./commands-BrTyEX8u.mjs');
238
+ const { connectAndGetMachine } = await import('./commands-CE1PdEJJ.mjs');
239
239
  const { machine, server } = await connectAndGetMachine(machineId);
240
240
  try {
241
241
  const info = await machine.serveInfo();
@@ -4,7 +4,7 @@ import * as fs from 'fs';
4
4
  import * as http from 'http';
5
5
  import * as net from 'net';
6
6
  import * as path from 'path';
7
- import { l as getHyphaServerUrl, S as ServeAuth, m as hasCookieToken } from './run-BDX-RaEm.mjs';
7
+ import { l as getHyphaServerUrl, S as ServeAuth, m as hasCookieToken } from './run-BtGnnEMI.mjs';
8
8
  import 'os';
9
9
  import 'fs/promises';
10
10
  import 'url';
@@ -751,7 +751,7 @@ class ServeManager {
751
751
  const mount = this.mounts.get(mountName);
752
752
  const subdomainOverride = mount?.access === "link" && mount.linkToken ? /* @__PURE__ */ new Map([[this.port, buildLinkSubdomain(subdomainSafe, mount.linkToken)]]) : void 0;
753
753
  try {
754
- const { FrpcTunnel } = await import('./frpc--8kUn3Em.mjs');
754
+ const { FrpcTunnel } = await import('./frpc-QESvQN-s.mjs');
755
755
  let tunnel;
756
756
  tunnel = new FrpcTunnel({
757
757
  name: tunnelName,
@@ -1,4 +1,4 @@
1
- import { R as READ_ONLY_TOOLS, N as loadMachineContext, O as buildMachineInstructions, P as machineToolsForRole, Q as buildMachineTools } from './run-BDX-RaEm.mjs';
1
+ import { R as READ_ONLY_TOOLS, N as loadMachineContext, O as buildMachineInstructions, P as machineToolsForRole, Q as buildMachineTools } from './run-BtGnnEMI.mjs';
2
2
  import 'node:child_process';
3
3
  import 'os';
4
4
  import 'fs/promises';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svamp-cli",
3
- "version": "0.2.256",
3
+ "version": "0.2.257",
4
4
  "description": "Svamp CLI — AI workspace daemon on Hypha Cloud",
5
5
  "author": "Amun AI AB",
6
6
  "license": "SEE LICENSE IN LICENSE",