@kb-labs/agent-core 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/README.md +83 -0
- package/dist/index.d.ts +2415 -0
- package/dist/index.js +12652 -0
- package/dist/index.js.map +1 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kb-labs/agent-core",
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Core logic for KB Labs Agents. Session management, orchestration, quality gates, multi-agent coordination.",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts"
|
|
12
|
+
},
|
|
13
|
+
"./dist/*": "./dist/*"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE"
|
|
19
|
+
],
|
|
20
|
+
"sideEffects": false,
|
|
21
|
+
"scripts": {
|
|
22
|
+
"pretype-check": "pnpm --filter @kb-labs/agent-core build",
|
|
23
|
+
"clean": "rimraf dist",
|
|
24
|
+
"build": "tsup --config tsup.config.ts",
|
|
25
|
+
"dev": "tsup --config tsup.config.ts --watch",
|
|
26
|
+
"lint": "eslint src --ext .ts",
|
|
27
|
+
"lint:fix": "eslint . --fix",
|
|
28
|
+
"type-check": "tsc --noEmit",
|
|
29
|
+
"test": "vitest run --passWithNoTests",
|
|
30
|
+
"test:watch": "vitest"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@kb-labs/agent-contracts": "^0.6.0",
|
|
34
|
+
"@kb-labs/agent-kernel": "^0.6.0",
|
|
35
|
+
"@kb-labs/agent-runtime": "^0.6.0",
|
|
36
|
+
"@kb-labs/agent-sdk": "^0.6.0",
|
|
37
|
+
"@kb-labs/agent-store": "^0.6.0",
|
|
38
|
+
"@kb-labs/agent-tools": "^0.6.0",
|
|
39
|
+
"@kb-labs/agent-history": "^0.6.0",
|
|
40
|
+
"@kb-labs/agent-tracing": "^0.6.0",
|
|
41
|
+
"@kb-labs/sdk": "^1.5.0",
|
|
42
|
+
"zod": "^3.23.8"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@kb-labs/devkit": "link:../../../../infra/kb-labs-devkit",
|
|
46
|
+
"@kb-labs/shared-testing": "link:../../../../platform/kb-labs-shared/packages/shared-testing",
|
|
47
|
+
"@types/node": "^24.3.3",
|
|
48
|
+
"eslint": "^9",
|
|
49
|
+
"rimraf": "^6.0.1",
|
|
50
|
+
"tsup": "^8.5.0",
|
|
51
|
+
"typescript": "^5.6.3",
|
|
52
|
+
"vitest": "^3.2.4"
|
|
53
|
+
},
|
|
54
|
+
"engines": {
|
|
55
|
+
"node": ">=20.0.0",
|
|
56
|
+
"pnpm": ">=9.0.0"
|
|
57
|
+
}
|
|
58
|
+
}
|