@aigne/core 1.72.0-beta.11 → 1.72.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,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.72.0-beta.12](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.72.0-beta.11...core-v1.72.0-beta.12) (2026-01-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **afs:** support `~` in the local path for local-fs & add agent-skill example ([#877](https://github.com/AIGNE-io/aigne-framework/issues/877)) ([c86293f](https://github.com/AIGNE-io/aigne-framework/commit/c86293f3d70447974395d02e238305a42b256b66))
|
|
9
|
+
|
|
3
10
|
## [1.72.0-beta.11](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.72.0-beta.10...core-v1.72.0-beta.11) (2026-01-06)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -42,10 +42,12 @@ async function loadAgentSkillFromAFS({ afs, }) {
|
|
|
42
42
|
return;
|
|
43
43
|
const skills = [];
|
|
44
44
|
for (const module of filtered) {
|
|
45
|
-
const data = (await afs
|
|
45
|
+
const data = (await afs
|
|
46
|
+
.list(module.path, {
|
|
46
47
|
pattern: "**/SKILL.md",
|
|
47
48
|
maxDepth: 10,
|
|
48
|
-
})
|
|
49
|
+
})
|
|
50
|
+
.catch(() => ({ data: [] }))).data;
|
|
49
51
|
for (const entry of data) {
|
|
50
52
|
const { data: file } = await afs.read(entry.path);
|
|
51
53
|
if (typeof file?.content !== "string")
|
|
@@ -34,10 +34,12 @@ export async function loadAgentSkillFromAFS({ afs, }) {
|
|
|
34
34
|
return;
|
|
35
35
|
const skills = [];
|
|
36
36
|
for (const module of filtered) {
|
|
37
|
-
const data = (await afs
|
|
37
|
+
const data = (await afs
|
|
38
|
+
.list(module.path, {
|
|
38
39
|
pattern: "**/SKILL.md",
|
|
39
40
|
maxDepth: 10,
|
|
40
|
-
})
|
|
41
|
+
})
|
|
42
|
+
.catch(() => ({ data: [] }))).data;
|
|
41
43
|
for (const entry of data) {
|
|
42
44
|
const { data: file } = await afs.read(entry.path);
|
|
43
45
|
if (typeof file?.content !== "string")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/core",
|
|
3
|
-
"version": "1.72.0-beta.
|
|
3
|
+
"version": "1.72.0-beta.12",
|
|
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.6",
|
|
97
|
-
"@aigne/afs-history": "^1.2.0-beta.7",
|
|
98
96
|
"@aigne/observability-api": "^0.11.14-beta.1",
|
|
99
|
-
"@aigne/
|
|
97
|
+
"@aigne/afs-history": "^1.2.0-beta.7",
|
|
98
|
+
"@aigne/platform-helpers": "^0.6.7-beta",
|
|
99
|
+
"@aigne/afs": "^1.4.0-beta.6"
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
102
|
"@types/bun": "^1.2.22",
|