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.
@@ -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((arg) => !(agentName === "opencode" && arg === "--acp"));
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svamp-cli",
3
- "version": "0.1.31",
3
+ "version": "0.1.33",
4
4
  "description": "Svamp CLI — AI workspace daemon on Hypha Cloud",
5
5
  "author": "Amun AI AB",
6
6
  "license": "SEE LICENSE IN LICENSE",