@theokit/agents 4.4.0 → 4.5.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/dist/interactive.d.ts +1 -0
- package/dist/tools.d.ts +1 -0
- package/dist/tools.js +3 -0
- package/dist/tools.js.map +1 -0
- package/package.json +9 -5
package/dist/interactive.d.ts
CHANGED
package/dist/tools.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@theokit/sdk-tools';
|
package/dist/tools.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/tools-entry.ts"],"sourcesContent":["// M62 — `@theokit/agents/tools`: pass-through of `@theokit/sdk-tools`'s ready-made tool factories\n// (`createReadFileTool`, `createShellTool`, … + `withName`/`withDescription`). These are stateless\n// third-party factories — enriching them would be reinventing the SDK-tools' own sugar (blueprint Q5),\n// so this is a pure re-export (parsimony Rung 9). The consumer imports its built-in tools from the\n// Theokit layer, not from `@theokit/sdk-tools` directly. `@theokit/sdk-tools` is an OPTIONAL peer —\n// only consumers of this subpath need it installed.\nexport * from '@theokit/sdk-tools'\n"],"mappings":";AAMA,cAAc;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theokit/agents",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.0",
|
|
4
4
|
"description": "AI agents as first-class citizens of the TheoKit pipeline. The fluent agent()/tool() builders compile to SDK Agent.create() (M31 builder-only authoring API).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -38,6 +38,10 @@
|
|
|
38
38
|
"./auth": {
|
|
39
39
|
"types": "./dist/auth.d.ts",
|
|
40
40
|
"import": "./dist/auth.js"
|
|
41
|
+
},
|
|
42
|
+
"./tools": {
|
|
43
|
+
"types": "./dist/tools.d.ts",
|
|
44
|
+
"import": "./dist/tools.js"
|
|
41
45
|
}
|
|
42
46
|
},
|
|
43
47
|
"files": [
|
|
@@ -49,7 +53,7 @@
|
|
|
49
53
|
"@theokit/http": ">=0.1.0-alpha.0",
|
|
50
54
|
"@theokit/sdk": "^4.19.0",
|
|
51
55
|
"@theokit/sdk-pty": ">=0.1.0 <1.0.0",
|
|
52
|
-
"@theokit/sdk-tools": ">=0.
|
|
56
|
+
"@theokit/sdk-tools": ">=0.20.0 <1.0.0",
|
|
53
57
|
"ai": ">=7.0.0",
|
|
54
58
|
"zod": "^4.0.0"
|
|
55
59
|
},
|
|
@@ -67,14 +71,14 @@
|
|
|
67
71
|
"devDependencies": {
|
|
68
72
|
"@theokit/sdk": "^4.19.0",
|
|
69
73
|
"@theokit/sdk-pty": "^0.1.0",
|
|
70
|
-
"@theokit/sdk-tools": "^0.
|
|
74
|
+
"@theokit/sdk-tools": "^0.20.0",
|
|
71
75
|
"ai": "^7.0.14",
|
|
72
76
|
"tsup": "^8.5.1",
|
|
73
77
|
"typescript": "^5.9.3",
|
|
74
78
|
"vitest": "^3.2.6",
|
|
75
79
|
"zod": "^4.4.3",
|
|
76
|
-
"@theokit/
|
|
77
|
-
"@theokit/
|
|
80
|
+
"@theokit/http": "1.0.0",
|
|
81
|
+
"@theokit/presenter": "0.3.0"
|
|
78
82
|
},
|
|
79
83
|
"engines": {
|
|
80
84
|
"node": ">=22.12.0"
|