@tangle-network/agent-runtime 0.94.5 → 0.94.6
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/candidate-execution/index.d.ts +39 -4
- package/dist/candidate-execution/index.js +8 -2
- package/dist/{chunk-MZH4HORF.js → chunk-5BT2NMML.js} +689 -3
- package/dist/chunk-5BT2NMML.js.map +1 -0
- package/dist/{chunk-KHLE3C5G.js → chunk-HKMKUESZ.js} +169 -50
- package/dist/chunk-HKMKUESZ.js.map +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/dist/intelligence.d.ts +1 -1
- package/dist/intelligence.js +1 -1
- package/dist/{prepare-BKxAiUcH.d.ts → prepare-DIeVgQG3.d.ts} +1 -1
- package/package.json +4 -2
- package/dist/chunk-KHLE3C5G.js.map +0 -1
- package/dist/chunk-MZH4HORF.js.map +0 -1
package/dist/intelligence.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { b as ToolSpec, c as RuntimeTelemetryOptions } from './sanitize-Dr3SliRC
|
|
|
4
4
|
import { AnalystFinding } from '@tangle-network/agent-eval/analyst';
|
|
5
5
|
import { Scenario, SelfImproveResult } from '@tangle-network/agent-eval/contract';
|
|
6
6
|
import { R as RunAnalystLoopOpts, a as RunAnalystLoopResult } from './types-BC3bZpH0.js';
|
|
7
|
-
import { A as AgentCandidateBundleInput, a as AgentCandidateTaskExecution, b as AgentCandidateExecutionPorts, P as PrepareAgentCandidateExecutionOptions, E as ExecutePreparedAgentCandidateOptions, c as AgentCandidateRunFinalization } from './prepare-
|
|
7
|
+
import { A as AgentCandidateBundleInput, a as AgentCandidateTaskExecution, b as AgentCandidateExecutionPorts, P as PrepareAgentCandidateExecutionOptions, E as ExecutePreparedAgentCandidateOptions, c as AgentCandidateRunFinalization } from './prepare-DIeVgQG3.js';
|
|
8
8
|
import { I as ImproveSurface, a as ImproveOptions, b as ImproveResult } from './improve-Ciuvu2jh.js';
|
|
9
9
|
import '@tangle-network/agent-eval';
|
|
10
10
|
import '@tangle-network/sandbox';
|
package/dist/intelligence.js
CHANGED
|
@@ -13,7 +13,7 @@ declare const verifiedTaskOutcomeBrand: unique symbol;
|
|
|
13
13
|
interface AgentCandidateArtifactPort {
|
|
14
14
|
read(ref: AgentCandidateArtifactRef): Promise<Uint8Array>;
|
|
15
15
|
}
|
|
16
|
-
type AgentCandidateOutputPurpose = 'task-manifest' | 'task-archive' | 'task-patch' | 'task-outcome' | 'memory-after-manifest' | 'memory-after-archive' | 'grader-evidence' | 'benchmark-result' | 'model-settlement' | 'trace' | 'run-receipt' | 'failure-evidence';
|
|
16
|
+
type AgentCandidateOutputPurpose = 'candidate-workspace-manifest' | 'candidate-workspace-archive' | 'task-manifest' | 'task-archive' | 'task-patch' | 'task-outcome' | 'memory-after-manifest' | 'memory-after-archive' | 'grader-evidence' | 'benchmark-result' | 'model-settlement' | 'trace' | 'run-receipt' | 'failure-evidence';
|
|
17
17
|
/** Durable content-addressed evidence store controlled only by the evaluator. */
|
|
18
18
|
interface AgentCandidateOutputArtifactPort extends AgentCandidateArtifactPort {
|
|
19
19
|
/** Must be idempotent for identical bytes and return only a durable S3/IPFS locator. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangle-network/agent-runtime",
|
|
3
|
-
"version": "0.94.
|
|
3
|
+
"version": "0.94.6",
|
|
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": {
|
|
@@ -108,6 +108,7 @@
|
|
|
108
108
|
"@tangle-network/agent-interface": "^0.25.0",
|
|
109
109
|
"@tangle-network/sandbox": "^0.9.7",
|
|
110
110
|
"@types/node": "^25.9.3",
|
|
111
|
+
"@types/tar-stream": "3.1.4",
|
|
111
112
|
"playwright": "^1.61.0",
|
|
112
113
|
"tsup": "^8.0.0",
|
|
113
114
|
"tsx": "^4.22.4",
|
|
@@ -149,6 +150,7 @@
|
|
|
149
150
|
},
|
|
150
151
|
"dependencies": {
|
|
151
152
|
"@tangle-network/agent-knowledge": "^1.12.1",
|
|
152
|
-
"@tangle-network/agent-profile-materialize": "0.3.2"
|
|
153
|
+
"@tangle-network/agent-profile-materialize": "0.3.2",
|
|
154
|
+
"tar-stream": "3.2.0"
|
|
153
155
|
}
|
|
154
156
|
}
|