@aigne/core 1.72.0-beta.18 → 1.72.0-beta.19

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,27 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.72.0-beta.19](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.72.0-beta.18...core-v1.72.0-beta.19) (2026-01-14)
4
+
5
+
6
+ ### Features
7
+
8
+ * **afs:** add module access control and schema validation support ([#904](https://github.com/AIGNE-io/aigne-framework/issues/904)) ([d0b279a](https://github.com/AIGNE-io/aigne-framework/commit/d0b279aac07ebe2bcc1fd4148498fc3f6bbcd561))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * improve test coverage tracking and reporting ([#903](https://github.com/AIGNE-io/aigne-framework/issues/903)) ([031144e](https://github.com/AIGNE-io/aigne-framework/commit/031144e74f29e882cffe52ffda8f7a18c76ace7f))
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * The following workspace dependencies were updated
19
+ * dependencies
20
+ * @aigne/afs bumped to 1.4.0-beta.9
21
+ * @aigne/afs-history bumped to 1.2.0-beta.10
22
+ * @aigne/observability-api bumped to 0.11.14-beta.4
23
+ * @aigne/platform-helpers bumped to 0.6.7-beta.2
24
+
3
25
  ## [1.72.0-beta.18](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.72.0-beta.17...core-v1.72.0-beta.18) (2026-01-13)
4
26
 
5
27
 
@@ -34,11 +34,7 @@ async function loadSkills(paths) {
34
34
  }
35
35
  async function discoverSkillsFromAFS(afs) {
36
36
  const modules = await afs.listModules();
37
- const filtered = modules.filter(({ module: m }) => "options" in m &&
38
- typeof m.options === "object" &&
39
- m.options &&
40
- "agentSkills" in m.options &&
41
- m.options.agentSkills === true);
37
+ const filtered = modules.filter(({ module: m }) => m.agentSkills === true);
42
38
  if (!filtered.length)
43
39
  return [];
44
40
  const skills = [];
@@ -25,11 +25,7 @@ export async function loadSkills(paths) {
25
25
  }
26
26
  export async function discoverSkillsFromAFS(afs) {
27
27
  const modules = await afs.listModules();
28
- const filtered = modules.filter(({ module: m }) => "options" in m &&
29
- typeof m.options === "object" &&
30
- m.options &&
31
- "agentSkills" in m.options &&
32
- m.options.agentSkills === true);
28
+ const filtered = modules.filter(({ module: m }) => m.agentSkills === true);
33
29
  if (!filtered.length)
34
30
  return [];
35
31
  const skills = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/core",
3
- "version": "1.72.0-beta.18",
3
+ "version": "1.72.0-beta.19",
4
4
  "description": "The functional core of agentic AI",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -93,10 +93,10 @@
93
93
  "zod": "^3.25.67",
94
94
  "zod-from-json-schema": "^0.0.5",
95
95
  "zod-to-json-schema": "^3.24.6",
96
- "@aigne/afs": "^1.4.0-beta.8",
97
- "@aigne/observability-api": "^0.11.14-beta.3",
98
- "@aigne/afs-history": "^1.2.0-beta.9",
99
- "@aigne/platform-helpers": "^0.6.7-beta.1"
96
+ "@aigne/afs": "^1.4.0-beta.9",
97
+ "@aigne/afs-history": "^1.2.0-beta.10",
98
+ "@aigne/platform-helpers": "^0.6.7-beta.2",
99
+ "@aigne/observability-api": "^0.11.14-beta.4"
100
100
  },
101
101
  "devDependencies": {
102
102
  "@types/bun": "^1.2.22",