@tangle-network/agent-runtime 0.16.0 → 0.17.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.
@@ -365,26 +365,6 @@ interface AgentTaskRunResult<TState, TAction, TActionResult, TEval extends Contr
365
365
  runRecords: RunRecord[];
366
366
  }
367
367
  /** @stable */
368
- interface AgentTaskRunSummary {
369
- taskId: string;
370
- domain?: string;
371
- status: AgentTaskStatus;
372
- reason: string;
373
- readinessStatus: KnowledgeReadinessDecision['status'];
374
- readinessScore: number;
375
- recommendedAction: KnowledgeReadinessReport['recommendedAction'];
376
- blockingGapIds: string[];
377
- nonBlockingGapIds: string[];
378
- questionCount: number;
379
- acquisitionPlanCount: number;
380
- acquiredEvidenceCount: number;
381
- controlStepCount: number;
382
- pass: boolean;
383
- failureClass?: string;
384
- wallMs: number;
385
- costUsd: number;
386
- }
387
- /** @stable */
388
368
  interface KnowledgeReadinessDecision {
389
369
  passed: boolean;
390
370
  status: 'ready' | 'blocked' | 'caveat';
@@ -396,4 +376,4 @@ interface KnowledgeReadinessDecision {
396
376
  nonBlockingGapIds: string[];
397
377
  }
398
378
 
399
- export type { AgentBackendInput as A, KnowledgeReadinessDecision as K, RuntimeStreamEvent as R, AgentExecutionBackend as a, AgentBackendContext as b, RunAgentTaskOptions as c, AgentTaskRunResult as d, RunAgentTaskStreamOptions as e, AgentTaskRunSummary as f, AgentTaskSpec as g, AgentRuntimeEvent as h, AgentTaskStatus as i, RuntimeSessionStore as j, RuntimeSession as k, AgentAdapter as l, AgentKnowledgeProvider as m, AgentRuntimeEventSink as n, AgentTaskContext as o };
379
+ export type { AgentBackendInput as A, KnowledgeReadinessDecision as K, RuntimeStreamEvent as R, AgentExecutionBackend as a, AgentBackendContext as b, RunAgentTaskOptions as c, AgentTaskRunResult as d, RunAgentTaskStreamOptions as e, AgentTaskSpec as f, AgentRuntimeEvent as g, AgentTaskStatus as h, RuntimeSessionStore as i, RuntimeSession as j, AgentAdapter as k, AgentKnowledgeProvider as l, AgentRuntimeEventSink as m, AgentTaskContext as n };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tangle-network/agent-runtime",
3
- "version": "0.16.0",
3
+ "version": "0.17.0",
4
4
  "description": "Reusable runtime lifecycle for domain-specific agents.",
5
5
  "homepage": "https://github.com/tangle-network/agent-runtime#readme",
6
6
  "repository": {