@christianmaf80/agentic-workflow 1.31.0-beta.7 → 1.31.0-beta.8
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/bin/cli.js +9 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -25,9 +25,17 @@ program
|
|
|
25
25
|
.command('init')
|
|
26
26
|
.description('Initialize the agentic system in the current directory')
|
|
27
27
|
.option('--non-interactive', 'Run without prompts (assume YES)')
|
|
28
|
+
.option('-y, --yes', 'Alias for --non-interactive')
|
|
29
|
+
.option('--no-prompt', 'Alias for --non-interactive')
|
|
28
30
|
.option('--workspace <path>', 'Workspace root (absolute path)')
|
|
29
31
|
.option('--start-mcp', 'Start MCP server after initialization (foreground)')
|
|
30
|
-
.action((options) =>
|
|
32
|
+
.action((options) => {
|
|
33
|
+
const nonInteractive =
|
|
34
|
+
Boolean(options.nonInteractive) ||
|
|
35
|
+
Boolean(options.yes) ||
|
|
36
|
+
options.prompt === false;
|
|
37
|
+
return initCommand({ ...options, nonInteractive });
|
|
38
|
+
});
|
|
31
39
|
|
|
32
40
|
program
|
|
33
41
|
.command('create')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christianmaf80/agentic-workflow",
|
|
3
|
-
"version": "1.31.0-beta.
|
|
3
|
+
"version": "1.31.0-beta.8",
|
|
4
4
|
"description": "Portable agentic workflow orchestration system with strict identity and gate discipline",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"displayName": "Agentic Workflow",
|