@christianmaf80/agentic-workflow 1.42.0 → 1.42.1-beta.1
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 +8 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -13,7 +13,14 @@ const program = new Command();
|
|
|
13
13
|
program
|
|
14
14
|
.name('agentic-workflow')
|
|
15
15
|
.description('Portable agentic orchestration system')
|
|
16
|
-
.version('1.0.0')
|
|
16
|
+
.version('1.0.0')
|
|
17
|
+
.option('-w, --workspace <path>', 'Specify the workspace directory')
|
|
18
|
+
.hook('preAction', (thisCommand) => {
|
|
19
|
+
const workspace = thisCommand.opts().workspace;
|
|
20
|
+
if (workspace) {
|
|
21
|
+
process.chdir(workspace);
|
|
22
|
+
}
|
|
23
|
+
});
|
|
17
24
|
|
|
18
25
|
program
|
|
19
26
|
.command('init')
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@christianmaf80/agentic-workflow",
|
|
3
3
|
"displayName": "Agentic Workflow",
|
|
4
4
|
"publisher": "christian-marino-alvarez",
|
|
5
|
-
"version": "1.42.
|
|
5
|
+
"version": "1.42.1-beta.1",
|
|
6
6
|
"description": "Portable agentic workflow orchestration system with strict identity and gate discipline",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"workspaces": [
|