@aigne/agent-library 1.24.0-beta.10 → 1.24.0-beta.11

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
@@ -7,6 +7,21 @@
7
7
  * @aigne/core bumped to 1.22.0
8
8
  * @aigne/openai bumped to 0.3.4
9
9
 
10
+ ## [1.24.0-beta.11](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.24.0-beta.10...agent-library-v1.24.0-beta.11) (2026-01-02)
11
+
12
+
13
+ ### Features
14
+
15
+ * **cli:** add run-skill command ([#868](https://github.com/AIGNE-io/aigne-framework/issues/868)) ([f62ffe2](https://github.com/AIGNE-io/aigne-framework/commit/f62ffe21acc49ec1a68349fbb35a13d0fadd239a))
16
+
17
+
18
+ ### Dependencies
19
+
20
+ * The following workspace dependencies were updated
21
+ * dependencies
22
+ * @aigne/core bumped to 1.72.0-beta.9
23
+ * @aigne/openai bumped to 0.16.16-beta.9
24
+
10
25
  ## [1.24.0-beta.10](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.24.0-beta.9...agent-library-v1.24.0-beta.10) (2025-12-31)
11
26
 
12
27
 
@@ -6,4 +6,5 @@ export default class AgentSkillManagerAgent<I extends Message = Message, O exten
6
6
  filepath: string;
7
7
  parsed: object;
8
8
  }): Promise<Agent<I, O>>;
9
+ constructor(options: AgentSkillManagerOptions<I, O>);
9
10
  }
@@ -16,5 +16,11 @@ class AgentSkillManagerAgent extends core_1.AIAgent {
16
16
  },
17
17
  });
18
18
  }
19
+ constructor(options) {
20
+ super({
21
+ ...options,
22
+ instructions: options.instructions || prompt_js_1.AgentSkillManagerSystemPrompt,
23
+ });
24
+ }
19
25
  }
20
26
  exports.default = AgentSkillManagerAgent;
@@ -6,4 +6,5 @@ export default class AgentSkillManagerAgent<I extends Message = Message, O exten
6
6
  filepath: string;
7
7
  parsed: object;
8
8
  }): Promise<Agent<I, O>>;
9
+ constructor(options: AgentSkillManagerOptions<I, O>);
9
10
  }
@@ -6,4 +6,5 @@ export default class AgentSkillManagerAgent<I extends Message = Message, O exten
6
6
  filepath: string;
7
7
  parsed: object;
8
8
  }): Promise<Agent<I, O>>;
9
+ constructor(options: AgentSkillManagerOptions<I, O>);
9
10
  }
@@ -14,4 +14,10 @@ export default class AgentSkillManagerAgent extends AIAgent {
14
14
  },
15
15
  });
16
16
  }
17
+ constructor(options) {
18
+ super({
19
+ ...options,
20
+ instructions: options.instructions || AgentSkillManagerSystemPrompt,
21
+ });
22
+ }
17
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/agent-library",
3
- "version": "1.24.0-beta.10",
3
+ "version": "1.24.0-beta.11",
4
4
  "description": "Collection of agent libraries for AIGNE framework",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -57,9 +57,9 @@
57
57
  "yaml": "^2.8.1",
58
58
  "zod": "^3.25.67",
59
59
  "zod-to-json-schema": "^3.24.6",
60
- "@aigne/core": "^1.72.0-beta.8",
60
+ "@aigne/core": "^1.72.0-beta.9",
61
61
  "@aigne/sqlite": "^0.4.9-beta",
62
- "@aigne/openai": "^0.16.16-beta.8"
62
+ "@aigne/openai": "^0.16.16-beta.9"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@types/bun": "^1.2.22",