@tangle-network/agent-interface 1.8.0 → 1.9.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/README.md +3 -0
- package/dist/agent-candidate-code-schema.d.ts +17 -17
- package/dist/agent-candidate-execution-plan-schema.d.ts +179 -179
- package/dist/agent-candidate-lineage-schema.d.ts +2 -2
- package/dist/agent-candidate-outcome-schema.d.ts +56 -56
- package/dist/agent-candidate-profile-schema.d.ts +17 -17
- package/dist/agent-candidate-promotion-schema.d.ts +1085 -1085
- package/dist/agent-candidate-receipt-schema.d.ts +195 -195
- package/dist/agent-candidate-schema.d.ts +30 -30
- package/dist/agent-candidate-task-schema.d.ts +16 -16
- package/dist/agent-execution-limits.d.ts +1 -1
- package/dist/agent-execution-preparation-receipt.d.ts +71 -71
- package/dist/agent-improvement-measurement-schema.d.ts +26 -26
- package/dist/agent-instance.d.ts +2 -2
- package/dist/agent-profile-improvement-schema.d.ts +75 -75
- package/dist/agent-workspace-lease.d.ts +4 -4
- package/dist/certified-context.d.ts +2 -2
- package/dist/environment-interactive-control.d.ts +422 -422
- package/dist/environment-interactive-start.d.ts +17 -17
- package/dist/environment-observation.d.ts +39 -39
- package/dist/environment-runtime.d.ts +44 -20
- package/dist/environment-runtime.js +17 -0
- package/dist/harness.d.ts +11 -11
- package/dist/interaction-envelope.d.ts +26 -26
- package/dist/interaction-fields.d.ts +22 -22
- package/dist/interaction-permissions.d.ts +2 -2
- package/dist/portable-context-base.d.ts +1 -1
- package/dist/portable-context-continuation.d.ts +4 -4
- package/dist/portable-context-plan-request.d.ts +1 -1
- package/dist/portable-context-plan.d.ts +5 -5
- package/dist/portable-context-shared.d.ts +1 -1
- package/dist/portable-context-transfer.d.ts +6 -6
- package/dist/profile-schema.d.ts +37 -37
- package/dist/runtime-control.d.ts +10 -10
- package/dist/workspace-cleanup.d.ts +3 -3
- package/dist/workspace-fork.d.ts +4 -4
- package/package.json +4 -4
|
@@ -11,13 +11,13 @@ export declare const agentCandidateResolvedModelSchema: z.ZodObject<{
|
|
|
11
11
|
model: z.ZodString;
|
|
12
12
|
snapshot: z.ZodString;
|
|
13
13
|
reasoningEffort: z.ZodEnum<{
|
|
14
|
-
|
|
15
|
-
minimal: "minimal";
|
|
14
|
+
high: "high";
|
|
16
15
|
low: "low";
|
|
17
16
|
medium: "medium";
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
minimal: "minimal";
|
|
18
|
+
none: "none";
|
|
20
19
|
ultracode: "ultracode";
|
|
20
|
+
xhigh: "xhigh";
|
|
21
21
|
}>;
|
|
22
22
|
}, z.core.$strict>;
|
|
23
23
|
export declare const agentCandidateBenchmarkGraderIdentitySchema: z.ZodObject<{
|
|
@@ -63,22 +63,22 @@ export declare const agentCandidateRetryPolicySchema: z.ZodEnum<{
|
|
|
63
63
|
export declare const agentCandidateProfilePlanMaterialSchema: z.ZodObject<{
|
|
64
64
|
sourceProfileDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
65
65
|
harness: z.ZodEnum<{
|
|
66
|
+
acp: "acp";
|
|
67
|
+
amp: "amp";
|
|
66
68
|
"claude-code": "claude-code";
|
|
67
|
-
|
|
69
|
+
"cli-base": "cli-base";
|
|
68
70
|
codex: "codex";
|
|
69
|
-
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
prime: "prime";
|
|
71
|
+
cursor: "cursor";
|
|
72
|
+
"factory-droids": "factory-droids";
|
|
73
|
+
forge: "forge";
|
|
73
74
|
gemini: "gemini";
|
|
74
75
|
hermes: "hermes";
|
|
76
|
+
"kimi-code": "kimi-code";
|
|
77
|
+
nanoclaw: "nanoclaw";
|
|
75
78
|
openclaw: "openclaw";
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
cursor: "cursor";
|
|
80
|
-
acp: "acp";
|
|
81
|
-
"cli-base": "cli-base";
|
|
79
|
+
opencode: "opencode";
|
|
80
|
+
pi: "pi";
|
|
81
|
+
prime: "prime";
|
|
82
82
|
}>;
|
|
83
83
|
files: z.ZodArray<z.ZodObject<{
|
|
84
84
|
relPath: z.ZodString;
|
|
@@ -265,8 +265,8 @@ export declare const agentCandidateExecutionPlanMaterialSchema: z.ZodObject<{
|
|
|
265
265
|
}, z.core.$strict>;
|
|
266
266
|
codeKind: z.ZodEnum<{
|
|
267
267
|
disabled: "disabled";
|
|
268
|
-
"no-op": "no-op";
|
|
269
268
|
"git-patch": "git-patch";
|
|
269
|
+
"no-op": "no-op";
|
|
270
270
|
}>;
|
|
271
271
|
candidateWorkspace: z.ZodOptional<z.ZodObject<{
|
|
272
272
|
kind: z.ZodLiteral<"agent-candidate-workspace-snapshot">;
|
|
@@ -328,22 +328,22 @@ export declare const agentCandidateExecutionPlanMaterialSchema: z.ZodObject<{
|
|
|
328
328
|
mountPaths: z.ZodArray<z.ZodString>;
|
|
329
329
|
}, z.core.$strict>;
|
|
330
330
|
harness: z.ZodEnum<{
|
|
331
|
+
acp: "acp";
|
|
332
|
+
amp: "amp";
|
|
331
333
|
"claude-code": "claude-code";
|
|
332
|
-
|
|
334
|
+
"cli-base": "cli-base";
|
|
333
335
|
codex: "codex";
|
|
334
|
-
|
|
335
|
-
"
|
|
336
|
-
|
|
337
|
-
prime: "prime";
|
|
336
|
+
cursor: "cursor";
|
|
337
|
+
"factory-droids": "factory-droids";
|
|
338
|
+
forge: "forge";
|
|
338
339
|
gemini: "gemini";
|
|
339
340
|
hermes: "hermes";
|
|
341
|
+
"kimi-code": "kimi-code";
|
|
342
|
+
nanoclaw: "nanoclaw";
|
|
340
343
|
openclaw: "openclaw";
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
cursor: "cursor";
|
|
345
|
-
acp: "acp";
|
|
346
|
-
"cli-base": "cli-base";
|
|
344
|
+
opencode: "opencode";
|
|
345
|
+
pi: "pi";
|
|
346
|
+
prime: "prime";
|
|
347
347
|
}>;
|
|
348
348
|
harnessVersion: z.ZodString;
|
|
349
349
|
instructionDelivery: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -368,8 +368,8 @@ export declare const agentCandidateExecutionPlanMaterialSchema: z.ZodObject<{
|
|
|
368
368
|
image: z.ZodString;
|
|
369
369
|
indexDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
370
370
|
source: z.ZodEnum<{
|
|
371
|
-
"pinned-container": "pinned-container";
|
|
372
371
|
"evaluator-task-container": "evaluator-task-container";
|
|
372
|
+
"pinned-container": "pinned-container";
|
|
373
373
|
}>;
|
|
374
374
|
manifestDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
375
375
|
platform: z.ZodObject<{
|
|
@@ -386,13 +386,13 @@ export declare const agentCandidateExecutionPlanMaterialSchema: z.ZodObject<{
|
|
|
386
386
|
model: z.ZodString;
|
|
387
387
|
snapshot: z.ZodString;
|
|
388
388
|
reasoningEffort: z.ZodEnum<{
|
|
389
|
-
|
|
390
|
-
minimal: "minimal";
|
|
389
|
+
high: "high";
|
|
391
390
|
low: "low";
|
|
392
391
|
medium: "medium";
|
|
393
|
-
|
|
394
|
-
|
|
392
|
+
minimal: "minimal";
|
|
393
|
+
none: "none";
|
|
395
394
|
ultracode: "ultracode";
|
|
395
|
+
xhigh: "xhigh";
|
|
396
396
|
}>;
|
|
397
397
|
}, z.core.$strict>;
|
|
398
398
|
access: z.ZodObject<{
|
|
@@ -531,7 +531,7 @@ export declare const agentCandidateProfilePlanEvidenceSchema: z.ZodObject<{
|
|
|
531
531
|
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
532
532
|
material: z.ZodType<{
|
|
533
533
|
sourceProfileDigest: `sha256:${string}`;
|
|
534
|
-
harness: "
|
|
534
|
+
harness: "acp" | "amp" | "claude-code" | "cli-base" | "codex" | "cursor" | "factory-droids" | "forge" | "gemini" | "hermes" | "kimi-code" | "nanoclaw" | "openclaw" | "opencode" | "pi" | "prime";
|
|
535
535
|
files: {
|
|
536
536
|
relPath: string;
|
|
537
537
|
mode: number;
|
|
@@ -545,10 +545,6 @@ export declare const agentCandidateProfilePlanEvidenceSchema: z.ZodObject<{
|
|
|
545
545
|
kind: "public";
|
|
546
546
|
value: string;
|
|
547
547
|
}[];
|
|
548
|
-
unsupported: {
|
|
549
|
-
dimension: string;
|
|
550
|
-
reason: string;
|
|
551
|
-
}[];
|
|
552
548
|
systemPrompt?: {
|
|
553
549
|
kind: "public";
|
|
554
550
|
value: string;
|
|
@@ -557,9 +553,13 @@ export declare const agentCandidateProfilePlanEvidenceSchema: z.ZodObject<{
|
|
|
557
553
|
kind: "public";
|
|
558
554
|
value: string;
|
|
559
555
|
} | undefined;
|
|
556
|
+
unsupported: {
|
|
557
|
+
dimension: string;
|
|
558
|
+
reason: string;
|
|
559
|
+
}[];
|
|
560
560
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
561
561
|
sourceProfileDigest: `sha256:${string}`;
|
|
562
|
-
harness: "
|
|
562
|
+
harness: "acp" | "amp" | "claude-code" | "cli-base" | "codex" | "cursor" | "factory-droids" | "forge" | "gemini" | "hermes" | "kimi-code" | "nanoclaw" | "openclaw" | "opencode" | "pi" | "prime";
|
|
563
563
|
files: {
|
|
564
564
|
relPath: string;
|
|
565
565
|
mode: number;
|
|
@@ -573,10 +573,6 @@ export declare const agentCandidateProfilePlanEvidenceSchema: z.ZodObject<{
|
|
|
573
573
|
kind: "public";
|
|
574
574
|
value: string;
|
|
575
575
|
}[];
|
|
576
|
-
unsupported: {
|
|
577
|
-
dimension: string;
|
|
578
|
-
reason: string;
|
|
579
|
-
}[];
|
|
580
576
|
systemPrompt?: {
|
|
581
577
|
kind: "public";
|
|
582
578
|
value: string;
|
|
@@ -585,6 +581,10 @@ export declare const agentCandidateProfilePlanEvidenceSchema: z.ZodObject<{
|
|
|
585
581
|
kind: "public";
|
|
586
582
|
value: string;
|
|
587
583
|
} | undefined;
|
|
584
|
+
unsupported: {
|
|
585
|
+
dimension: string;
|
|
586
|
+
reason: string;
|
|
587
|
+
}[];
|
|
588
588
|
}, unknown>>;
|
|
589
589
|
artifact: z.ZodUnion<readonly [z.ZodObject<{
|
|
590
590
|
locator: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -612,7 +612,7 @@ export declare const agentCandidateProfileActivationSchema: z.ZodObject<{
|
|
|
612
612
|
digest: `sha256:${string}`;
|
|
613
613
|
material: {
|
|
614
614
|
sourceProfileDigest: `sha256:${string}`;
|
|
615
|
-
harness: "
|
|
615
|
+
harness: "acp" | "amp" | "claude-code" | "cli-base" | "codex" | "cursor" | "factory-droids" | "forge" | "gemini" | "hermes" | "kimi-code" | "nanoclaw" | "openclaw" | "opencode" | "pi" | "prime";
|
|
616
616
|
files: {
|
|
617
617
|
relPath: string;
|
|
618
618
|
mode: number;
|
|
@@ -626,10 +626,6 @@ export declare const agentCandidateProfileActivationSchema: z.ZodObject<{
|
|
|
626
626
|
kind: "public";
|
|
627
627
|
value: string;
|
|
628
628
|
}[];
|
|
629
|
-
unsupported: {
|
|
630
|
-
dimension: string;
|
|
631
|
-
reason: string;
|
|
632
|
-
}[];
|
|
633
629
|
systemPrompt?: {
|
|
634
630
|
kind: "public";
|
|
635
631
|
value: string;
|
|
@@ -638,8 +634,17 @@ export declare const agentCandidateProfileActivationSchema: z.ZodObject<{
|
|
|
638
634
|
kind: "public";
|
|
639
635
|
value: string;
|
|
640
636
|
} | undefined;
|
|
637
|
+
unsupported: {
|
|
638
|
+
dimension: string;
|
|
639
|
+
reason: string;
|
|
640
|
+
}[];
|
|
641
641
|
};
|
|
642
642
|
artifact: {
|
|
643
|
+
encoding: "base64";
|
|
644
|
+
content: string;
|
|
645
|
+
sha256: `sha256:${string}`;
|
|
646
|
+
byteLength: number;
|
|
647
|
+
} | {
|
|
643
648
|
locator: {
|
|
644
649
|
kind: "s3";
|
|
645
650
|
bucket: string;
|
|
@@ -652,18 +657,13 @@ export declare const agentCandidateProfileActivationSchema: z.ZodObject<{
|
|
|
652
657
|
};
|
|
653
658
|
sha256: `sha256:${string}`;
|
|
654
659
|
byteLength: number;
|
|
655
|
-
} | {
|
|
656
|
-
encoding: "base64";
|
|
657
|
-
content: string;
|
|
658
|
-
sha256: `sha256:${string}`;
|
|
659
|
-
byteLength: number;
|
|
660
660
|
};
|
|
661
661
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
662
662
|
kind: "agent-profile-workspace-plan";
|
|
663
663
|
digest: `sha256:${string}`;
|
|
664
664
|
material: {
|
|
665
665
|
sourceProfileDigest: `sha256:${string}`;
|
|
666
|
-
harness: "
|
|
666
|
+
harness: "acp" | "amp" | "claude-code" | "cli-base" | "codex" | "cursor" | "factory-droids" | "forge" | "gemini" | "hermes" | "kimi-code" | "nanoclaw" | "openclaw" | "opencode" | "pi" | "prime";
|
|
667
667
|
files: {
|
|
668
668
|
relPath: string;
|
|
669
669
|
mode: number;
|
|
@@ -677,10 +677,6 @@ export declare const agentCandidateProfileActivationSchema: z.ZodObject<{
|
|
|
677
677
|
kind: "public";
|
|
678
678
|
value: string;
|
|
679
679
|
}[];
|
|
680
|
-
unsupported: {
|
|
681
|
-
dimension: string;
|
|
682
|
-
reason: string;
|
|
683
|
-
}[];
|
|
684
680
|
systemPrompt?: {
|
|
685
681
|
kind: "public";
|
|
686
682
|
value: string;
|
|
@@ -689,8 +685,17 @@ export declare const agentCandidateProfileActivationSchema: z.ZodObject<{
|
|
|
689
685
|
kind: "public";
|
|
690
686
|
value: string;
|
|
691
687
|
} | undefined;
|
|
688
|
+
unsupported: {
|
|
689
|
+
dimension: string;
|
|
690
|
+
reason: string;
|
|
691
|
+
}[];
|
|
692
692
|
};
|
|
693
693
|
artifact: {
|
|
694
|
+
encoding: "base64";
|
|
695
|
+
content: string;
|
|
696
|
+
sha256: `sha256:${string}`;
|
|
697
|
+
byteLength: number;
|
|
698
|
+
} | {
|
|
694
699
|
locator: {
|
|
695
700
|
kind: "s3";
|
|
696
701
|
bucket: string;
|
|
@@ -703,11 +708,6 @@ export declare const agentCandidateProfileActivationSchema: z.ZodObject<{
|
|
|
703
708
|
};
|
|
704
709
|
sha256: `sha256:${string}`;
|
|
705
710
|
byteLength: number;
|
|
706
|
-
} | {
|
|
707
|
-
encoding: "base64";
|
|
708
|
-
content: string;
|
|
709
|
-
sha256: `sha256:${string}`;
|
|
710
|
-
byteLength: number;
|
|
711
711
|
};
|
|
712
712
|
}, unknown>>;
|
|
713
713
|
files: z.ZodArray<z.ZodObject<{
|
|
@@ -741,13 +741,64 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
741
741
|
taskRoot: string;
|
|
742
742
|
candidateRoot?: string | undefined;
|
|
743
743
|
};
|
|
744
|
-
codeKind: "disabled" | "
|
|
744
|
+
codeKind: "disabled" | "git-patch" | "no-op";
|
|
745
|
+
candidateWorkspace?: {
|
|
746
|
+
kind: "agent-candidate-workspace-snapshot";
|
|
747
|
+
digest: `sha256:${string}`;
|
|
748
|
+
material: {
|
|
749
|
+
kind: "agent-candidate-workspace-manifest";
|
|
750
|
+
files: {
|
|
751
|
+
path: string;
|
|
752
|
+
mode: number;
|
|
753
|
+
sha256: `sha256:${string}`;
|
|
754
|
+
byteLength: number;
|
|
755
|
+
}[];
|
|
756
|
+
};
|
|
757
|
+
manifest: {
|
|
758
|
+
encoding: "base64";
|
|
759
|
+
content: string;
|
|
760
|
+
sha256: `sha256:${string}`;
|
|
761
|
+
byteLength: number;
|
|
762
|
+
} | {
|
|
763
|
+
locator: {
|
|
764
|
+
kind: "s3";
|
|
765
|
+
bucket: string;
|
|
766
|
+
key: string;
|
|
767
|
+
region?: string | undefined;
|
|
768
|
+
} | {
|
|
769
|
+
kind: "ipfs";
|
|
770
|
+
cid: string;
|
|
771
|
+
path?: string | undefined;
|
|
772
|
+
};
|
|
773
|
+
sha256: `sha256:${string}`;
|
|
774
|
+
byteLength: number;
|
|
775
|
+
};
|
|
776
|
+
archive: {
|
|
777
|
+
encoding: "base64";
|
|
778
|
+
content: string;
|
|
779
|
+
sha256: `sha256:${string}`;
|
|
780
|
+
byteLength: number;
|
|
781
|
+
} | {
|
|
782
|
+
locator: {
|
|
783
|
+
kind: "s3";
|
|
784
|
+
bucket: string;
|
|
785
|
+
key: string;
|
|
786
|
+
region?: string | undefined;
|
|
787
|
+
} | {
|
|
788
|
+
kind: "ipfs";
|
|
789
|
+
cid: string;
|
|
790
|
+
path?: string | undefined;
|
|
791
|
+
};
|
|
792
|
+
sha256: `sha256:${string}`;
|
|
793
|
+
byteLength: number;
|
|
794
|
+
};
|
|
795
|
+
} | undefined;
|
|
745
796
|
profile: {
|
|
746
797
|
planDigest: `sha256:${string}`;
|
|
747
798
|
targetWorkspace: "candidate" | "task";
|
|
748
799
|
mountPaths: string[];
|
|
749
800
|
};
|
|
750
|
-
harness: "
|
|
801
|
+
harness: "acp" | "amp" | "claude-code" | "cli-base" | "codex" | "cursor" | "factory-droids" | "forge" | "gemini" | "hermes" | "kimi-code" | "nanoclaw" | "openclaw" | "opencode" | "pi" | "prime";
|
|
751
802
|
harnessVersion: string;
|
|
752
803
|
instructionDelivery: {
|
|
753
804
|
kind: "argv-append";
|
|
@@ -764,13 +815,13 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
764
815
|
maxModelCalls: number;
|
|
765
816
|
maxInputTokens: number;
|
|
766
817
|
maxOutputTokens: number;
|
|
767
|
-
maxCostUsd: number;
|
|
768
818
|
maxTotalTokens?: number | undefined;
|
|
819
|
+
maxCostUsd: number;
|
|
769
820
|
};
|
|
770
821
|
container: {
|
|
771
822
|
image: string;
|
|
772
823
|
indexDigest: `sha256:${string}`;
|
|
773
|
-
source: "
|
|
824
|
+
source: "evaluator-task-container" | "pinned-container";
|
|
774
825
|
manifestDigest: `sha256:${string}`;
|
|
775
826
|
platform: {
|
|
776
827
|
os: string;
|
|
@@ -785,7 +836,7 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
785
836
|
provider: string;
|
|
786
837
|
model: string;
|
|
787
838
|
snapshot: string;
|
|
788
|
-
reasoningEffort: "
|
|
839
|
+
reasoningEffort: "high" | "low" | "medium" | "minimal" | "none" | "ultracode" | "xhigh";
|
|
789
840
|
};
|
|
790
841
|
access: {
|
|
791
842
|
kind: "evaluator-mediated";
|
|
@@ -828,6 +879,7 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
828
879
|
path: string;
|
|
829
880
|
};
|
|
830
881
|
};
|
|
882
|
+
knowledgeManifestDigest?: `sha256:${string}` | undefined;
|
|
831
883
|
memory: {
|
|
832
884
|
mode: "isolated";
|
|
833
885
|
scope: "task";
|
|
@@ -835,6 +887,11 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
835
887
|
reset: {
|
|
836
888
|
kind: "fresh";
|
|
837
889
|
evidence: {
|
|
890
|
+
encoding: "base64";
|
|
891
|
+
content: string;
|
|
892
|
+
sha256: `sha256:${string}`;
|
|
893
|
+
byteLength: number;
|
|
894
|
+
} | {
|
|
838
895
|
locator: {
|
|
839
896
|
kind: "s3";
|
|
840
897
|
bucket: string;
|
|
@@ -847,11 +904,6 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
847
904
|
};
|
|
848
905
|
sha256: `sha256:${string}`;
|
|
849
906
|
byteLength: number;
|
|
850
|
-
} | {
|
|
851
|
-
encoding: "base64";
|
|
852
|
-
content: string;
|
|
853
|
-
sha256: `sha256:${string}`;
|
|
854
|
-
byteLength: number;
|
|
855
907
|
};
|
|
856
908
|
emptyStateDigest: `sha256:${string}`;
|
|
857
909
|
};
|
|
@@ -868,6 +920,11 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
868
920
|
}[];
|
|
869
921
|
};
|
|
870
922
|
manifest: {
|
|
923
|
+
encoding: "base64";
|
|
924
|
+
content: string;
|
|
925
|
+
sha256: `sha256:${string}`;
|
|
926
|
+
byteLength: number;
|
|
927
|
+
} | {
|
|
871
928
|
locator: {
|
|
872
929
|
kind: "s3";
|
|
873
930
|
bucket: string;
|
|
@@ -880,13 +937,13 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
880
937
|
};
|
|
881
938
|
sha256: `sha256:${string}`;
|
|
882
939
|
byteLength: number;
|
|
883
|
-
}
|
|
940
|
+
};
|
|
941
|
+
archive: {
|
|
884
942
|
encoding: "base64";
|
|
885
943
|
content: string;
|
|
886
944
|
sha256: `sha256:${string}`;
|
|
887
945
|
byteLength: number;
|
|
888
|
-
}
|
|
889
|
-
archive: {
|
|
946
|
+
} | {
|
|
890
947
|
locator: {
|
|
891
948
|
kind: "s3";
|
|
892
949
|
bucket: string;
|
|
@@ -899,11 +956,6 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
899
956
|
};
|
|
900
957
|
sha256: `sha256:${string}`;
|
|
901
958
|
byteLength: number;
|
|
902
|
-
} | {
|
|
903
|
-
encoding: "base64";
|
|
904
|
-
content: string;
|
|
905
|
-
sha256: `sha256:${string}`;
|
|
906
|
-
byteLength: number;
|
|
907
959
|
};
|
|
908
960
|
};
|
|
909
961
|
seedDigest?: `sha256:${string}` | undefined;
|
|
@@ -913,6 +965,27 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
913
965
|
network: {
|
|
914
966
|
mode: "disabled";
|
|
915
967
|
};
|
|
968
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
969
|
+
kind: "agent-candidate-execution-plan-material";
|
|
970
|
+
runCell: {
|
|
971
|
+
kind: "agent-candidate-run-cell";
|
|
972
|
+
experimentDigest: `sha256:${string}`;
|
|
973
|
+
arm: "baseline" | "candidate";
|
|
974
|
+
bundleDigest: `sha256:${string}`;
|
|
975
|
+
suiteDigest: `sha256:${string}`;
|
|
976
|
+
taskDigest: `sha256:${string}`;
|
|
977
|
+
taskIndex: number;
|
|
978
|
+
repetition: number;
|
|
979
|
+
seed: number;
|
|
980
|
+
attempt: number;
|
|
981
|
+
digest: `sha256:${string}`;
|
|
982
|
+
};
|
|
983
|
+
executionId: string;
|
|
984
|
+
workspaces: {
|
|
985
|
+
taskRoot: string;
|
|
986
|
+
candidateRoot?: string | undefined;
|
|
987
|
+
};
|
|
988
|
+
codeKind: "disabled" | "git-patch" | "no-op";
|
|
916
989
|
candidateWorkspace?: {
|
|
917
990
|
kind: "agent-candidate-workspace-snapshot";
|
|
918
991
|
digest: `sha256:${string}`;
|
|
@@ -926,6 +999,11 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
926
999
|
}[];
|
|
927
1000
|
};
|
|
928
1001
|
manifest: {
|
|
1002
|
+
encoding: "base64";
|
|
1003
|
+
content: string;
|
|
1004
|
+
sha256: `sha256:${string}`;
|
|
1005
|
+
byteLength: number;
|
|
1006
|
+
} | {
|
|
929
1007
|
locator: {
|
|
930
1008
|
kind: "s3";
|
|
931
1009
|
bucket: string;
|
|
@@ -938,13 +1016,13 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
938
1016
|
};
|
|
939
1017
|
sha256: `sha256:${string}`;
|
|
940
1018
|
byteLength: number;
|
|
941
|
-
}
|
|
1019
|
+
};
|
|
1020
|
+
archive: {
|
|
942
1021
|
encoding: "base64";
|
|
943
1022
|
content: string;
|
|
944
1023
|
sha256: `sha256:${string}`;
|
|
945
1024
|
byteLength: number;
|
|
946
|
-
}
|
|
947
|
-
archive: {
|
|
1025
|
+
} | {
|
|
948
1026
|
locator: {
|
|
949
1027
|
kind: "s3";
|
|
950
1028
|
bucket: string;
|
|
@@ -957,41 +1035,14 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
957
1035
|
};
|
|
958
1036
|
sha256: `sha256:${string}`;
|
|
959
1037
|
byteLength: number;
|
|
960
|
-
} | {
|
|
961
|
-
encoding: "base64";
|
|
962
|
-
content: string;
|
|
963
|
-
sha256: `sha256:${string}`;
|
|
964
|
-
byteLength: number;
|
|
965
1038
|
};
|
|
966
1039
|
} | undefined;
|
|
967
|
-
knowledgeManifestDigest?: `sha256:${string}` | undefined;
|
|
968
|
-
}, unknown, z.core.$ZodTypeInternals<{
|
|
969
|
-
kind: "agent-candidate-execution-plan-material";
|
|
970
|
-
runCell: {
|
|
971
|
-
kind: "agent-candidate-run-cell";
|
|
972
|
-
experimentDigest: `sha256:${string}`;
|
|
973
|
-
arm: "baseline" | "candidate";
|
|
974
|
-
bundleDigest: `sha256:${string}`;
|
|
975
|
-
suiteDigest: `sha256:${string}`;
|
|
976
|
-
taskDigest: `sha256:${string}`;
|
|
977
|
-
taskIndex: number;
|
|
978
|
-
repetition: number;
|
|
979
|
-
seed: number;
|
|
980
|
-
attempt: number;
|
|
981
|
-
digest: `sha256:${string}`;
|
|
982
|
-
};
|
|
983
|
-
executionId: string;
|
|
984
|
-
workspaces: {
|
|
985
|
-
taskRoot: string;
|
|
986
|
-
candidateRoot?: string | undefined;
|
|
987
|
-
};
|
|
988
|
-
codeKind: "disabled" | "no-op" | "git-patch";
|
|
989
1040
|
profile: {
|
|
990
1041
|
planDigest: `sha256:${string}`;
|
|
991
1042
|
targetWorkspace: "candidate" | "task";
|
|
992
1043
|
mountPaths: string[];
|
|
993
1044
|
};
|
|
994
|
-
harness: "
|
|
1045
|
+
harness: "acp" | "amp" | "claude-code" | "cli-base" | "codex" | "cursor" | "factory-droids" | "forge" | "gemini" | "hermes" | "kimi-code" | "nanoclaw" | "openclaw" | "opencode" | "pi" | "prime";
|
|
995
1046
|
harnessVersion: string;
|
|
996
1047
|
instructionDelivery: {
|
|
997
1048
|
kind: "argv-append";
|
|
@@ -1008,13 +1059,13 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
1008
1059
|
maxModelCalls: number;
|
|
1009
1060
|
maxInputTokens: number;
|
|
1010
1061
|
maxOutputTokens: number;
|
|
1011
|
-
maxCostUsd: number;
|
|
1012
1062
|
maxTotalTokens?: number | undefined;
|
|
1063
|
+
maxCostUsd: number;
|
|
1013
1064
|
};
|
|
1014
1065
|
container: {
|
|
1015
1066
|
image: string;
|
|
1016
1067
|
indexDigest: `sha256:${string}`;
|
|
1017
|
-
source: "
|
|
1068
|
+
source: "evaluator-task-container" | "pinned-container";
|
|
1018
1069
|
manifestDigest: `sha256:${string}`;
|
|
1019
1070
|
platform: {
|
|
1020
1071
|
os: string;
|
|
@@ -1029,7 +1080,7 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
1029
1080
|
provider: string;
|
|
1030
1081
|
model: string;
|
|
1031
1082
|
snapshot: string;
|
|
1032
|
-
reasoningEffort: "
|
|
1083
|
+
reasoningEffort: "high" | "low" | "medium" | "minimal" | "none" | "ultracode" | "xhigh";
|
|
1033
1084
|
};
|
|
1034
1085
|
access: {
|
|
1035
1086
|
kind: "evaluator-mediated";
|
|
@@ -1072,6 +1123,7 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
1072
1123
|
path: string;
|
|
1073
1124
|
};
|
|
1074
1125
|
};
|
|
1126
|
+
knowledgeManifestDigest?: `sha256:${string}` | undefined;
|
|
1075
1127
|
memory: {
|
|
1076
1128
|
mode: "isolated";
|
|
1077
1129
|
scope: "task";
|
|
@@ -1079,6 +1131,11 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
1079
1131
|
reset: {
|
|
1080
1132
|
kind: "fresh";
|
|
1081
1133
|
evidence: {
|
|
1134
|
+
encoding: "base64";
|
|
1135
|
+
content: string;
|
|
1136
|
+
sha256: `sha256:${string}`;
|
|
1137
|
+
byteLength: number;
|
|
1138
|
+
} | {
|
|
1082
1139
|
locator: {
|
|
1083
1140
|
kind: "s3";
|
|
1084
1141
|
bucket: string;
|
|
@@ -1091,11 +1148,6 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
1091
1148
|
};
|
|
1092
1149
|
sha256: `sha256:${string}`;
|
|
1093
1150
|
byteLength: number;
|
|
1094
|
-
} | {
|
|
1095
|
-
encoding: "base64";
|
|
1096
|
-
content: string;
|
|
1097
|
-
sha256: `sha256:${string}`;
|
|
1098
|
-
byteLength: number;
|
|
1099
1151
|
};
|
|
1100
1152
|
emptyStateDigest: `sha256:${string}`;
|
|
1101
1153
|
};
|
|
@@ -1112,6 +1164,11 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
1112
1164
|
}[];
|
|
1113
1165
|
};
|
|
1114
1166
|
manifest: {
|
|
1167
|
+
encoding: "base64";
|
|
1168
|
+
content: string;
|
|
1169
|
+
sha256: `sha256:${string}`;
|
|
1170
|
+
byteLength: number;
|
|
1171
|
+
} | {
|
|
1115
1172
|
locator: {
|
|
1116
1173
|
kind: "s3";
|
|
1117
1174
|
bucket: string;
|
|
@@ -1124,13 +1181,13 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
1124
1181
|
};
|
|
1125
1182
|
sha256: `sha256:${string}`;
|
|
1126
1183
|
byteLength: number;
|
|
1127
|
-
}
|
|
1184
|
+
};
|
|
1185
|
+
archive: {
|
|
1128
1186
|
encoding: "base64";
|
|
1129
1187
|
content: string;
|
|
1130
1188
|
sha256: `sha256:${string}`;
|
|
1131
1189
|
byteLength: number;
|
|
1132
|
-
}
|
|
1133
|
-
archive: {
|
|
1190
|
+
} | {
|
|
1134
1191
|
locator: {
|
|
1135
1192
|
kind: "s3";
|
|
1136
1193
|
bucket: string;
|
|
@@ -1143,11 +1200,6 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
1143
1200
|
};
|
|
1144
1201
|
sha256: `sha256:${string}`;
|
|
1145
1202
|
byteLength: number;
|
|
1146
|
-
} | {
|
|
1147
|
-
encoding: "base64";
|
|
1148
|
-
content: string;
|
|
1149
|
-
sha256: `sha256:${string}`;
|
|
1150
|
-
byteLength: number;
|
|
1151
1203
|
};
|
|
1152
1204
|
};
|
|
1153
1205
|
seedDigest?: `sha256:${string}` | undefined;
|
|
@@ -1157,58 +1209,6 @@ export declare const agentCandidateExecutionPlanEvidenceSchema: z.ZodObject<{
|
|
|
1157
1209
|
network: {
|
|
1158
1210
|
mode: "disabled";
|
|
1159
1211
|
};
|
|
1160
|
-
candidateWorkspace?: {
|
|
1161
|
-
kind: "agent-candidate-workspace-snapshot";
|
|
1162
|
-
digest: `sha256:${string}`;
|
|
1163
|
-
material: {
|
|
1164
|
-
kind: "agent-candidate-workspace-manifest";
|
|
1165
|
-
files: {
|
|
1166
|
-
path: string;
|
|
1167
|
-
mode: number;
|
|
1168
|
-
sha256: `sha256:${string}`;
|
|
1169
|
-
byteLength: number;
|
|
1170
|
-
}[];
|
|
1171
|
-
};
|
|
1172
|
-
manifest: {
|
|
1173
|
-
locator: {
|
|
1174
|
-
kind: "s3";
|
|
1175
|
-
bucket: string;
|
|
1176
|
-
key: string;
|
|
1177
|
-
region?: string | undefined;
|
|
1178
|
-
} | {
|
|
1179
|
-
kind: "ipfs";
|
|
1180
|
-
cid: string;
|
|
1181
|
-
path?: string | undefined;
|
|
1182
|
-
};
|
|
1183
|
-
sha256: `sha256:${string}`;
|
|
1184
|
-
byteLength: number;
|
|
1185
|
-
} | {
|
|
1186
|
-
encoding: "base64";
|
|
1187
|
-
content: string;
|
|
1188
|
-
sha256: `sha256:${string}`;
|
|
1189
|
-
byteLength: number;
|
|
1190
|
-
};
|
|
1191
|
-
archive: {
|
|
1192
|
-
locator: {
|
|
1193
|
-
kind: "s3";
|
|
1194
|
-
bucket: string;
|
|
1195
|
-
key: string;
|
|
1196
|
-
region?: string | undefined;
|
|
1197
|
-
} | {
|
|
1198
|
-
kind: "ipfs";
|
|
1199
|
-
cid: string;
|
|
1200
|
-
path?: string | undefined;
|
|
1201
|
-
};
|
|
1202
|
-
sha256: `sha256:${string}`;
|
|
1203
|
-
byteLength: number;
|
|
1204
|
-
} | {
|
|
1205
|
-
encoding: "base64";
|
|
1206
|
-
content: string;
|
|
1207
|
-
sha256: `sha256:${string}`;
|
|
1208
|
-
byteLength: number;
|
|
1209
|
-
};
|
|
1210
|
-
} | undefined;
|
|
1211
|
-
knowledgeManifestDigest?: `sha256:${string}` | undefined;
|
|
1212
1212
|
}, unknown>>;
|
|
1213
1213
|
artifact: z.ZodUnion<readonly [z.ZodObject<{
|
|
1214
1214
|
locator: z.ZodDiscriminatedUnion<[z.ZodObject<{
|