@aigne/example-workflow-orchestrator 1.15.0-beta.10 → 1.15.0-beta.12

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/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.15.0-beta.12](https://github.com/AIGNE-io/aigne-framework/compare/example-workflow-orchestrator-v1.15.0-beta.11...example-workflow-orchestrator-v1.15.0-beta.12) (2026-01-02)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **cli:** rename cmd option --chat to --interactive ([#865](https://github.com/AIGNE-io/aigne-framework/issues/865)) ([480eca4](https://github.com/AIGNE-io/aigne-framework/commit/480eca49a7381a330024f1f0026bbc5f89b57bbb))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/agent-library bumped to 1.24.0-beta.11
16
+ * @aigne/cli bumped to 1.59.0-beta.12
17
+ * devDependencies
18
+ * @aigne/test-utils bumped to 0.5.69-beta.9
19
+
20
+ ## [1.15.0-beta.11](https://github.com/AIGNE-io/aigne-framework/compare/example-workflow-orchestrator-v1.15.0-beta.10...example-workflow-orchestrator-v1.15.0-beta.11) (2025-12-31)
21
+
22
+
23
+ ### Dependencies
24
+
25
+ * The following workspace dependencies were updated
26
+ * dependencies
27
+ * @aigne/agent-library bumped to 1.24.0-beta.10
28
+ * @aigne/cli bumped to 1.59.0-beta.11
29
+ * devDependencies
30
+ * @aigne/test-utils bumped to 0.5.69-beta.8
31
+
3
32
  ## [1.15.0-beta.10](https://github.com/AIGNE-io/aigne-framework/compare/example-workflow-orchestrator-v1.15.0-beta.9...example-workflow-orchestrator-v1.15.0-beta.10) (2025-12-26)
4
33
 
5
34
 
package/README.md CHANGED
@@ -102,7 +102,7 @@ cd /path/to/your/project
102
102
  npx -y @aigne/example-workflow-orchestrator
103
103
 
104
104
  # Run with chat mode for interactive instructions
105
- npx -y @aigne/example-workflow-orchestrator --chat
105
+ npx -y @aigne/example-workflow-orchestrator --interactive
106
106
 
107
107
  # Run with custom message
108
108
  npx -y @aigne/example-workflow-orchestrator --message "Analyze the project dependencies and security issues"
@@ -165,7 +165,7 @@ npx -y @aigne/example-workflow-orchestrator --message "Analyze this repository a
165
165
 
166
166
  ### Connect to an AI Model
167
167
 
168
- As an example, running `npx -y @aigne/example-workflow-orchestrator --chat` requires an AI model. If this is your first run, you need to connect one.
168
+ As an example, running `npx -y @aigne/example-workflow-orchestrator --interactive` requires an AI model. If this is your first run, you need to connect one.
169
169
 
170
170
  ![run example](./run-example.png)
171
171
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/example-workflow-orchestrator",
3
- "version": "1.15.0-beta.10",
3
+ "version": "1.15.0-beta.12",
4
4
  "description": "A demonstration of using AIGNE Framework to build a orchestrator workflow",
5
5
  "author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
6
6
  "homepage": "https://github.com/AIGNE-io/aigne-framework/tree/main/examples/workflow-orchestrator",
@@ -11,12 +11,12 @@
11
11
  },
12
12
  "bin": "aigne.yaml",
13
13
  "dependencies": {
14
- "@aigne/agent-library": "^1.24.0-beta.9",
15
- "@aigne/cli": "^1.59.0-beta.10"
14
+ "@aigne/agent-library": "^1.24.0-beta.11",
15
+ "@aigne/cli": "^1.59.0-beta.12"
16
16
  },
17
17
  "devDependencies": {
18
18
  "@types/bun": "^1.2.22",
19
- "@aigne/test-utils": "^0.5.69-beta.7"
19
+ "@aigne/test-utils": "^0.5.69-beta.9"
20
20
  },
21
21
  "scripts": {
22
22
  "start": "aigne run ."