@agent-compose/cli 0.3.0 → 0.3.2

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 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -183,7 +183,7 @@ var registerCommand = new Command("register").description("Register a workflow w
183
183
  console.error(`Error: workflow not found at ${workflowPath}`);
184
184
  process.exit(1);
185
185
  }
186
- const { source, manifest, networkPolicy, placeholders, snapshots, memory, postRunHooks, inputSchema, outputSchema, workflowPlan } = await bundleWorkflow(workflowPath);
186
+ const { source, manifest, description, networkPolicy, placeholders, snapshots, memory, postRunHooks, inputSchema, outputSchema, workflowPlan } = await bundleWorkflow(workflowPath);
187
187
  if (networkPolicy)
188
188
  console.log(`[register] Network policy detected — credentials will be brokered via Vercel firewall`);
189
189
  if (snapshots?.bootFrom)
@@ -200,6 +200,7 @@ var registerCommand = new Command("register").description("Register a workflow w
200
200
  factorySlug: opts.factory,
201
201
  ...opts.version ? { version: opts.version } : {},
202
202
  ...opts.schedule ? { schedule: opts.schedule } : {},
203
+ ...description ? { description } : {},
203
204
  ...networkPolicy ? { networkPolicy } : {},
204
205
  ...placeholders ? { placeholders } : {},
205
206
  ...snapshots !== undefined ? { snapshots } : {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-compose/cli",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "Command-line interface for agent-compose — register, invoke, and monitor workflows from your terminal.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -44,7 +44,7 @@
44
44
  "prepublishOnly": "bun run build"
45
45
  },
46
46
  "dependencies": {
47
- "@agent-compose/sdk": "^0.4.0",
47
+ "@agent-compose/sdk": "^0.5.1",
48
48
  "commander": "^12.0.0",
49
49
  "picocolors": "^1.1.1"
50
50
  },