-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
171 lines (171 loc) · 5.68 KB
/
Copy pathpackage.json
File metadata and controls
171 lines (171 loc) · 5.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "@tangle-network/agent-runtime",
"version": "0.95.0",
"description": "Shared task-lifecycle skeleton for agents: a recursive loop kernel for chat turns, one-shot tasks, and multi-attempt loops, with trace capture and eval-gated self-improvement. Domain behavior lives in adapters; scoring and ship-gates in @tangle-network/agent-eval.",
"homepage": "https://github.com/tangle-network/agent-runtime#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tangle-network/agent-runtime.git"
},
"bugs": {
"url": "https://github.com/tangle-network/agent-runtime/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./agent": {
"types": "./dist/agent.d.ts",
"import": "./dist/agent.js",
"default": "./dist/agent.js"
},
"./conversation": {
"types": "./dist/conversation.d.ts",
"import": "./dist/conversation.js",
"default": "./dist/conversation.js"
},
"./intelligence": {
"types": "./dist/intelligence.d.ts",
"import": "./dist/intelligence.js",
"default": "./dist/intelligence.js"
},
"./loops": {
"types": "./dist/loops.d.ts",
"import": "./dist/loops.js",
"default": "./dist/loops.js"
},
"./environment-provider": {
"types": "./dist/environment-provider.d.ts",
"import": "./dist/environment-provider.js",
"default": "./dist/environment-provider.js"
},
"./analyst-loop": {
"types": "./dist/analyst-loop.d.ts",
"import": "./dist/analyst-loop.js",
"default": "./dist/analyst-loop.js"
},
"./lifecycle": {
"types": "./dist/lifecycle.d.ts",
"import": "./dist/lifecycle.js",
"default": "./dist/lifecycle.js"
},
"./knowledge": {
"types": "./dist/knowledge.d.ts",
"import": "./dist/knowledge.js",
"default": "./dist/knowledge.js"
},
"./profiles": {
"types": "./dist/profiles.d.ts",
"import": "./dist/profiles.js",
"default": "./dist/profiles.js"
},
"./platform": {
"types": "./dist/platform.d.ts",
"import": "./dist/platform.js",
"default": "./dist/platform.js"
},
"./primeintellect": {
"types": "./dist/primeintellect/index.d.ts",
"import": "./dist/primeintellect/index.js",
"default": "./dist/primeintellect/index.js"
},
"./candidate-execution": {
"types": "./dist/candidate-execution/index.d.ts",
"import": "./dist/candidate-execution/index.js",
"default": "./dist/candidate-execution/index.js"
},
"./mcp": {
"types": "./dist/mcp/index.d.ts",
"import": "./dist/mcp/index.js",
"default": "./dist/mcp/index.js"
}
},
"bin": {
"agent-runtime-mcp": "./dist/mcp/bin.js",
"agent-runtime-loop": "./dist/loop-runner-bin.js"
},
"files": [
"dist",
"README.md",
"skills"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src tests examples",
"lint:fix": "biome check --write src tests examples",
"typecheck": "tsc --noEmit && pnpm run typecheck:examples",
"typecheck:examples": "tsc --noEmit -p tsconfig.examples.json",
"verify:bench": "pnpm --filter @tangle-network/agent-bench run typecheck:public && pnpm --filter @tangle-network/agent-bench test && pnpm --filter @tangle-network/agent-bench run verify:package:local-runtime",
"verify:bench:published": "pnpm --filter @tangle-network/agent-bench run typecheck:public && pnpm --filter @tangle-network/agent-bench test && pnpm --filter @tangle-network/agent-bench run verify:package",
"verify:package": "node scripts/verify-package-exports.mjs",
"verify:primeintellect": "pnpm build && node scripts/verify-primeintellect-v1.mjs",
"verify:primeintellect:live": "pnpm build && node scripts/verify-primeintellect-live.mjs",
"docs:api": "typedoc && node scripts/gen-primitive-catalog.mjs",
"docs:freshness": "node scripts/check-docs-freshness.mjs",
"docs:check": "pnpm run docs:api && git diff --exit-code -- docs/api && pnpm run docs:freshness"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@tangle-network/agent-eval": "0.122.1",
"@tangle-network/agent-interface": "0.30.0",
"@tangle-network/sandbox": "^0.11.1",
"@types/node": "^25.9.3",
"@types/tar-stream": "3.1.4",
"playwright": "^1.61.0",
"tsup": "^8.0.0",
"tsx": "^4.22.4",
"typedoc": "0.28.19",
"typedoc-plugin-markdown": "4.12.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"pnpm": {
"minimumReleaseAge": 4320,
"minimumReleaseAgeExclude": [
"@tangle-network/agent-eval",
"@tangle-network/agent-interface",
"@tangle-network/agent-knowledge",
"@tangle-network/agent-profile-materialize",
"@tangle-network/sandbox"
],
"onlyBuiltDependencies": [
"esbuild"
]
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"packageManager": "pnpm@10.28.0",
"peerDependencies": {
"@tangle-network/agent-eval": ">=0.122.1 <0.123.0",
"@tangle-network/agent-interface": ">=0.30.0 <0.31.0",
"@tangle-network/sandbox": ">=0.11.1 <1.0.0",
"playwright": "^1.40.0"
},
"peerDependenciesMeta": {
"@tangle-network/sandbox": {
"optional": true
},
"playwright": {
"optional": true
}
},
"dependencies": {
"@tangle-network/agent-knowledge": "^3.0.1",
"@tangle-network/agent-profile-materialize": "0.5.1",
"tar-stream": "3.2.0"
}
}