mcoda 0.1.43 → 0.1.45

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.
@@ -96,7 +96,7 @@ export class McodaEntrypoint {
96
96
  'Routing: use `mcoda routing defaults` to view/update workspace/global defaults, `mcoda routing preview|explain` to inspect agent selection/provenance (override → workspace_default → global_default).\n' +
97
97
  'Cloud agents: use `mcoda cloud agent list|details|sync` to discover and materialize mswarm-managed remote agents.\n' +
98
98
  'Self-hosted agents: use `mcoda self-hosted agent list|details|sync` to discover and materialize owner-hosted mswarm agents.\n' +
99
- 'Expose this machine: install `@mcoda/mswarm`, then run `mswarm setup --api-key <KEY>`.\n' +
99
+ 'Expose this machine: install `@mcoda/mswarm`, then run `mswarm install <KEY>`.\n' +
100
100
  'Aliases: `tasks order-by-deps` forwards to `order-tasks` (dependency-aware ordering), `task`/`task-detail` show a single task.\n' +
101
101
  'Job commands (mcoda job --help for details): list|status|watch|logs|inspect|resume|cancel|tokens\n' +
102
102
  'Jobs API required for job commands (set MCODA_API_BASE_URL/MCODA_JOBS_API_URL or workspace api.baseUrl). status/watch/logs exit non-zero on failed/cancelled jobs per SDS.');
@@ -37,7 +37,7 @@ Environment:
37
37
 
38
38
  To expose this machine's local agents:
39
39
  npm install -g @mcoda/mswarm
40
- mswarm setup --api-key <KEY>
40
+ mswarm install <KEY>
41
41
 
42
42
  Flags:
43
43
  --json Emit JSON for supported commands
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcoda",
3
- "version": "0.1.43",
3
+ "version": "0.1.45",
4
4
  "description": "Local-first CLI for planning, documentation, and execution workflows with agent assistance.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -47,12 +47,12 @@
47
47
  },
48
48
  "dependencies": {
49
49
  "yaml": "^2.4.2",
50
- "@mcoda/core": "0.1.43",
51
- "@mcoda/shared": "0.1.43"
50
+ "@mcoda/core": "0.1.45",
51
+ "@mcoda/shared": "0.1.45"
52
52
  },
53
53
  "devDependencies": {
54
- "@mcoda/db": "0.1.43",
55
- "@mcoda/integrations": "0.1.43"
54
+ "@mcoda/db": "0.1.45",
55
+ "@mcoda/integrations": "0.1.45"
56
56
  },
57
57
  "scripts": {
58
58
  "build": "tsc -p tsconfig.json",