@agenticmail/enterprise 0.5.193 → 0.5.194
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/dist/cli.js +2 -0
- package/package.json +1 -1
- package/src/cli.ts +2 -0
package/dist/cli.js
CHANGED
|
@@ -26,6 +26,7 @@ AgenticMail Enterprise CLI
|
|
|
26
26
|
|
|
27
27
|
Commands:
|
|
28
28
|
setup Interactive setup wizard (default)
|
|
29
|
+
start / serve Start the server (uses DATABASE_URL env)
|
|
29
30
|
validate <path> Validate a community skill manifest
|
|
30
31
|
--all Validate all skills in community-skills/
|
|
31
32
|
--json Machine-readable output
|
|
@@ -51,6 +52,7 @@ Skill Development:
|
|
|
51
52
|
`);
|
|
52
53
|
break;
|
|
53
54
|
case "serve":
|
|
55
|
+
case "start":
|
|
54
56
|
import("./cli-serve-OOXMWQUD.js").then((m) => m.runServe(args.slice(1))).catch(fatal);
|
|
55
57
|
break;
|
|
56
58
|
case "agent":
|
package/package.json
CHANGED
package/src/cli.ts
CHANGED
|
@@ -51,6 +51,7 @@ AgenticMail Enterprise CLI
|
|
|
51
51
|
|
|
52
52
|
Commands:
|
|
53
53
|
setup Interactive setup wizard (default)
|
|
54
|
+
start / serve Start the server (uses DATABASE_URL env)
|
|
54
55
|
validate <path> Validate a community skill manifest
|
|
55
56
|
--all Validate all skills in community-skills/
|
|
56
57
|
--json Machine-readable output
|
|
@@ -77,6 +78,7 @@ Skill Development:
|
|
|
77
78
|
break;
|
|
78
79
|
|
|
79
80
|
case 'serve':
|
|
81
|
+
case 'start':
|
|
80
82
|
import('./cli-serve.js').then(m => m.runServe(args.slice(1))).catch(fatal);
|
|
81
83
|
break;
|
|
82
84
|
|