@aigne/cli 1.46.2 → 1.47.0-pre

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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.47.0-pre](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.46.2...cli-v1.47.0-pre) (2025-09-12)
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
+
3
10
  ## [1.46.2](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.46.1...cli-v1.46.2) (2025-09-11)
4
11
 
5
12
 
@@ -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({ name: app.name });
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({ name: app.name, dir, isLatest: !isCache, version }));
43
+ .command(upgradeCommandModule({
44
+ name: app.name,
45
+ dir,
46
+ isLatest: !isCache,
47
+ version,
48
+ }));
37
49
  if (aigne.cli.chat) {
38
- yargs.command({ ...agentCommandModule({ dir, agent: aigne.cli.chat }), command: "$0" });
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.46.2",
3
+ "version": "1.47.0-pre",
4
4
  "description": "Your command center for agent development",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -82,12 +82,12 @@
82
82
  "yoctocolors-cjs": "^2.1.3",
83
83
  "zod": "^3.25.67",
84
84
  "@aigne/agent-library": "^1.21.44",
85
- "@aigne/agentic-memory": "^1.0.44",
86
85
  "@aigne/aigne-hub": "^0.9.3",
87
86
  "@aigne/core": "^1.60.2",
88
- "@aigne/default-memory": "^1.2.7",
87
+ "@aigne/observability-api": "^0.10.4",
89
88
  "@aigne/openai": "^0.15.3",
90
- "@aigne/observability-api": "^0.10.4"
89
+ "@aigne/default-memory": "^1.2.7",
90
+ "@aigne/agentic-memory": "^1.0.44"
91
91
  },
92
92
  "devDependencies": {
93
93
  "@inquirer/testing": "^2.1.49",