@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.
Files changed (70) hide show
  1. package/CHANGELOG.md +59 -0
  2. package/LICENSE +21 -0
  3. package/README.md +270 -0
  4. package/dist/adapters/theron.cjs +92 -0
  5. package/dist/adapters/theron.d.cts +42 -0
  6. package/dist/adapters/theron.d.ts +42 -0
  7. package/dist/adapters/theron.js +89 -0
  8. package/dist/agent/index.cjs +33 -0
  9. package/dist/agent/index.d.cts +84 -0
  10. package/dist/agent/index.d.ts +84 -0
  11. package/dist/agent/index.js +31 -0
  12. package/dist/council/index.cjs +68 -0
  13. package/dist/council/index.d.cts +96 -0
  14. package/dist/council/index.d.ts +96 -0
  15. package/dist/council/index.js +66 -0
  16. package/dist/index.cjs +1288 -0
  17. package/dist/index.d.cts +60 -0
  18. package/dist/index.d.ts +60 -0
  19. package/dist/index.js +1244 -0
  20. package/dist/loop/index.cjs +106 -0
  21. package/dist/loop/index.d.cts +285 -0
  22. package/dist/loop/index.d.ts +285 -0
  23. package/dist/loop/index.js +95 -0
  24. package/dist/mcp/index.cjs +153 -0
  25. package/dist/mcp/index.d.cts +69 -0
  26. package/dist/mcp/index.d.ts +69 -0
  27. package/dist/mcp/index.js +150 -0
  28. package/dist/memory/index.cjs +53 -0
  29. package/dist/memory/index.d.cts +73 -0
  30. package/dist/memory/index.d.ts +73 -0
  31. package/dist/memory/index.js +50 -0
  32. package/dist/patterns/index.cjs +159 -0
  33. package/dist/patterns/index.d.cts +200 -0
  34. package/dist/patterns/index.d.ts +200 -0
  35. package/dist/patterns/index.js +150 -0
  36. package/dist/receipts/index.cjs +151 -0
  37. package/dist/receipts/index.d.cts +132 -0
  38. package/dist/receipts/index.d.ts +132 -0
  39. package/dist/receipts/index.js +146 -0
  40. package/dist/runtime/index.cjs +205 -0
  41. package/dist/runtime/index.d.cts +148 -0
  42. package/dist/runtime/index.d.ts +148 -0
  43. package/dist/runtime/index.js +203 -0
  44. package/dist/session/index.cjs +49 -0
  45. package/dist/session/index.d.cts +79 -0
  46. package/dist/session/index.d.ts +79 -0
  47. package/dist/session/index.js +47 -0
  48. package/dist/tools/index.cjs +51 -0
  49. package/dist/tools/index.d.cts +52 -0
  50. package/dist/tools/index.d.ts +52 -0
  51. package/dist/tools/index.js +46 -0
  52. package/dist/verifiers/index.cjs +96 -0
  53. package/dist/verifiers/index.d.cts +63 -0
  54. package/dist/verifiers/index.d.ts +63 -0
  55. package/dist/verifiers/index.js +93 -0
  56. package/examples/01_code_reviewer.ts +90 -0
  57. package/examples/02_research_assistant.ts +85 -0
  58. package/examples/03_council_of_three.ts +91 -0
  59. package/examples/_adapters/openrouter.ts +90 -0
  60. package/examples/adapters/openrouter.ts +144 -0
  61. package/examples/adapters/theron.ts +105 -0
  62. package/examples/basic-agent.ts +56 -0
  63. package/examples/council-deliberation.ts +90 -0
  64. package/examples/cyber-recon-bot.ts +163 -0
  65. package/examples/loop-primitives.ts +50 -0
  66. package/examples/meeting-prep-bot.ts +172 -0
  67. package/examples/reasoning-patterns.ts +125 -0
  68. package/examples/support-triage-bot.ts +181 -0
  69. package/examples/verifier-kernel.ts +108 -0
  70. 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
+ }