@aigne/core 1.1.0-beta.2 → 1.1.0-beta.3
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 +13 -0
- package/package.json +11 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
## 1.1.0-beta.3 (2025-3-11)
|
|
2
|
+
|
|
3
|
+
- chore: set module type for core package
|
|
4
|
+
|
|
5
|
+
## 1.1.0-beta.2 (2025-3-11)
|
|
6
|
+
|
|
7
|
+
- feat: use PromptBuilder instead of string instructions
|
|
8
|
+
- refactor: use tools instead of skills
|
|
9
|
+
- chore(examples): add puppeteer-mcp-server example
|
|
10
|
+
|
|
11
|
+
## 1.1.0-beta.1 (2025-3-11)
|
|
12
|
+
|
|
13
|
+
- feat: add Agent FunctionAgent AIAgent MCPAgent and ExecutionEngine
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/core",
|
|
3
|
-
"version": "1.1.0-beta.
|
|
3
|
+
"version": "1.1.0-beta.3",
|
|
4
4
|
"description": "AIGNE core library",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -8,16 +8,24 @@
|
|
|
8
8
|
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
|
|
9
9
|
"homepage": "https://github.com/blocklet/ai-studio#readme",
|
|
10
10
|
"license": "ISC",
|
|
11
|
+
"type": "module",
|
|
11
12
|
"main": "./lib/cjs/index.js",
|
|
12
13
|
"module": "./lib/esm/index.js",
|
|
13
14
|
"types": "./lib/dts/index.d.ts",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"import": "./lib/esm/index.js",
|
|
18
|
+
"require": "./lib/cjs/index.js",
|
|
19
|
+
"types": "./lib/dts/index.d.ts"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
14
22
|
"files": [
|
|
15
23
|
"lib/cjs",
|
|
16
24
|
"lib/dts",
|
|
17
25
|
"lib/esm",
|
|
18
26
|
"LICENSE",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
27
|
+
"README.md",
|
|
28
|
+
"CHANGELOG.md"
|
|
21
29
|
],
|
|
22
30
|
"repository": {
|
|
23
31
|
"type": "git",
|