@aigne/cli 1.46.1 → 1.47.0-beta
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 +23 -0
- package/dist/commands/app.js +18 -3
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.47.0-beta](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.46.2...cli-v1.47.0-beta) (2025-09-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **cli:** add web-smith command to @aigne/cli ([#486](https://github.com/AIGNE-io/aigne-framework/issues/486)) ([3f6d51a](https://github.com/AIGNE-io/aigne-framework/commit/3f6d51a24a505c6b0a520b1775164a3456fd9fd5))
|
|
9
|
+
|
|
10
|
+
## [1.46.2](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.46.1...cli-v1.46.2) (2025-09-11)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Dependencies
|
|
14
|
+
|
|
15
|
+
* The following workspace dependencies were updated
|
|
16
|
+
* dependencies
|
|
17
|
+
* @aigne/agent-library bumped to 1.21.44
|
|
18
|
+
* @aigne/agentic-memory bumped to 1.0.44
|
|
19
|
+
* @aigne/aigne-hub bumped to 0.9.3
|
|
20
|
+
* @aigne/core bumped to 1.60.2
|
|
21
|
+
* @aigne/default-memory bumped to 1.2.7
|
|
22
|
+
* @aigne/openai bumped to 0.15.3
|
|
23
|
+
* devDependencies
|
|
24
|
+
* @aigne/test-utils bumped to 0.5.51
|
|
25
|
+
|
|
3
26
|
## [1.46.1](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.46.0...cli-v1.46.1) (2025-09-11)
|
|
4
27
|
|
|
5
28
|
|
package/dist/commands/app.js
CHANGED
|
@@ -19,6 +19,11 @@ const builtinApps = [
|
|
|
19
19
|
describe: "Generate and maintain project docs — powered by agents.",
|
|
20
20
|
aliases: ["docsmith", "doc"],
|
|
21
21
|
},
|
|
22
|
+
{
|
|
23
|
+
name: "web-smith",
|
|
24
|
+
describe: "Generate and maintain project website pages — powered by agents.",
|
|
25
|
+
aliases: ["websmith", "web"],
|
|
26
|
+
},
|
|
22
27
|
];
|
|
23
28
|
export function createAppCommands() {
|
|
24
29
|
return builtinApps.map((app) => ({
|
|
@@ -26,16 +31,26 @@ export function createAppCommands() {
|
|
|
26
31
|
describe: app.describe,
|
|
27
32
|
aliases: app.aliases,
|
|
28
33
|
builder: async (yargs) => {
|
|
29
|
-
const { aigne, dir, version, isCache } = await loadApplication({
|
|
34
|
+
const { aigne, dir, version, isCache } = await loadApplication({
|
|
35
|
+
name: app.name,
|
|
36
|
+
});
|
|
30
37
|
yargs
|
|
31
38
|
.option("model", {
|
|
32
39
|
type: "string",
|
|
33
40
|
description: "Model to use for the application, example: openai:gpt-4.1 or google:gemini-2.5-flash",
|
|
34
41
|
})
|
|
35
42
|
.command(serveMcpCommandModule({ name: app.name, dir }))
|
|
36
|
-
.command(upgradeCommandModule({
|
|
43
|
+
.command(upgradeCommandModule({
|
|
44
|
+
name: app.name,
|
|
45
|
+
dir,
|
|
46
|
+
isLatest: !isCache,
|
|
47
|
+
version,
|
|
48
|
+
}));
|
|
37
49
|
if (aigne.cli.chat) {
|
|
38
|
-
yargs.command({
|
|
50
|
+
yargs.command({
|
|
51
|
+
...agentCommandModule({ dir, agent: aigne.cli.chat }),
|
|
52
|
+
command: "$0",
|
|
53
|
+
});
|
|
39
54
|
}
|
|
40
55
|
for (const agent of aigne.cli.agents) {
|
|
41
56
|
yargs.command(agentCommandModule({ dir, agent }));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.47.0-beta",
|
|
4
4
|
"description": "Your command center for agent development",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -81,13 +81,13 @@
|
|
|
81
81
|
"yargs": "^18.0.0",
|
|
82
82
|
"yoctocolors-cjs": "^2.1.3",
|
|
83
83
|
"zod": "^3.25.67",
|
|
84
|
-
"@aigne/agent-library": "^1.21.
|
|
85
|
-
"@aigne/agentic-memory": "^1.0.
|
|
86
|
-
"@aigne/aigne-hub": "^0.9.
|
|
87
|
-
"@aigne/core": "^1.60.
|
|
88
|
-
"@aigne/
|
|
89
|
-
"@aigne/openai": "^0.15.
|
|
90
|
-
"@aigne/
|
|
84
|
+
"@aigne/agent-library": "^1.21.44",
|
|
85
|
+
"@aigne/agentic-memory": "^1.0.44",
|
|
86
|
+
"@aigne/aigne-hub": "^0.9.3",
|
|
87
|
+
"@aigne/core": "^1.60.2",
|
|
88
|
+
"@aigne/observability-api": "^0.10.4",
|
|
89
|
+
"@aigne/openai": "^0.15.3",
|
|
90
|
+
"@aigne/default-memory": "^1.2.7"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
93
|
"@inquirer/testing": "^2.1.49",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"rimraf": "^6.0.1",
|
|
105
105
|
"typescript": "^5.8.3",
|
|
106
106
|
"ufo": "^1.6.1",
|
|
107
|
-
"@aigne/test-utils": "^0.5.
|
|
107
|
+
"@aigne/test-utils": "^0.5.51"
|
|
108
108
|
},
|
|
109
109
|
"scripts": {
|
|
110
110
|
"lint": "tsc --noEmit",
|