svamp-cli 0.1.31 → 0.1.33
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/cli.mjs +122 -41
- package/dist/{commands-78RHC879.mjs → commands-EjpBlIl0.mjs} +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{package-BtoCHVOd.mjs → package-CMmjP_vD.mjs} +1 -1
- package/dist/run-COUdcjR7.mjs +897 -0
- package/dist/run-DaEcQsPx.mjs +892 -0
- package/dist/{run-dBWhjQRf.mjs → run-fEuWMTdD.mjs} +8 -4
- package/package.json +1 -1
|
@@ -2172,8 +2172,7 @@ var acpBackend = /*#__PURE__*/Object.freeze({
|
|
|
2172
2172
|
});
|
|
2173
2173
|
|
|
2174
2174
|
const KNOWN_ACP_AGENTS = {
|
|
2175
|
-
gemini: { command: "gemini", args: ["--experimental-acp"] }
|
|
2176
|
-
opencode: { command: "opencode", args: ["acp"] }
|
|
2175
|
+
gemini: { command: "gemini", args: ["--experimental-acp"] }
|
|
2177
2176
|
};
|
|
2178
2177
|
const KNOWN_MCP_AGENTS = {
|
|
2179
2178
|
codex: { command: "codex", args: ["mcp-server"] }
|
|
@@ -2196,7 +2195,7 @@ function resolveAcpAgentConfig(cliArgs) {
|
|
|
2196
2195
|
const agentName = cliArgs[0];
|
|
2197
2196
|
const knownAcp = KNOWN_ACP_AGENTS[agentName];
|
|
2198
2197
|
if (knownAcp) {
|
|
2199
|
-
const passthroughArgs = cliArgs.slice(1).filter(
|
|
2198
|
+
const passthroughArgs = cliArgs.slice(1).filter(Boolean);
|
|
2200
2199
|
return {
|
|
2201
2200
|
agentName,
|
|
2202
2201
|
command: knownAcp.command,
|
|
@@ -2818,6 +2817,11 @@ class CodexMcpBackend {
|
|
|
2818
2817
|
}
|
|
2819
2818
|
}
|
|
2820
2819
|
|
|
2820
|
+
var codexMcpBackend = /*#__PURE__*/Object.freeze({
|
|
2821
|
+
__proto__: null,
|
|
2822
|
+
CodexMcpBackend: CodexMcpBackend
|
|
2823
|
+
});
|
|
2824
|
+
|
|
2821
2825
|
const GEMINI_TIMEOUTS = {
|
|
2822
2826
|
init: 12e4,
|
|
2823
2827
|
toolCall: 12e4,
|
|
@@ -4974,4 +4978,4 @@ function daemonStatus() {
|
|
|
4974
4978
|
}
|
|
4975
4979
|
}
|
|
4976
4980
|
|
|
4977
|
-
export { DefaultTransport$1 as D, GeminiTransport$1 as G, registerSessionService as a, stopDaemon as b, connectToHypha as c, daemonStatus as d, acpBackend as e, acpAgentConfig as f, getHyphaServerUrl as g, registerMachineService as r, startDaemon as s };
|
|
4981
|
+
export { DefaultTransport$1 as D, GeminiTransport$1 as G, registerSessionService as a, stopDaemon as b, connectToHypha as c, daemonStatus as d, acpBackend as e, acpAgentConfig as f, getHyphaServerUrl as g, codexMcpBackend as h, registerMachineService as r, startDaemon as s };
|