@aigne/platform-helpers 0.5.0 → 0.6.0
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 +14 -0
- package/package.json +6 -30
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.6.0](https://github.com/AIGNE-io/aigne-framework/compare/platform-helpers-v0.5.1...platform-helpers-v0.6.0) (2025-08-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **cli:** support custom task title of agent in cli ([#328](https://github.com/AIGNE-io/aigne-framework/issues/328)) ([128d75f](https://github.com/AIGNE-io/aigne-framework/commit/128d75fb42ca470b47a2793d79c92d7bb64cfedb))
|
|
9
|
+
|
|
10
|
+
## [0.5.1](https://github.com/AIGNE-io/aigne-framework/compare/platform-helpers-v0.5.0...platform-helpers-v0.5.1) (2025-08-06)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **models:** aigne-hub adapter not working in node.js v21 ([#320](https://github.com/AIGNE-io/aigne-framework/issues/320)) ([2884d00](https://github.com/AIGNE-io/aigne-framework/commit/2884d00b83e153ae7465ef1369fcd22d7c6d43e0))
|
|
16
|
+
|
|
3
17
|
## [0.5.0](https://github.com/AIGNE-io/aigne-framework/compare/platform-helpers-v0.4.0...platform-helpers-v0.5.0) (2025-08-01)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/platform-helpers",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "AIGNE core library for building AI-powered applications",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
8
|
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
|
|
9
|
-
"homepage": "https://
|
|
9
|
+
"homepage": "https://www.aigne.io/framework",
|
|
10
10
|
"license": "Elastic-2.0",
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
13
|
"url": "git+https://github.com/AIGNE-io/aigne-framework"
|
|
14
14
|
},
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/AIGNE-io/aigne-framework/issues"
|
|
17
|
+
},
|
|
15
18
|
"files": [
|
|
16
19
|
"lib/cjs",
|
|
17
20
|
"lib/esm",
|
|
@@ -46,38 +49,11 @@
|
|
|
46
49
|
}
|
|
47
50
|
},
|
|
48
51
|
"dependencies": {
|
|
49
|
-
"@
|
|
50
|
-
"@libsql/client": "^0.15.9",
|
|
51
|
-
"@modelcontextprotocol/sdk": "^1.15.0",
|
|
52
|
-
"@types/debug": "^4.1.12",
|
|
53
|
-
"content-type": "^1.0.5",
|
|
54
|
-
"debug": "^4.4.1",
|
|
55
|
-
"drizzle-orm": "^0.44.2",
|
|
56
|
-
"eventsource-parser": "^3.0.3",
|
|
57
|
-
"fast-deep-equal": "^3.1.3",
|
|
58
|
-
"immer": "^10.1.1",
|
|
59
|
-
"mustache": "^4.2.0",
|
|
60
|
-
"nanoid": "^5.1.5",
|
|
61
|
-
"p-retry": "^6.2.1",
|
|
62
|
-
"raw-body": "^3.0.0",
|
|
63
|
-
"sqlocal": "^0.14.1",
|
|
64
|
-
"strict-event-emitter": "^0.5.1",
|
|
65
|
-
"ufo": "^1.6.1",
|
|
66
|
-
"uuid": "^11.1.0",
|
|
67
|
-
"yaml": "^2.8.0",
|
|
68
|
-
"zod": "^3.25.67",
|
|
69
|
-
"zod-to-json-schema": "^3.24.6"
|
|
52
|
+
"@modelcontextprotocol/sdk": "^1.15.0"
|
|
70
53
|
},
|
|
71
54
|
"devDependencies": {
|
|
72
55
|
"@types/bun": "^1.2.18",
|
|
73
|
-
"@types/compression": "^1.8.1",
|
|
74
|
-
"@types/content-type": "^1.1.9",
|
|
75
|
-
"@types/express": "^5.0.3",
|
|
76
|
-
"@types/mustache": "^4.2.6",
|
|
77
56
|
"@types/node": "^24.0.12",
|
|
78
|
-
"compression": "^1.8.0",
|
|
79
|
-
"detect-port": "^2.1.0",
|
|
80
|
-
"express": "^5.1.0",
|
|
81
57
|
"npm-run-all": "^4.1.5",
|
|
82
58
|
"rimraf": "^6.0.1",
|
|
83
59
|
"typescript": "^5.8.3"
|