@shipers-dev/multi 0.16.0 → 0.17.0

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 (2) hide show
  1. package/dist/index.js +2 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -16324,7 +16324,7 @@ import { join as join5, dirname as dirname4 } from "path";
16324
16324
  // package.json
16325
16325
  var package_default = {
16326
16326
  name: "@shipers-dev/multi",
16327
- version: "0.16.0",
16327
+ version: "0.17.0",
16328
16328
  type: "module",
16329
16329
  bin: {
16330
16330
  "multi-agent": "./dist/index.js"
@@ -17726,10 +17726,7 @@ async function executePlanActions(apiUrl, parentTask, actions, ctx) {
17726
17726
  lines.push(`- \u274C agent.create "${a.name}": ${res.error || res.status}`);
17727
17727
  continue;
17728
17728
  }
17729
- if (res.data?.queued)
17730
- lines.push(`- \u23F3 agent.create "${a.name}" queued for human approval (op ${res.data.pending_op_id})`);
17731
- else
17732
- lines.push(`- \u2713 agent.create "${a.name}" \u2192 ${res.data?.agent_id}`);
17729
+ lines.push(`- \u2713 agent.create "${a.name}" \u2192 ${res.data?.agent_id}`);
17733
17730
  } else if (a.type === "agent.update") {
17734
17731
  const res = await apiClient.post(`${apiUrl}/api/agent_ops/agents/mutate`, { action: "update", ...a }, { headers });
17735
17732
  if (!res.success) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipers-dev/multi",
3
- "version": "0.16.0",
3
+ "version": "0.17.0",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "multi-agent": "./dist/index.js"