@tangle-network/agent-runtime 0.76.0 → 0.78.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/agent.d.ts +1 -1
- package/dist/agent.js +2 -2
- package/dist/analyst-loop.d.ts +1 -1
- package/dist/{chunk-MRWXCFV5.js → chunk-OL2SEETC.js} +2 -2
- package/dist/{chunk-ZKMOIEOB.js → chunk-OLPH6W3J.js} +66 -24
- package/dist/chunk-OLPH6W3J.js.map +1 -0
- package/dist/{chunk-QKNBYHMK.js → chunk-QJ6BWENI.js} +3 -3
- package/dist/{chunk-SA5GCF2X.js → chunk-YHS6I2IS.js} +177 -24
- package/dist/chunk-YHS6I2IS.js.map +1 -0
- package/dist/{coordination-c_7Olmtq.d.ts → coordination-Csxsy39a.d.ts} +3 -3
- package/dist/index.d.ts +6 -6
- package/dist/index.js +4 -4
- package/dist/intelligence.d.ts +2 -2
- package/dist/{loop-runner-bin-Dbtg787n.d.ts → loop-runner-bin-BTMpf1oY.d.ts} +2 -2
- package/dist/loop-runner-bin.d.ts +4 -4
- package/dist/loop-runner-bin.js +3 -3
- package/dist/loops.d.ts +189 -12
- package/dist/loops.js +8 -2
- package/dist/mcp/bin.js +1 -1
- package/dist/mcp/index.d.ts +7 -7
- package/dist/mcp/index.js +3 -3
- package/dist/{openai-tools-D5tcirFF.d.ts → openai-tools-B-3v06BE.d.ts} +1 -1
- package/dist/profiles.d.ts +1 -1
- package/dist/{router-client-C7kp_ECN.d.ts → router-client-CMAWGv1h.d.ts} +8 -0
- package/dist/{types-B-jWSfcu.d.ts → types-BF-MEsQB.d.ts} +21 -0
- package/dist/{worktree-CDxqwxGo.d.ts → worktree-DH_Y0brm.d.ts} +1 -1
- package/dist/{worktree-fanout-CljF1L2v.d.ts → worktree-fanout-DGC7jS7i.d.ts} +2 -2
- package/package.json +5 -8
- package/dist/chunk-SA5GCF2X.js.map +0 -1
- package/dist/chunk-ZKMOIEOB.js.map +0 -1
- /package/dist/{chunk-MRWXCFV5.js.map → chunk-OL2SEETC.js.map} +0 -0
- /package/dist/{chunk-QKNBYHMK.js.map → chunk-QJ6BWENI.js.map} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangle-network/agent-runtime",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.78.0",
|
|
4
4
|
"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.",
|
|
5
5
|
"homepage": "https://github.com/tangle-network/agent-runtime#readme",
|
|
6
6
|
"repository": {
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"scripts": {
|
|
76
76
|
"build": "tsup",
|
|
77
77
|
"dev": "tsup --watch",
|
|
78
|
-
"prepare": "tsup",
|
|
78
|
+
"prepare": "(git rev-parse --git-dir > /dev/null 2>&1 && git config core.hooksPath .githooks) || true; tsup",
|
|
79
79
|
"test": "vitest run",
|
|
80
80
|
"test:watch": "vitest",
|
|
81
81
|
"lint": "biome check src tests examples",
|
|
@@ -83,18 +83,19 @@
|
|
|
83
83
|
"typecheck": "tsc --noEmit && pnpm run typecheck:examples",
|
|
84
84
|
"typecheck:examples": "tsc --noEmit -p tsconfig.examples.json",
|
|
85
85
|
"verify:package": "node scripts/verify-package-exports.mjs",
|
|
86
|
-
"docs:api": "typedoc",
|
|
86
|
+
"docs:api": "typedoc && node scripts/gen-primitive-catalog.mjs",
|
|
87
87
|
"docs:freshness": "node scripts/check-docs-freshness.mjs",
|
|
88
88
|
"docs:check": "pnpm run docs:api && git diff --exit-code -- docs/api && pnpm run docs:freshness"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
91
|
"@biomejs/biome": "^2.4.15",
|
|
92
|
-
"@tangle-network/agent-eval": ">=0.
|
|
92
|
+
"@tangle-network/agent-eval": ">=0.100.0 <1.0.0",
|
|
93
93
|
"@tangle-network/agent-interface": ">=0.10.0 <1.0.0",
|
|
94
94
|
"@tangle-network/sandbox": ">=0.8.0 <1.0.0",
|
|
95
95
|
"@types/node": "^25.9.3",
|
|
96
96
|
"playwright": "^1.61.0",
|
|
97
97
|
"tsup": "^8.0.0",
|
|
98
|
+
"tsx": "^4.22.4",
|
|
98
99
|
"typedoc": "0.28.19",
|
|
99
100
|
"typedoc-plugin-markdown": "4.12.0",
|
|
100
101
|
"typescript": "^5.7.0",
|
|
@@ -119,7 +120,6 @@
|
|
|
119
120
|
"peerDependencies": {
|
|
120
121
|
"@tangle-network/agent-eval": ">=0.97.0 <1.0.0",
|
|
121
122
|
"@tangle-network/agent-interface": ">=0.10.0 <1.0.0",
|
|
122
|
-
"@tangle-network/agent-knowledge": ">=1.7.0 <2.0.0",
|
|
123
123
|
"@tangle-network/sandbox": ">=0.8.0 <1.0.0",
|
|
124
124
|
"playwright": "^1.40.0"
|
|
125
125
|
},
|
|
@@ -127,9 +127,6 @@
|
|
|
127
127
|
"@tangle-network/agent-interface": {
|
|
128
128
|
"optional": true
|
|
129
129
|
},
|
|
130
|
-
"@tangle-network/agent-knowledge": {
|
|
131
|
-
"optional": true
|
|
132
|
-
},
|
|
133
130
|
"@tangle-network/sandbox": {
|
|
134
131
|
"optional": true
|
|
135
132
|
},
|