u-foo 1.2.3 → 1.2.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "u-foo",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "Multi-Agent Workspace Protocol. Just add u. claude → uclaude, codex → ucodex.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "homepage": "https://ufoo.dev",
@@ -877,6 +877,7 @@ function startDaemon({ projectRoot, provider, model, resumeMode = "auto" }) {
877
877
  return;
878
878
  }
879
879
  if (req.type === IPC_REQUEST_TYPES.LAUNCH_AGENT) {
880
+ log(`launch_agent received: agent=${req.agent} count=${req.count}`);
880
881
  const { agent, count, nickname } = req;
881
882
  const normalizedAgent = normalizeLaunchAgent(agent);
882
883
  if (!normalizedAgent) {
package/src/daemon/ops.js CHANGED
@@ -24,9 +24,9 @@ function toBusAgentType(agent = "") {
24
24
  }
25
25
 
26
26
  function toTerminalBinary(agent = "") {
27
- if (agent === "codex") return "./bin/ucodex.js";
28
- if (agent === "claude") return "./bin/uclaude.js";
29
- if (agent === "ufoo") return "./bin/ucode.js";
27
+ if (agent === "codex") return "ucodex";
28
+ if (agent === "claude") return "uclaude";
29
+ if (agent === "ufoo") return "ucode";
30
30
  return "";
31
31
  }
32
32