@robota-sdk/agent-core 3.0.0-beta.53 → 3.0.0-beta.55
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 +16 -0
- package/dist/browser/index.d.ts +114 -45
- package/dist/browser/index.js +7 -7
- package/dist/node/index.cjs +7 -7
- package/dist/node/index.d.cts +114 -45
- package/dist/node/index.d.ts +114 -45
- package/dist/node/index.js +7 -7
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@robota-sdk/agent-core",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.55",
|
|
4
4
|
"description": "Complete AI agent implementation with unified core and tools functionality - conversation management, plugin system, and advanced agent features",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/node/index.js",
|
|
@@ -87,14 +87,17 @@
|
|
|
87
87
|
},
|
|
88
88
|
"scripts": {
|
|
89
89
|
"build": "tsup",
|
|
90
|
+
"build:js": "tsup --no-dts",
|
|
91
|
+
"build:types": "tsup --dts-only",
|
|
90
92
|
"dev": "tsup --watch",
|
|
91
93
|
"clean": "rimraf dist",
|
|
92
94
|
"test": "vitest run --passWithNoTests",
|
|
93
95
|
"test:watch": "vitest",
|
|
94
96
|
"test:coverage": "vitest run --coverage",
|
|
95
97
|
"lint": "eslint src --ext .ts,.tsx",
|
|
98
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
96
99
|
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
97
100
|
"scenario:verify": "pnpm exec tsx examples/verify-offline.ts",
|
|
98
|
-
"scenario:record": "node ../../scripts/harness/record-owner-scenario.mjs --scope packages/
|
|
101
|
+
"scenario:record": "node ../../scripts/harness/record-owner-scenario.mjs --scope packages/agent-core --output examples/scenarios/offline-verify.record.json -- pnpm scenario:verify"
|
|
99
102
|
}
|
|
100
103
|
}
|