svamp-cli 0.2.252 → 0.2.254
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.
- package/dist/{agentCommands-BfK_xRcZ.mjs → agentCommands-Dtd2mICX.mjs} +5 -5
- package/dist/{auth-dxadQh0v.mjs → auth-C5b7_Wpo.mjs} +1 -1
- package/dist/cli.mjs +70 -62
- package/dist/{commands-BkroIJOC.mjs → commands-Bz3xxhDd.mjs} +23 -2
- package/dist/{commands-CuSO_rgw.mjs → commands-CTwhZ-Sj.mjs} +2 -2
- package/dist/{commands-Cg3yUhp1.mjs → commands-Ch_nKvnk.mjs} +1 -1
- package/dist/{commands-B9eaRA8O.mjs → commands-D8gpDICH.mjs} +2 -2
- package/dist/{commands-Blddcoeh.mjs → commands-DH1pGrZe.mjs} +1 -1
- package/dist/{commands-eDMV8Q8q.mjs → commands-DI-5Eder.mjs} +1 -1
- package/dist/{commands-BAtj5B4a.mjs → commands-rLFKP45k.mjs} +6 -6
- package/dist/{fleet-CNmpoV_Q.mjs → fleet-u7T-s_4u.mjs} +2 -2
- package/dist/{frpc-DoUUUoZn.mjs → frpc-BBkDE65f.mjs} +1 -1
- package/dist/{headlessCli-DGTHnPjT.mjs → headlessCli-D7JwS_Bf.mjs} +2 -2
- package/dist/index.mjs +1 -1
- package/dist/{package-C2CWKEW-.mjs → package-QKAEHd-5.mjs} +1 -1
- package/dist/{pinnedClaudeCode-ivV7xAp3.mjs → pinnedClaudeCode-DuLXaoGP.mjs} +1 -1
- package/dist/{rpc-_rwZwiHD.mjs → rpc-CMS1F7Qu.mjs} +1 -1
- package/dist/{rpc-665-sPRQ.mjs → rpc-DTU-aE0V.mjs} +1 -1
- package/dist/{run-BPNXOI3F.mjs → run-BJYwPKDR.mjs} +1 -1
- package/dist/{run-BNxaekWa.mjs → run-BqqMOMZN.mjs} +232 -56
- package/dist/{scheduler-DjMTCoWS.mjs → scheduler-B92Z_kox.mjs} +1 -1
- package/dist/{serveCommands-Bc6fchAf.mjs → serveCommands-BEJg71HK.mjs} +5 -5
- package/dist/{serveManager-DAuIjPuV.mjs → serveManager-BBRgdCJp.mjs} +2 -2
- package/dist/{sideband-D6vgqNiq.mjs → sideband-c7SyYkOC.mjs} +1 -1
- package/package.json +1 -1
|
@@ -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-
|
|
5
|
+
import { k as shortId } from './run-BqqMOMZN.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-
|
|
100
|
+
const { projectName, writeProjectInfo, sanitizeDescription, projectInfoPath } = await import('./run-BqqMOMZN.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-
|
|
347
|
+
const { connectAndGetMachine } = await import('./commands-Bz3xxhDd.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-
|
|
425
|
+
const { connectAndResolveSession } = await import('./commands-Bz3xxhDd.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-
|
|
479
|
+
const { connectAndResolveSession } = await import('./commands-Bz3xxhDd.mjs');
|
|
480
480
|
const { server: localServer, machine: localMachine } = await connectToMachineService();
|
|
481
481
|
let localDisconnected = false;
|
|
482
482
|
const disconnectLocal = async () => {
|
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-
|
|
1
|
+
import { e as clearStopMarker, f as stopMarkerExists, s as startDaemon, b as stopDaemon, d as daemonStatus } from './run-BqqMOMZN.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-
|
|
38
|
+
const { getLoadedConfig } = await import('./run-BqqMOMZN.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-
|
|
57
|
+
const mod = await import('./run-BqqMOMZN.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-
|
|
358
|
+
const { handleServiceCommand } = await import('./commands-rLFKP45k.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-
|
|
366
|
+
const { handleServeCommand } = await import('./serveCommands-BEJg71HK.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-
|
|
375
|
+
const { processCommand } = await import('./commands-D8gpDICH.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-
|
|
389
|
+
const { issueCommand } = await import('./commands-DH1pGrZe.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-
|
|
393
|
+
const { workflowCommand } = await import('./commands-DI-5Eder.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-
|
|
400
|
+
const { crewCommand } = await import('./commands-CTwhZ-Sj.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-
|
|
408
|
+
const pkg = await import('./package-QKAEHd-5.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-
|
|
417
|
+
const { runInteractive } = await import('./run-BJYwPKDR.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-
|
|
462
|
+
const { KNOWN_ACP_AGENTS, KNOWN_MCP_AGENTS: KNOWN_MCP_AGENTS2 } = await import('./run-BqqMOMZN.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-
|
|
474
|
+
const { resolveAcpAgentConfig, KNOWN_MCP_AGENTS } = await import('./run-BqqMOMZN.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-
|
|
498
|
+
const { CodexMcpBackend } = await import('./run-BqqMOMZN.mjs').then(function (n) { return n.ap; });
|
|
499
499
|
backend = new CodexMcpBackend({ cwd, log: logFn });
|
|
500
500
|
} else {
|
|
501
|
-
const { AcpBackend } = await import('./run-
|
|
502
|
-
const { GeminiTransport } = await import('./run-
|
|
503
|
-
const { DefaultTransport } = await import('./run-
|
|
501
|
+
const { AcpBackend } = await import('./run-BqqMOMZN.mjs').then(function (n) { return n.an; });
|
|
502
|
+
const { GeminiTransport } = await import('./run-BqqMOMZN.mjs').then(function (n) { return n.aq; });
|
|
503
|
+
const { DefaultTransport } = await import('./run-BqqMOMZN.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, sessionInboxSend, sessionInboxList, sessionInboxRead, sessionInboxReply, sessionInboxClear } = await import('./commands-
|
|
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-Bz3xxhDd.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-
|
|
698
|
+
const { parseShareArg } = await import('./commands-Bz3xxhDd.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-
|
|
788
|
+
const { sessionEditMessage } = await import('./commands-Bz3xxhDd.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-
|
|
796
|
+
const { sessionRefineLastReply } = await import('./commands-Bz3xxhDd.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-
|
|
804
|
+
const { sessionUndoEdit } = await import('./commands-Bz3xxhDd.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-
|
|
814
|
+
const { sessionQuery } = await import('./commands-Bz3xxhDd.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-
|
|
847
|
+
const { sessionApprove } = await import('./commands-Bz3xxhDd.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-
|
|
857
|
+
const { sessionDeny } = await import('./commands-Bz3xxhDd.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")
|
|
@@ -893,13 +893,20 @@ async function handleSessionCommand() {
|
|
|
893
893
|
process.exit(1);
|
|
894
894
|
}
|
|
895
895
|
await sessionLoopStatus(sessionArgs[1], targetMachineId);
|
|
896
|
+
} else if (sessionSubcommand === "loop-extend") {
|
|
897
|
+
const reason = parseFlagStr("--reason");
|
|
898
|
+
if (!sessionArgs[1] || !reason) {
|
|
899
|
+
console.error('Usage: svamp session loop-extend <session-id> --reason "<why more turns are needed>" [--turns N]');
|
|
900
|
+
process.exit(1);
|
|
901
|
+
}
|
|
902
|
+
await sessionLoopExtend(sessionArgs[1], reason, targetMachineId, parseFlagInt("--turns") ?? void 0);
|
|
896
903
|
} else if (sessionSubcommand === "set-title") {
|
|
897
904
|
const title = sessionArgs[1];
|
|
898
905
|
if (!title) {
|
|
899
906
|
console.error("Usage: svamp session set-title <title>");
|
|
900
907
|
process.exit(1);
|
|
901
908
|
}
|
|
902
|
-
const { sessionSetTitle } = await import('./agentCommands-
|
|
909
|
+
const { sessionSetTitle } = await import('./agentCommands-Dtd2mICX.mjs');
|
|
903
910
|
await sessionSetTitle(title);
|
|
904
911
|
} else if (sessionSubcommand === "set-project-description" || sessionSubcommand === "set-project") {
|
|
905
912
|
const desc = sessionArgs.slice(1).filter((a) => !a.startsWith("--")).join(" ");
|
|
@@ -907,7 +914,7 @@ async function handleSessionCommand() {
|
|
|
907
914
|
console.error("Usage: svamp session set-project-description <text>");
|
|
908
915
|
process.exit(1);
|
|
909
916
|
}
|
|
910
|
-
const { sessionSetProjectDescription } = await import('./agentCommands-
|
|
917
|
+
const { sessionSetProjectDescription } = await import('./agentCommands-Dtd2mICX.mjs');
|
|
911
918
|
await sessionSetProjectDescription(desc);
|
|
912
919
|
} else if (sessionSubcommand === "set-link") {
|
|
913
920
|
const url = sessionArgs[1];
|
|
@@ -916,11 +923,11 @@ async function handleSessionCommand() {
|
|
|
916
923
|
process.exit(1);
|
|
917
924
|
}
|
|
918
925
|
const label = sessionArgs[2] && !sessionArgs[2].startsWith("--") ? sessionArgs[2] : void 0;
|
|
919
|
-
const { sessionSetLink } = await import('./agentCommands-
|
|
926
|
+
const { sessionSetLink } = await import('./agentCommands-Dtd2mICX.mjs');
|
|
920
927
|
await sessionSetLink(url, label);
|
|
921
928
|
} else if (sessionSubcommand === "link") {
|
|
922
929
|
const op = sessionArgs[1];
|
|
923
|
-
const lm = await import('./agentCommands-
|
|
930
|
+
const lm = await import('./agentCommands-Dtd2mICX.mjs');
|
|
924
931
|
if (op === "add") {
|
|
925
932
|
const url = sessionArgs[2];
|
|
926
933
|
if (!url || url.startsWith("--")) {
|
|
@@ -955,7 +962,7 @@ async function handleSessionCommand() {
|
|
|
955
962
|
process.exit(1);
|
|
956
963
|
}
|
|
957
964
|
const level = parseFlagStr("--level") || "info";
|
|
958
|
-
const { sessionNotify } = await import('./agentCommands-
|
|
965
|
+
const { sessionNotify } = await import('./agentCommands-Dtd2mICX.mjs');
|
|
959
966
|
await sessionNotify(message, level);
|
|
960
967
|
} else if (sessionSubcommand === "broadcast") {
|
|
961
968
|
const action = sessionArgs[1];
|
|
@@ -963,7 +970,7 @@ async function handleSessionCommand() {
|
|
|
963
970
|
console.error("Usage: svamp session broadcast <action> [args...]\nActions: open-canvas <url> [label], close-canvas, toast <message>");
|
|
964
971
|
process.exit(1);
|
|
965
972
|
}
|
|
966
|
-
const { sessionBroadcast } = await import('./agentCommands-
|
|
973
|
+
const { sessionBroadcast } = await import('./agentCommands-Dtd2mICX.mjs');
|
|
967
974
|
await sessionBroadcast(action, sessionArgs.slice(2).filter((a) => !a.startsWith("--")));
|
|
968
975
|
} else if (sessionSubcommand === "inbox") {
|
|
969
976
|
const inboxSubcmd = sessionArgs[1];
|
|
@@ -974,7 +981,7 @@ async function handleSessionCommand() {
|
|
|
974
981
|
process.exit(1);
|
|
975
982
|
}
|
|
976
983
|
if (agentSessionId) {
|
|
977
|
-
const { inboxSend } = await import('./agentCommands-
|
|
984
|
+
const { inboxSend } = await import('./agentCommands-Dtd2mICX.mjs');
|
|
978
985
|
await inboxSend(sessionArgs[2], {
|
|
979
986
|
body: sessionArgs[3],
|
|
980
987
|
subject: parseFlagStr("--subject"),
|
|
@@ -989,7 +996,7 @@ async function handleSessionCommand() {
|
|
|
989
996
|
}
|
|
990
997
|
} else if (inboxSubcmd === "list" || inboxSubcmd === "ls") {
|
|
991
998
|
if (agentSessionId && !sessionArgs[2]) {
|
|
992
|
-
const { inboxList } = await import('./agentCommands-
|
|
999
|
+
const { inboxList } = await import('./agentCommands-Dtd2mICX.mjs');
|
|
993
1000
|
await inboxList({
|
|
994
1001
|
unread: hasFlag("--unread"),
|
|
995
1002
|
limit: parseFlagInt("--limit"),
|
|
@@ -1011,7 +1018,7 @@ async function handleSessionCommand() {
|
|
|
1011
1018
|
process.exit(1);
|
|
1012
1019
|
}
|
|
1013
1020
|
if (agentSessionId && !sessionArgs[3]) {
|
|
1014
|
-
const { inboxList } = await import('./agentCommands-
|
|
1021
|
+
const { inboxList } = await import('./agentCommands-Dtd2mICX.mjs');
|
|
1015
1022
|
await sessionInboxRead(agentSessionId, sessionArgs[2], targetMachineId);
|
|
1016
1023
|
} else if (sessionArgs[3]) {
|
|
1017
1024
|
await sessionInboxRead(sessionArgs[2], sessionArgs[3], targetMachineId);
|
|
@@ -1021,7 +1028,7 @@ async function handleSessionCommand() {
|
|
|
1021
1028
|
}
|
|
1022
1029
|
} else if (inboxSubcmd === "reply") {
|
|
1023
1030
|
if (agentSessionId && sessionArgs[2] && sessionArgs[3] && !sessionArgs[4]) {
|
|
1024
|
-
const { inboxReply } = await import('./agentCommands-
|
|
1031
|
+
const { inboxReply } = await import('./agentCommands-Dtd2mICX.mjs');
|
|
1025
1032
|
await inboxReply(sessionArgs[2], sessionArgs[3]);
|
|
1026
1033
|
} else if (sessionArgs[2] && sessionArgs[3] && sessionArgs[4]) {
|
|
1027
1034
|
await sessionInboxReply(sessionArgs[2], sessionArgs[3], sessionArgs[4], targetMachineId);
|
|
@@ -1059,7 +1066,7 @@ async function handleMachineCommand() {
|
|
|
1059
1066
|
return;
|
|
1060
1067
|
}
|
|
1061
1068
|
if (machineSubcommand === "share") {
|
|
1062
|
-
const { machineShare } = await import('./commands-
|
|
1069
|
+
const { machineShare } = await import('./commands-Bz3xxhDd.mjs');
|
|
1063
1070
|
let machineId;
|
|
1064
1071
|
const shareArgs = [];
|
|
1065
1072
|
for (let i = 1; i < machineArgs.length; i++) {
|
|
@@ -1110,14 +1117,14 @@ async function handleMachineCommand() {
|
|
|
1110
1117
|
process.exit(1);
|
|
1111
1118
|
}
|
|
1112
1119
|
if (all) {
|
|
1113
|
-
const { fleetExec } = await import('./fleet-
|
|
1120
|
+
const { fleetExec } = await import('./fleet-u7T-s_4u.mjs');
|
|
1114
1121
|
await fleetExec(command, { cwd });
|
|
1115
1122
|
} else {
|
|
1116
|
-
const { machineExec } = await import('./commands-
|
|
1123
|
+
const { machineExec } = await import('./commands-Bz3xxhDd.mjs');
|
|
1117
1124
|
await machineExec(machineId, command, cwd);
|
|
1118
1125
|
}
|
|
1119
1126
|
} else if (machineSubcommand === "info") {
|
|
1120
|
-
const { machineInfo } = await import('./commands-
|
|
1127
|
+
const { machineInfo } = await import('./commands-Bz3xxhDd.mjs');
|
|
1121
1128
|
let machineId;
|
|
1122
1129
|
for (let i = 1; i < machineArgs.length; i++) {
|
|
1123
1130
|
if ((machineArgs[i] === "--machine" || machineArgs[i] === "-m") && i + 1 < machineArgs.length) {
|
|
@@ -1137,10 +1144,10 @@ async function handleMachineCommand() {
|
|
|
1137
1144
|
level = machineArgs[++i];
|
|
1138
1145
|
}
|
|
1139
1146
|
}
|
|
1140
|
-
const { machineNotify } = await import('./agentCommands-
|
|
1147
|
+
const { machineNotify } = await import('./agentCommands-Dtd2mICX.mjs');
|
|
1141
1148
|
await machineNotify(message, level);
|
|
1142
1149
|
} else if (machineSubcommand === "ls") {
|
|
1143
|
-
const { machineLs } = await import('./commands-
|
|
1150
|
+
const { machineLs } = await import('./commands-Bz3xxhDd.mjs');
|
|
1144
1151
|
let machineId;
|
|
1145
1152
|
let showHidden = false;
|
|
1146
1153
|
let path;
|
|
@@ -1199,20 +1206,20 @@ Examples:
|
|
|
1199
1206
|
};
|
|
1200
1207
|
const hasFlag = (name) => fleetArgs.includes(`--${name}`);
|
|
1201
1208
|
if (sub === "status") {
|
|
1202
|
-
const { fleetStatus } = await import('./fleet-
|
|
1209
|
+
const { fleetStatus } = await import('./fleet-u7T-s_4u.mjs');
|
|
1203
1210
|
await fleetStatus();
|
|
1204
1211
|
} else if (sub === "upgrade-claude") {
|
|
1205
|
-
const { fleetUpgradeClaude } = await import('./fleet-
|
|
1212
|
+
const { fleetUpgradeClaude } = await import('./fleet-u7T-s_4u.mjs');
|
|
1206
1213
|
await fleetUpgradeClaude({ version: flag("version", "-v") });
|
|
1207
1214
|
} else if (sub === "upgrade-svamp") {
|
|
1208
|
-
const { fleetUpgradeSvamp } = await import('./fleet-
|
|
1215
|
+
const { fleetUpgradeSvamp } = await import('./fleet-u7T-s_4u.mjs');
|
|
1209
1216
|
await fleetUpgradeSvamp({ version: flag("version", "-v"), excludeSelf: hasFlag("exclude-self"), force: hasFlag("force") });
|
|
1210
1217
|
} else if (sub === "daemon-restart") {
|
|
1211
|
-
const { fleetDaemonRestart } = await import('./fleet-
|
|
1218
|
+
const { fleetDaemonRestart } = await import('./fleet-u7T-s_4u.mjs');
|
|
1212
1219
|
await fleetDaemonRestart({ graceful: !hasFlag("cleanup") });
|
|
1213
1220
|
} else if (sub === "push-skill") {
|
|
1214
1221
|
const name = fleetArgs[1];
|
|
1215
|
-
const { fleetPushSkill } = await import('./fleet-
|
|
1222
|
+
const { fleetPushSkill } = await import('./fleet-u7T-s_4u.mjs');
|
|
1216
1223
|
await fleetPushSkill(name);
|
|
1217
1224
|
} else {
|
|
1218
1225
|
console.error(`Unknown fleet subcommand: ${sub}`);
|
|
@@ -1228,7 +1235,7 @@ async function handleSkillsCommand() {
|
|
|
1228
1235
|
await printSkillsHelp();
|
|
1229
1236
|
return;
|
|
1230
1237
|
}
|
|
1231
|
-
const { skillsFind, skillsInstall, skillsList, skillsRemove, skillsPublish } = await import('./commands-
|
|
1238
|
+
const { skillsFind, skillsInstall, skillsList, skillsRemove, skillsPublish } = await import('./commands-Ch_nKvnk.mjs');
|
|
1232
1239
|
if (skillsSubcommand === "find" || skillsSubcommand === "search") {
|
|
1233
1240
|
const query = skillsArgs.slice(1).filter((a) => !a.startsWith("--")).join(" ");
|
|
1234
1241
|
if (!query) {
|
|
@@ -1275,7 +1282,7 @@ async function loginToHypha() {
|
|
|
1275
1282
|
process.exit(1);
|
|
1276
1283
|
}
|
|
1277
1284
|
const anchor = anchorArg.replace(/\/+$/, "");
|
|
1278
|
-
const { loadInstanceConfig } = await import('./run-
|
|
1285
|
+
const { loadInstanceConfig } = await import('./run-BqqMOMZN.mjs').then(function (n) { return n.ar; });
|
|
1279
1286
|
let cfg = null;
|
|
1280
1287
|
try {
|
|
1281
1288
|
cfg = await loadInstanceConfig({ anchor, force: true });
|
|
@@ -1386,7 +1393,7 @@ async function logoutFromHypha() {
|
|
|
1386
1393
|
} catch {
|
|
1387
1394
|
}
|
|
1388
1395
|
try {
|
|
1389
|
-
const { clearInstanceConfigCache } = await import('./run-
|
|
1396
|
+
const { clearInstanceConfigCache } = await import('./run-BqqMOMZN.mjs').then(function (n) { return n.ar; });
|
|
1390
1397
|
clearInstanceConfigCache();
|
|
1391
1398
|
} catch {
|
|
1392
1399
|
}
|
|
@@ -1725,7 +1732,7 @@ async function applyClaudeAuthFlags(argv) {
|
|
|
1725
1732
|
"--use-hypha-proxy, --use-claude-login, and --anthropic-base-url/--anthropic-api-key are mutually exclusive"
|
|
1726
1733
|
);
|
|
1727
1734
|
}
|
|
1728
|
-
const mod = await import('./run-
|
|
1735
|
+
const mod = await import('./run-BqqMOMZN.mjs').then(function (n) { return n.ak; });
|
|
1729
1736
|
if (hasHypha) {
|
|
1730
1737
|
let url;
|
|
1731
1738
|
const hyphaIdx = argv.indexOf("--use-hypha-proxy");
|
|
@@ -1779,7 +1786,7 @@ async function applyDaemonShareFlag(argv) {
|
|
|
1779
1786
|
}
|
|
1780
1787
|
}
|
|
1781
1788
|
if (collected.length === 0) return;
|
|
1782
|
-
const { updateEnvFile } = await import('./run-
|
|
1789
|
+
const { updateEnvFile } = await import('./run-BqqMOMZN.mjs').then(function (n) { return n.ak; });
|
|
1783
1790
|
const seen = /* @__PURE__ */ new Set();
|
|
1784
1791
|
const deduped = collected.filter((e) => {
|
|
1785
1792
|
const k = e.toLowerCase();
|
|
@@ -1812,7 +1819,7 @@ async function handleWiseAgentCommand(rest) {
|
|
|
1812
1819
|
}
|
|
1813
1820
|
});
|
|
1814
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(" ");
|
|
1815
|
-
const { wiseAskCli } = await import('./commands-
|
|
1822
|
+
const { wiseAskCli } = await import('./commands-Bz3xxhDd.mjs');
|
|
1816
1823
|
await wiseAskCli(machineId, message, sessionId, { json });
|
|
1817
1824
|
return;
|
|
1818
1825
|
}
|
|
@@ -1824,7 +1831,7 @@ async function handleWiseAgentCommand(rest) {
|
|
|
1824
1831
|
}
|
|
1825
1832
|
return void 0;
|
|
1826
1833
|
};
|
|
1827
|
-
const { runWiseVoiceCli } = await import('./headlessCli-
|
|
1834
|
+
const { runWiseVoiceCli } = await import('./headlessCli-D7JwS_Bf.mjs');
|
|
1828
1835
|
await runWiseVoiceCli({ voice: valueOf(["--voice"]), wakeKeywordPath: valueOf(["--wake"]), model: valueOf(["--model"]) });
|
|
1829
1836
|
return;
|
|
1830
1837
|
}
|
|
@@ -1842,7 +1849,7 @@ async function handleWiseAgentCommand(rest) {
|
|
|
1842
1849
|
const mode = valueOf(["--mode"]);
|
|
1843
1850
|
const mission = valueOf(["--mission"]);
|
|
1844
1851
|
const url = rest.slice(1).find((a) => /^https?:\/\//.test(a)) || "";
|
|
1845
|
-
const { wiseJoinMeetingCli } = await import('./commands-
|
|
1852
|
+
const { wiseJoinMeetingCli } = await import('./commands-Bz3xxhDd.mjs');
|
|
1846
1853
|
await wiseJoinMeetingCli(machineId, url, sessionId, { json, mode, mission });
|
|
1847
1854
|
return;
|
|
1848
1855
|
}
|
|
@@ -1854,7 +1861,7 @@ async function handleWiseAgentCommand(rest) {
|
|
|
1854
1861
|
}
|
|
1855
1862
|
return void 0;
|
|
1856
1863
|
};
|
|
1857
|
-
const { wiseLeaveMeetingCli } = await import('./commands-
|
|
1864
|
+
const { wiseLeaveMeetingCli } = await import('./commands-Bz3xxhDd.mjs');
|
|
1858
1865
|
await wiseLeaveMeetingCli(valueOf(["--machine", "-m"]), valueOf(["--session", "-s"]), { json: rest.includes("--json") });
|
|
1859
1866
|
return;
|
|
1860
1867
|
}
|
|
@@ -1878,7 +1885,7 @@ async function handleWiseAgentCommand(rest) {
|
|
|
1878
1885
|
}
|
|
1879
1886
|
});
|
|
1880
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(" ");
|
|
1881
|
-
const { wiseAnnounceCli } = await import('./commands-
|
|
1888
|
+
const { wiseAnnounceCli } = await import('./commands-Bz3xxhDd.mjs');
|
|
1882
1889
|
await wiseAnnounceCli(machineId, text, sessionId, { json });
|
|
1883
1890
|
return;
|
|
1884
1891
|
}
|
|
@@ -1890,7 +1897,7 @@ async function handleWiseAgentCommand(rest) {
|
|
|
1890
1897
|
}
|
|
1891
1898
|
return void 0;
|
|
1892
1899
|
};
|
|
1893
|
-
const { wiseMeetingsCli } = await import('./commands-
|
|
1900
|
+
const { wiseMeetingsCli } = await import('./commands-Bz3xxhDd.mjs');
|
|
1894
1901
|
await wiseMeetingsCli(valueOf(["--machine", "-m"]), { json: rest.includes("--json") });
|
|
1895
1902
|
return;
|
|
1896
1903
|
}
|
|
@@ -1940,7 +1947,7 @@ If none is set, hitting a WISE Agent channel returns a clear "not configured" er
|
|
|
1940
1947
|
return;
|
|
1941
1948
|
}
|
|
1942
1949
|
const authArgs = rest.slice(1);
|
|
1943
|
-
const mod = await import('./auth-
|
|
1950
|
+
const mod = await import('./auth-C5b7_Wpo.mjs');
|
|
1944
1951
|
let action;
|
|
1945
1952
|
try {
|
|
1946
1953
|
action = mod.parseWiseAgentAuthArgs(authArgs);
|
|
@@ -1950,7 +1957,7 @@ If none is set, hitting a WISE Agent channel returns a clear "not configured" er
|
|
|
1950
1957
|
return;
|
|
1951
1958
|
}
|
|
1952
1959
|
if (action) {
|
|
1953
|
-
const { updateEnvFile } = await import('./run-
|
|
1960
|
+
const { updateEnvFile } = await import('./run-BqqMOMZN.mjs').then(function (n) { return n.ak; });
|
|
1954
1961
|
const updates = mod.buildWiseAgentEnvUpdates(action);
|
|
1955
1962
|
updateEnvFile(updates);
|
|
1956
1963
|
for (const [k, v] of Object.entries(updates)) {
|
|
@@ -1964,7 +1971,7 @@ If none is set, hitting a WISE Agent channel returns a clear "not configured" er
|
|
|
1964
1971
|
}
|
|
1965
1972
|
async function handleDaemonAuthCommand(argv) {
|
|
1966
1973
|
const sub = (argv[0] || "status").toLowerCase();
|
|
1967
|
-
const mod = await import('./run-
|
|
1974
|
+
const mod = await import('./run-BqqMOMZN.mjs').then(function (n) { return n.ak; });
|
|
1968
1975
|
if (sub === "--help" || sub === "-h" || sub === "help") {
|
|
1969
1976
|
console.log(`
|
|
1970
1977
|
svamp daemon auth \u2014 Configure how Claude subprocesses authenticate
|
|
@@ -2129,7 +2136,8 @@ COMMANDS:
|
|
|
2129
2136
|
HOT-PLUG onto the running session (no kickoff).
|
|
2130
2137
|
opts: --oracle "cmd" --agent --parent <id> --max N
|
|
2131
2138
|
loop-cancel <id> Cancel the loop / release the gate
|
|
2132
|
-
loop-status <id> Show loop phase + iteration
|
|
2139
|
+
loop-status <id> Show loop phase + iteration + extensions
|
|
2140
|
+
loop-extend <id> --reason "<why>" Extend the SOFT cap (+turns, bounded) with a reason
|
|
2133
2141
|
|
|
2134
2142
|
Inbox:
|
|
2135
2143
|
inbox send <id> "<body>" [opts] Send a message to session inbox
|
|
@@ -2283,7 +2291,7 @@ Examples:
|
|
|
2283
2291
|
async function printSkillsHelp() {
|
|
2284
2292
|
let browseUrl = "<HYPHA_SERVER_URL>/<workspace>/artifacts/marketplace (set HYPHA_SERVER_URL)";
|
|
2285
2293
|
try {
|
|
2286
|
-
const { getArtifactBaseUrl, getSkillsCollectionName } = await import('./run-
|
|
2294
|
+
const { getArtifactBaseUrl, getSkillsCollectionName } = await import('./run-BqqMOMZN.mjs').then(function (n) { return n.as; });
|
|
2287
2295
|
browseUrl = `${getArtifactBaseUrl()}/${getSkillsCollectionName()}`;
|
|
2288
2296
|
} catch {
|
|
2289
2297
|
}
|
|
@@ -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-
|
|
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-BqqMOMZN.mjs';
|
|
6
6
|
import 'os';
|
|
7
7
|
import 'fs/promises';
|
|
8
8
|
import 'fs';
|
|
@@ -2566,6 +2566,19 @@ async function sessionLoopCancel(sessionIdPartial, machineId) {
|
|
|
2566
2566
|
await server.disconnect();
|
|
2567
2567
|
}
|
|
2568
2568
|
}
|
|
2569
|
+
async function sessionLoopExtend(sessionIdPartial, reason, machineId, grantedTurns) {
|
|
2570
|
+
const { server, machine, fullId } = await connectAndResolveSession(sessionIdPartial, machineId);
|
|
2571
|
+
try {
|
|
2572
|
+
const svc = getSessionProxy(machine, fullId);
|
|
2573
|
+
await svc.updateConfig({
|
|
2574
|
+
loop: { extend: { reason, ...grantedTurns != null ? { grantedTurns } : {} } }
|
|
2575
|
+
});
|
|
2576
|
+
console.log(`\u{1F501} Requested loop extension on session ${fullId.slice(0, 8)} \u2014 reason: ${reason.slice(0, 120)}${reason.length > 120 ? "\u2026" : ""}`);
|
|
2577
|
+
console.log(` (bounded by SVAMP_LOOP_MAX_EXTENSIONS; raises only the soft iteration cap, never the hard cost ceiling. Check: svamp session loop-status ${fullId.slice(0, 8)})`);
|
|
2578
|
+
} finally {
|
|
2579
|
+
await server.disconnect();
|
|
2580
|
+
}
|
|
2581
|
+
}
|
|
2569
2582
|
async function sessionLoopStatus(sessionIdPartial, machineId) {
|
|
2570
2583
|
const { server, machine, fullId } = await connectAndResolveSession(sessionIdPartial, machineId);
|
|
2571
2584
|
try {
|
|
@@ -2602,6 +2615,14 @@ async function sessionLoopStatus(sessionIdPartial, machineId) {
|
|
|
2602
2615
|
console.log(` Evaluator: ${verdict ? `${verdict.verdict}${verdict.reason ? ` \u2014 ${verdict.reason}` : ""}` : "on (no verdict yet)"}`);
|
|
2603
2616
|
}
|
|
2604
2617
|
if (state.gave_up_reason) console.log(` Gave up: ${state.gave_up_reason}`);
|
|
2618
|
+
if (Array.isArray(state.extensions) && state.extensions.length) {
|
|
2619
|
+
const totalTurns = state.extensions.reduce((s, e) => s + (Number.isFinite(e?.grantedTurns) && e.grantedTurns > 0 ? Math.floor(e.grantedTurns) : 0), 0);
|
|
2620
|
+
console.log(` Extensions: ${state.extensions.length} (+${totalTurns} turns)`);
|
|
2621
|
+
for (const e of state.extensions) {
|
|
2622
|
+
const when = Number.isFinite(e?.ts) ? new Date(e.ts).toISOString() : "";
|
|
2623
|
+
console.log(` \u2022 +${e?.grantedTurns ?? 0} turns${when ? ` @ ${when}` : ""} \u2014 ${String(e?.reason || "").slice(0, 160)}`);
|
|
2624
|
+
}
|
|
2625
|
+
}
|
|
2605
2626
|
if (state.started_at) console.log(` Started at: ${state.started_at}`);
|
|
2606
2627
|
} finally {
|
|
2607
2628
|
await server.disconnect();
|
|
@@ -2768,4 +2789,4 @@ async function sessionInboxClear(sessionIdPartial, machineId, opts) {
|
|
|
2768
2789
|
}
|
|
2769
2790
|
}
|
|
2770
2791
|
|
|
2771
|
-
export { collectAssistantResponse, connectAndGetMachine, connectAndResolveSession, createWorktree, generateWorktreeName, isSelfBtw, machineExec, machineInfo, machineLs, machineShare, parseShareArg, queryCore, renderMessage, resolveSessionId, sendCore, sessionApprove, sessionArchive, sessionAttach, sessionDelete, sessionDeny, sessionEditMessage, sessionInboxClear, sessionInboxList, sessionInboxRead, sessionInboxReply, sessionInboxSend, sessionInfo, sessionList, sessionLoopCancel, sessionLoopStart, sessionLoopStatus, sessionMachines, sessionMessages, sessionQuery, sessionRefineLastReply, sessionResume, sessionSend, sessionShare, sessionSpawn, sessionUndoEdit, sessionWait, sessionWhoami, snapshotLatestSeq, validateSendOptions, wiseAnnounceCli, wiseAskCli, wiseJoinMeetingCli, wiseLeaveMeetingCli, wiseMeetingsCli };
|
|
2792
|
+
export { collectAssistantResponse, connectAndGetMachine, connectAndResolveSession, createWorktree, generateWorktreeName, isSelfBtw, machineExec, machineInfo, machineLs, machineShare, parseShareArg, queryCore, renderMessage, resolveSessionId, sendCore, sessionApprove, sessionArchive, sessionAttach, sessionDelete, sessionDeny, sessionEditMessage, sessionInboxClear, sessionInboxList, sessionInboxRead, sessionInboxReply, sessionInboxSend, sessionInfo, sessionList, sessionLoopCancel, sessionLoopExtend, sessionLoopStart, sessionLoopStatus, sessionMachines, sessionMessages, sessionQuery, sessionRefineLastReply, sessionResume, sessionSend, sessionShare, sessionSpawn, sessionUndoEdit, sessionWait, sessionWhoami, snapshotLatestSeq, validateSendOptions, wiseAnnounceCli, wiseAskCli, wiseJoinMeetingCli, wiseLeaveMeetingCli, wiseMeetingsCli };
|
|
@@ -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-
|
|
3
|
+
import { connectAndGetMachine, resolveSessionId, createWorktree, connectAndResolveSession } from './commands-Bz3xxhDd.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-
|
|
5
|
+
import { u as updateIssue, t as addComment, v as addIssue, k as shortId } from './run-BqqMOMZN.mjs';
|
|
6
6
|
import 'node:os';
|
|
7
7
|
import 'os';
|
|
8
8
|
import 'fs/promises';
|
|
@@ -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-
|
|
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-BqqMOMZN.mjs';
|
|
5
5
|
import 'fs/promises';
|
|
6
6
|
import 'url';
|
|
7
7
|
import 'child_process';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { writeFileSync, readFileSync } from 'fs';
|
|
2
2
|
import { resolve } from 'path';
|
|
3
|
-
import { connectAndGetMachine } from './commands-
|
|
3
|
+
import { connectAndGetMachine } from './commands-Bz3xxhDd.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-
|
|
8
|
+
import './run-BqqMOMZN.mjs';
|
|
9
9
|
import 'os';
|
|
10
10
|
import 'fs/promises';
|
|
11
11
|
import 'url';
|
|
@@ -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-
|
|
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-BqqMOMZN.mjs';
|
|
5
5
|
import 'os';
|
|
6
6
|
import 'fs/promises';
|
|
7
7
|
import 'fs';
|