@vextlabs/theron-agent-sdk 0.3.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 +59 -0
- package/LICENSE +21 -0
- package/README.md +270 -0
- package/dist/adapters/theron.cjs +92 -0
- package/dist/adapters/theron.d.cts +42 -0
- package/dist/adapters/theron.d.ts +42 -0
- package/dist/adapters/theron.js +89 -0
- package/dist/agent/index.cjs +33 -0
- package/dist/agent/index.d.cts +84 -0
- package/dist/agent/index.d.ts +84 -0
- package/dist/agent/index.js +31 -0
- package/dist/council/index.cjs +68 -0
- package/dist/council/index.d.cts +96 -0
- package/dist/council/index.d.ts +96 -0
- package/dist/council/index.js +66 -0
- package/dist/index.cjs +1288 -0
- package/dist/index.d.cts +60 -0
- package/dist/index.d.ts +60 -0
- package/dist/index.js +1244 -0
- package/dist/loop/index.cjs +106 -0
- package/dist/loop/index.d.cts +285 -0
- package/dist/loop/index.d.ts +285 -0
- package/dist/loop/index.js +95 -0
- package/dist/mcp/index.cjs +153 -0
- package/dist/mcp/index.d.cts +69 -0
- package/dist/mcp/index.d.ts +69 -0
- package/dist/mcp/index.js +150 -0
- package/dist/memory/index.cjs +53 -0
- package/dist/memory/index.d.cts +73 -0
- package/dist/memory/index.d.ts +73 -0
- package/dist/memory/index.js +50 -0
- package/dist/patterns/index.cjs +159 -0
- package/dist/patterns/index.d.cts +200 -0
- package/dist/patterns/index.d.ts +200 -0
- package/dist/patterns/index.js +150 -0
- package/dist/receipts/index.cjs +151 -0
- package/dist/receipts/index.d.cts +132 -0
- package/dist/receipts/index.d.ts +132 -0
- package/dist/receipts/index.js +146 -0
- package/dist/runtime/index.cjs +205 -0
- package/dist/runtime/index.d.cts +148 -0
- package/dist/runtime/index.d.ts +148 -0
- package/dist/runtime/index.js +203 -0
- package/dist/session/index.cjs +49 -0
- package/dist/session/index.d.cts +79 -0
- package/dist/session/index.d.ts +79 -0
- package/dist/session/index.js +47 -0
- package/dist/tools/index.cjs +51 -0
- package/dist/tools/index.d.cts +52 -0
- package/dist/tools/index.d.ts +52 -0
- package/dist/tools/index.js +46 -0
- package/dist/verifiers/index.cjs +96 -0
- package/dist/verifiers/index.d.cts +63 -0
- package/dist/verifiers/index.d.ts +63 -0
- package/dist/verifiers/index.js +93 -0
- package/examples/01_code_reviewer.ts +90 -0
- package/examples/02_research_assistant.ts +85 -0
- package/examples/03_council_of_three.ts +91 -0
- package/examples/_adapters/openrouter.ts +90 -0
- package/examples/adapters/openrouter.ts +144 -0
- package/examples/adapters/theron.ts +105 -0
- package/examples/basic-agent.ts +56 -0
- package/examples/council-deliberation.ts +90 -0
- package/examples/cyber-recon-bot.ts +163 -0
- package/examples/loop-primitives.ts +50 -0
- package/examples/meeting-prep-bot.ts +172 -0
- package/examples/reasoning-patterns.ts +125 -0
- package/examples/support-triage-bot.ts +181 -0
- package/examples/verifier-kernel.ts +108 -0
- package/package.json +154 -0
package/package.json
ADDED
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vextlabs/theron-agent-sdk",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Open-source agent SDK with a Council of specialists, deterministic verifier kernels, and Stoa-signed integrations. Build any agent against any model. From Vext Labs.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://tryvext.com/adk",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/Vext-Labs-Inc/theron-agent-sdk"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/Vext-Labs-Inc/theron-agent-sdk/issues"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"agent",
|
|
16
|
+
"agents",
|
|
17
|
+
"agent-sdk",
|
|
18
|
+
"ai-agents",
|
|
19
|
+
"council",
|
|
20
|
+
"deliberation",
|
|
21
|
+
"verifier-kernels",
|
|
22
|
+
"stoa",
|
|
23
|
+
"lora",
|
|
24
|
+
"domain-specialists",
|
|
25
|
+
"theron",
|
|
26
|
+
"vext-labs",
|
|
27
|
+
"open-source",
|
|
28
|
+
"self-improving",
|
|
29
|
+
"closed-loop"
|
|
30
|
+
],
|
|
31
|
+
"author": "Vext Labs, Inc.",
|
|
32
|
+
"type": "module",
|
|
33
|
+
"main": "./dist/index.cjs",
|
|
34
|
+
"module": "./dist/index.js",
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"exports": {
|
|
37
|
+
".": {
|
|
38
|
+
"types": "./dist/index.d.ts",
|
|
39
|
+
"import": "./dist/index.js",
|
|
40
|
+
"require": "./dist/index.cjs"
|
|
41
|
+
},
|
|
42
|
+
"./agent": {
|
|
43
|
+
"types": "./dist/agent/index.d.ts",
|
|
44
|
+
"import": "./dist/agent/index.js",
|
|
45
|
+
"require": "./dist/agent/index.cjs"
|
|
46
|
+
},
|
|
47
|
+
"./council": {
|
|
48
|
+
"types": "./dist/council/index.d.ts",
|
|
49
|
+
"import": "./dist/council/index.js",
|
|
50
|
+
"require": "./dist/council/index.cjs"
|
|
51
|
+
},
|
|
52
|
+
"./session": {
|
|
53
|
+
"types": "./dist/session/index.d.ts",
|
|
54
|
+
"import": "./dist/session/index.js",
|
|
55
|
+
"require": "./dist/session/index.cjs"
|
|
56
|
+
},
|
|
57
|
+
"./memory": {
|
|
58
|
+
"types": "./dist/memory/index.d.ts",
|
|
59
|
+
"import": "./dist/memory/index.js",
|
|
60
|
+
"require": "./dist/memory/index.cjs"
|
|
61
|
+
},
|
|
62
|
+
"./tools": {
|
|
63
|
+
"types": "./dist/tools/index.d.ts",
|
|
64
|
+
"import": "./dist/tools/index.js",
|
|
65
|
+
"require": "./dist/tools/index.cjs"
|
|
66
|
+
},
|
|
67
|
+
"./verifiers": {
|
|
68
|
+
"types": "./dist/verifiers/index.d.ts",
|
|
69
|
+
"import": "./dist/verifiers/index.js",
|
|
70
|
+
"require": "./dist/verifiers/index.cjs"
|
|
71
|
+
},
|
|
72
|
+
"./runtime": {
|
|
73
|
+
"types": "./dist/runtime/index.d.ts",
|
|
74
|
+
"import": "./dist/runtime/index.js",
|
|
75
|
+
"require": "./dist/runtime/index.cjs"
|
|
76
|
+
},
|
|
77
|
+
"./mcp": {
|
|
78
|
+
"types": "./dist/mcp/index.d.ts",
|
|
79
|
+
"import": "./dist/mcp/index.js",
|
|
80
|
+
"require": "./dist/mcp/index.cjs"
|
|
81
|
+
},
|
|
82
|
+
"./receipts": {
|
|
83
|
+
"types": "./dist/receipts/index.d.ts",
|
|
84
|
+
"import": "./dist/receipts/index.js",
|
|
85
|
+
"require": "./dist/receipts/index.cjs"
|
|
86
|
+
},
|
|
87
|
+
"./adapters/theron": {
|
|
88
|
+
"types": "./dist/adapters/theron.d.ts",
|
|
89
|
+
"import": "./dist/adapters/theron.js",
|
|
90
|
+
"require": "./dist/adapters/theron.cjs"
|
|
91
|
+
},
|
|
92
|
+
"./loop": {
|
|
93
|
+
"types": "./dist/loop/index.d.ts",
|
|
94
|
+
"import": "./dist/loop/index.js",
|
|
95
|
+
"require": "./dist/loop/index.cjs"
|
|
96
|
+
},
|
|
97
|
+
"./patterns": {
|
|
98
|
+
"types": "./dist/patterns/index.d.ts",
|
|
99
|
+
"import": "./dist/patterns/index.js",
|
|
100
|
+
"require": "./dist/patterns/index.cjs"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"files": [
|
|
104
|
+
"dist",
|
|
105
|
+
"README.md",
|
|
106
|
+
"CHANGELOG.md",
|
|
107
|
+
"LICENSE",
|
|
108
|
+
"examples"
|
|
109
|
+
],
|
|
110
|
+
"sideEffects": false,
|
|
111
|
+
"scripts": {
|
|
112
|
+
"build": "tsup",
|
|
113
|
+
"dev": "tsup --watch",
|
|
114
|
+
"test": "vitest run",
|
|
115
|
+
"test:watch": "vitest",
|
|
116
|
+
"test:coverage": "vitest run --coverage",
|
|
117
|
+
"docs": "typedoc",
|
|
118
|
+
"example:basic": "tsx examples/basic-agent.ts",
|
|
119
|
+
"example:council": "tsx examples/council-deliberation.ts",
|
|
120
|
+
"example:verifier": "tsx examples/verifier-kernel.ts",
|
|
121
|
+
"example:cyber": "tsx examples/cyber-recon-bot.ts",
|
|
122
|
+
"example:meeting": "tsx examples/meeting-prep-bot.ts",
|
|
123
|
+
"example:support": "tsx examples/support-triage-bot.ts",
|
|
124
|
+
"example:patterns": "tsx examples/reasoning-patterns.ts",
|
|
125
|
+
"example:loops": "tsx examples/loop-primitives.ts",
|
|
126
|
+
"prepublishOnly": "npm run build"
|
|
127
|
+
},
|
|
128
|
+
"dependencies": {
|
|
129
|
+
"zod": "^3.23.0"
|
|
130
|
+
},
|
|
131
|
+
"peerDependencies": {
|
|
132
|
+
"openai": "^4.0.0"
|
|
133
|
+
},
|
|
134
|
+
"peerDependenciesMeta": {
|
|
135
|
+
"openai": {
|
|
136
|
+
"optional": true
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"devDependencies": {
|
|
140
|
+
"@types/node": "^20.0.0",
|
|
141
|
+
"@vitest/coverage-v8": "^4.1.6",
|
|
142
|
+
"tsup": "^8.5.1",
|
|
143
|
+
"tsx": "^4.0.0",
|
|
144
|
+
"typedoc": "^0.28.19",
|
|
145
|
+
"typescript": "^5.3.0",
|
|
146
|
+
"vitest": "^4.1.6"
|
|
147
|
+
},
|
|
148
|
+
"engines": {
|
|
149
|
+
"node": ">=20.0.0"
|
|
150
|
+
},
|
|
151
|
+
"publishConfig": {
|
|
152
|
+
"access": "public"
|
|
153
|
+
}
|
|
154
|
+
}
|