@tangle-network/agent-interface 0.37.0 → 0.39.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-candidate-execution-plan-schema.d.ts +50 -27
- package/dist/agent-candidate-execution-plan-schema.js +4 -16
- package/dist/agent-candidate-profile-schema.d.ts +5 -25
- package/dist/agent-candidate-promotion-schema.d.ts +280 -285
- package/dist/agent-candidate-receipt-schema.d.ts +50 -27
- package/dist/agent-candidate-schema.d.ts +5 -25
- package/dist/agent-candidate.d.ts +2 -8
- package/dist/agent-execution-preparation.d.ts +366 -0
- package/dist/agent-execution-preparation.js +736 -0
- package/dist/agent-profile-activation.d.ts +41 -0
- package/dist/agent-profile-activation.js +24 -0
- package/dist/agent-profile-canonical.d.ts +12 -0
- package/dist/agent-profile-canonical.js +79 -0
- package/dist/agent-profile-improvement-schema.d.ts +3 -6
- package/dist/agent-profile-improvement-schema.js +94 -56
- package/dist/agent-profile-improvement.d.ts +3 -3
- package/dist/agent-profile-materialization.d.ts +34 -0
- package/dist/agent-profile-materialization.js +243 -0
- package/dist/agent-profile.d.ts +44 -7
- package/dist/agent-profile.js +39 -2
- package/dist/agent-workspace-lease.d.ts +138 -0
- package/dist/agent-workspace-lease.js +203 -0
- package/dist/harness-capabilities.d.ts +1 -1
- package/dist/harness-capabilities.js +2 -9
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/profile-diff.d.ts +11 -0
- package/dist/profile-diff.js +123 -3
- package/dist/profile-schema.d.ts +142 -84
- package/dist/profile-schema.js +152 -41
- package/package.json +1 -1
|
@@ -48,25 +48,13 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
48
48
|
allow: "allow";
|
|
49
49
|
ask: "ask";
|
|
50
50
|
deny: "deny";
|
|
51
|
-
}>, z.
|
|
52
|
-
allow: "allow";
|
|
53
|
-
ask: "ask";
|
|
54
|
-
deny: "deny";
|
|
55
|
-
}>>]>>>;
|
|
51
|
+
}>, z.ZodType<Record<string, "allow" | "ask" | "deny">, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny">, unknown>>]>>>;
|
|
56
52
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
57
53
|
mcp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./agent-candidate.js").AgentCandidateMcpServer, unknown, z.core.$ZodTypeInternals<import("./agent-candidate.js").AgentCandidateMcpServer, unknown>>>>;
|
|
58
54
|
subagents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
59
55
|
prompt: z.ZodOptional<z.ZodString>;
|
|
60
|
-
permissions: z.ZodOptional<z.
|
|
61
|
-
|
|
62
|
-
ask: "ask";
|
|
63
|
-
deny: "deny";
|
|
64
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
65
|
-
allow: "allow";
|
|
66
|
-
ask: "ask";
|
|
67
|
-
deny: "deny";
|
|
68
|
-
}>>]>>>;
|
|
69
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
56
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
57
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
70
58
|
description: z.ZodOptional<z.ZodString>;
|
|
71
59
|
model: z.ZodOptional<z.ZodString>;
|
|
72
60
|
maxSteps: z.ZodOptional<z.ZodNumber>;
|
|
@@ -544,16 +532,8 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
544
532
|
}, z.core.$strict>>>>;
|
|
545
533
|
modes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
546
534
|
prompt: z.ZodOptional<z.ZodString>;
|
|
547
|
-
permissions: z.ZodOptional<z.
|
|
548
|
-
|
|
549
|
-
ask: "ask";
|
|
550
|
-
deny: "deny";
|
|
551
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
552
|
-
allow: "allow";
|
|
553
|
-
ask: "ask";
|
|
554
|
-
deny: "deny";
|
|
555
|
-
}>>]>>>;
|
|
556
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
535
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
536
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
557
537
|
description: z.ZodOptional<z.ZodString>;
|
|
558
538
|
model: z.ZodOptional<z.ZodString>;
|
|
559
539
|
}, z.core.$strict>>>;
|
|
@@ -891,25 +871,13 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
891
871
|
allow: "allow";
|
|
892
872
|
ask: "ask";
|
|
893
873
|
deny: "deny";
|
|
894
|
-
}>, z.
|
|
895
|
-
allow: "allow";
|
|
896
|
-
ask: "ask";
|
|
897
|
-
deny: "deny";
|
|
898
|
-
}>>]>>>;
|
|
874
|
+
}>, z.ZodType<Record<string, "allow" | "ask" | "deny">, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny">, unknown>>]>>>;
|
|
899
875
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
900
876
|
mcp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./agent-candidate.js").AgentCandidateMcpServer, unknown, z.core.$ZodTypeInternals<import("./agent-candidate.js").AgentCandidateMcpServer, unknown>>>>;
|
|
901
877
|
subagents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
902
878
|
prompt: z.ZodOptional<z.ZodString>;
|
|
903
|
-
permissions: z.ZodOptional<z.
|
|
904
|
-
|
|
905
|
-
ask: "ask";
|
|
906
|
-
deny: "deny";
|
|
907
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
908
|
-
allow: "allow";
|
|
909
|
-
ask: "ask";
|
|
910
|
-
deny: "deny";
|
|
911
|
-
}>>]>>>;
|
|
912
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
879
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
880
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
913
881
|
description: z.ZodOptional<z.ZodString>;
|
|
914
882
|
model: z.ZodOptional<z.ZodString>;
|
|
915
883
|
maxSteps: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1387,16 +1355,8 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
1387
1355
|
}, z.core.$strict>>>>;
|
|
1388
1356
|
modes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1389
1357
|
prompt: z.ZodOptional<z.ZodString>;
|
|
1390
|
-
permissions: z.ZodOptional<z.
|
|
1391
|
-
|
|
1392
|
-
ask: "ask";
|
|
1393
|
-
deny: "deny";
|
|
1394
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
1395
|
-
allow: "allow";
|
|
1396
|
-
ask: "ask";
|
|
1397
|
-
deny: "deny";
|
|
1398
|
-
}>>]>>>;
|
|
1399
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
1358
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
1359
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
1400
1360
|
description: z.ZodOptional<z.ZodString>;
|
|
1401
1361
|
model: z.ZodOptional<z.ZodString>;
|
|
1402
1362
|
}, z.core.$strict>>>;
|
|
@@ -2084,11 +2044,10 @@ export declare const candidateExecutionEvidenceSchema: z.ZodObject<{
|
|
|
2084
2044
|
}, z.core.$strict>;
|
|
2085
2045
|
}, z.core.$strict>;
|
|
2086
2046
|
profileActivation: z.ZodObject<{
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
material: z.ZodType<{
|
|
2047
|
+
profilePlan: z.ZodType<{
|
|
2048
|
+
kind: "agent-profile-workspace-plan";
|
|
2049
|
+
digest: `sha256:${string}`;
|
|
2050
|
+
material: {
|
|
2092
2051
|
sourceProfileDigest: `sha256:${string}`;
|
|
2093
2052
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
2094
2053
|
files: {
|
|
@@ -2112,7 +2071,30 @@ export declare const candidateExecutionEvidenceSchema: z.ZodObject<{
|
|
|
2112
2071
|
kind: "public";
|
|
2113
2072
|
value: string;
|
|
2114
2073
|
} | undefined;
|
|
2115
|
-
}
|
|
2074
|
+
};
|
|
2075
|
+
artifact: {
|
|
2076
|
+
locator: {
|
|
2077
|
+
kind: "s3";
|
|
2078
|
+
bucket: string;
|
|
2079
|
+
key: string;
|
|
2080
|
+
region?: string | undefined;
|
|
2081
|
+
} | {
|
|
2082
|
+
kind: "ipfs";
|
|
2083
|
+
cid: string;
|
|
2084
|
+
path?: string | undefined;
|
|
2085
|
+
};
|
|
2086
|
+
sha256: `sha256:${string}`;
|
|
2087
|
+
byteLength: number;
|
|
2088
|
+
} | {
|
|
2089
|
+
encoding: "base64";
|
|
2090
|
+
content: string;
|
|
2091
|
+
sha256: `sha256:${string}`;
|
|
2092
|
+
byteLength: number;
|
|
2093
|
+
};
|
|
2094
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
2095
|
+
kind: "agent-profile-workspace-plan";
|
|
2096
|
+
digest: `sha256:${string}`;
|
|
2097
|
+
material: {
|
|
2116
2098
|
sourceProfileDigest: `sha256:${string}`;
|
|
2117
2099
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
2118
2100
|
files: {
|
|
@@ -2136,33 +2118,34 @@ export declare const candidateExecutionEvidenceSchema: z.ZodObject<{
|
|
|
2136
2118
|
kind: "public";
|
|
2137
2119
|
value: string;
|
|
2138
2120
|
} | undefined;
|
|
2139
|
-
}
|
|
2140
|
-
artifact:
|
|
2141
|
-
locator:
|
|
2142
|
-
kind:
|
|
2143
|
-
bucket:
|
|
2144
|
-
key:
|
|
2145
|
-
region
|
|
2146
|
-
}
|
|
2147
|
-
kind:
|
|
2148
|
-
cid:
|
|
2149
|
-
path
|
|
2150
|
-
}
|
|
2151
|
-
sha256:
|
|
2152
|
-
byteLength:
|
|
2153
|
-
}
|
|
2154
|
-
encoding:
|
|
2155
|
-
content:
|
|
2156
|
-
sha256:
|
|
2157
|
-
byteLength:
|
|
2158
|
-
}
|
|
2159
|
-
},
|
|
2121
|
+
};
|
|
2122
|
+
artifact: {
|
|
2123
|
+
locator: {
|
|
2124
|
+
kind: "s3";
|
|
2125
|
+
bucket: string;
|
|
2126
|
+
key: string;
|
|
2127
|
+
region?: string | undefined;
|
|
2128
|
+
} | {
|
|
2129
|
+
kind: "ipfs";
|
|
2130
|
+
cid: string;
|
|
2131
|
+
path?: string | undefined;
|
|
2132
|
+
};
|
|
2133
|
+
sha256: `sha256:${string}`;
|
|
2134
|
+
byteLength: number;
|
|
2135
|
+
} | {
|
|
2136
|
+
encoding: "base64";
|
|
2137
|
+
content: string;
|
|
2138
|
+
sha256: `sha256:${string}`;
|
|
2139
|
+
byteLength: number;
|
|
2140
|
+
};
|
|
2141
|
+
}, unknown>>;
|
|
2160
2142
|
files: z.ZodArray<z.ZodObject<{
|
|
2161
2143
|
path: z.ZodString;
|
|
2162
2144
|
mode: z.ZodNumber;
|
|
2163
2145
|
content: z.ZodString;
|
|
2164
2146
|
}, z.core.$strict>>;
|
|
2165
2147
|
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
2148
|
+
kind: z.ZodLiteral<"agent-candidate-profile-activation">;
|
|
2166
2149
|
}, z.core.$strict>;
|
|
2167
2150
|
executionPlan: z.ZodObject<{
|
|
2168
2151
|
kind: z.ZodLiteral<"agent-candidate-execution-plan">;
|
|
@@ -3613,25 +3596,13 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3613
3596
|
allow: "allow";
|
|
3614
3597
|
ask: "ask";
|
|
3615
3598
|
deny: "deny";
|
|
3616
|
-
}>, z.
|
|
3617
|
-
allow: "allow";
|
|
3618
|
-
ask: "ask";
|
|
3619
|
-
deny: "deny";
|
|
3620
|
-
}>>]>>>;
|
|
3599
|
+
}>, z.ZodType<Record<string, "allow" | "ask" | "deny">, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny">, unknown>>]>>>;
|
|
3621
3600
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
3622
3601
|
mcp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./agent-candidate.js").AgentCandidateMcpServer, unknown, z.core.$ZodTypeInternals<import("./agent-candidate.js").AgentCandidateMcpServer, unknown>>>>;
|
|
3623
3602
|
subagents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3624
3603
|
prompt: z.ZodOptional<z.ZodString>;
|
|
3625
|
-
permissions: z.ZodOptional<z.
|
|
3626
|
-
|
|
3627
|
-
ask: "ask";
|
|
3628
|
-
deny: "deny";
|
|
3629
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
3630
|
-
allow: "allow";
|
|
3631
|
-
ask: "ask";
|
|
3632
|
-
deny: "deny";
|
|
3633
|
-
}>>]>>>;
|
|
3634
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
3604
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
3605
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
3635
3606
|
description: z.ZodOptional<z.ZodString>;
|
|
3636
3607
|
model: z.ZodOptional<z.ZodString>;
|
|
3637
3608
|
maxSteps: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4109,16 +4080,8 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
4109
4080
|
}, z.core.$strict>>>>;
|
|
4110
4081
|
modes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4111
4082
|
prompt: z.ZodOptional<z.ZodString>;
|
|
4112
|
-
permissions: z.ZodOptional<z.
|
|
4113
|
-
|
|
4114
|
-
ask: "ask";
|
|
4115
|
-
deny: "deny";
|
|
4116
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
4117
|
-
allow: "allow";
|
|
4118
|
-
ask: "ask";
|
|
4119
|
-
deny: "deny";
|
|
4120
|
-
}>>]>>>;
|
|
4121
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4083
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
4084
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
4122
4085
|
description: z.ZodOptional<z.ZodString>;
|
|
4123
4086
|
model: z.ZodOptional<z.ZodString>;
|
|
4124
4087
|
}, z.core.$strict>>>;
|
|
@@ -4456,25 +4419,13 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
4456
4419
|
allow: "allow";
|
|
4457
4420
|
ask: "ask";
|
|
4458
4421
|
deny: "deny";
|
|
4459
|
-
}>, z.
|
|
4460
|
-
allow: "allow";
|
|
4461
|
-
ask: "ask";
|
|
4462
|
-
deny: "deny";
|
|
4463
|
-
}>>]>>>;
|
|
4422
|
+
}>, z.ZodType<Record<string, "allow" | "ask" | "deny">, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny">, unknown>>]>>>;
|
|
4464
4423
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4465
4424
|
mcp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./agent-candidate.js").AgentCandidateMcpServer, unknown, z.core.$ZodTypeInternals<import("./agent-candidate.js").AgentCandidateMcpServer, unknown>>>>;
|
|
4466
4425
|
subagents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4467
4426
|
prompt: z.ZodOptional<z.ZodString>;
|
|
4468
|
-
permissions: z.ZodOptional<z.
|
|
4469
|
-
|
|
4470
|
-
ask: "ask";
|
|
4471
|
-
deny: "deny";
|
|
4472
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
4473
|
-
allow: "allow";
|
|
4474
|
-
ask: "ask";
|
|
4475
|
-
deny: "deny";
|
|
4476
|
-
}>>]>>>;
|
|
4477
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4427
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
4428
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
4478
4429
|
description: z.ZodOptional<z.ZodString>;
|
|
4479
4430
|
model: z.ZodOptional<z.ZodString>;
|
|
4480
4431
|
maxSteps: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4952,16 +4903,8 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
4952
4903
|
}, z.core.$strict>>>>;
|
|
4953
4904
|
modes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4954
4905
|
prompt: z.ZodOptional<z.ZodString>;
|
|
4955
|
-
permissions: z.ZodOptional<z.
|
|
4956
|
-
|
|
4957
|
-
ask: "ask";
|
|
4958
|
-
deny: "deny";
|
|
4959
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
4960
|
-
allow: "allow";
|
|
4961
|
-
ask: "ask";
|
|
4962
|
-
deny: "deny";
|
|
4963
|
-
}>>]>>>;
|
|
4964
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4906
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
4907
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
4965
4908
|
description: z.ZodOptional<z.ZodString>;
|
|
4966
4909
|
model: z.ZodOptional<z.ZodString>;
|
|
4967
4910
|
}, z.core.$strict>>>;
|
|
@@ -5650,11 +5593,10 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
5650
5593
|
}, z.core.$strict>;
|
|
5651
5594
|
}, z.core.$strict>;
|
|
5652
5595
|
profileActivation: z.ZodObject<{
|
|
5653
|
-
|
|
5654
|
-
|
|
5655
|
-
|
|
5656
|
-
|
|
5657
|
-
material: z.ZodType<{
|
|
5596
|
+
profilePlan: z.ZodType<{
|
|
5597
|
+
kind: "agent-profile-workspace-plan";
|
|
5598
|
+
digest: `sha256:${string}`;
|
|
5599
|
+
material: {
|
|
5658
5600
|
sourceProfileDigest: `sha256:${string}`;
|
|
5659
5601
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
5660
5602
|
files: {
|
|
@@ -5678,7 +5620,30 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
5678
5620
|
kind: "public";
|
|
5679
5621
|
value: string;
|
|
5680
5622
|
} | undefined;
|
|
5681
|
-
}
|
|
5623
|
+
};
|
|
5624
|
+
artifact: {
|
|
5625
|
+
locator: {
|
|
5626
|
+
kind: "s3";
|
|
5627
|
+
bucket: string;
|
|
5628
|
+
key: string;
|
|
5629
|
+
region?: string | undefined;
|
|
5630
|
+
} | {
|
|
5631
|
+
kind: "ipfs";
|
|
5632
|
+
cid: string;
|
|
5633
|
+
path?: string | undefined;
|
|
5634
|
+
};
|
|
5635
|
+
sha256: `sha256:${string}`;
|
|
5636
|
+
byteLength: number;
|
|
5637
|
+
} | {
|
|
5638
|
+
encoding: "base64";
|
|
5639
|
+
content: string;
|
|
5640
|
+
sha256: `sha256:${string}`;
|
|
5641
|
+
byteLength: number;
|
|
5642
|
+
};
|
|
5643
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
5644
|
+
kind: "agent-profile-workspace-plan";
|
|
5645
|
+
digest: `sha256:${string}`;
|
|
5646
|
+
material: {
|
|
5682
5647
|
sourceProfileDigest: `sha256:${string}`;
|
|
5683
5648
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
5684
5649
|
files: {
|
|
@@ -5702,33 +5667,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
5702
5667
|
kind: "public";
|
|
5703
5668
|
value: string;
|
|
5704
5669
|
} | undefined;
|
|
5705
|
-
}
|
|
5706
|
-
artifact:
|
|
5707
|
-
locator:
|
|
5708
|
-
kind:
|
|
5709
|
-
bucket:
|
|
5710
|
-
key:
|
|
5711
|
-
region
|
|
5712
|
-
}
|
|
5713
|
-
kind:
|
|
5714
|
-
cid:
|
|
5715
|
-
path
|
|
5716
|
-
}
|
|
5717
|
-
sha256:
|
|
5718
|
-
byteLength:
|
|
5719
|
-
}
|
|
5720
|
-
encoding:
|
|
5721
|
-
content:
|
|
5722
|
-
sha256:
|
|
5723
|
-
byteLength:
|
|
5724
|
-
}
|
|
5725
|
-
},
|
|
5670
|
+
};
|
|
5671
|
+
artifact: {
|
|
5672
|
+
locator: {
|
|
5673
|
+
kind: "s3";
|
|
5674
|
+
bucket: string;
|
|
5675
|
+
key: string;
|
|
5676
|
+
region?: string | undefined;
|
|
5677
|
+
} | {
|
|
5678
|
+
kind: "ipfs";
|
|
5679
|
+
cid: string;
|
|
5680
|
+
path?: string | undefined;
|
|
5681
|
+
};
|
|
5682
|
+
sha256: `sha256:${string}`;
|
|
5683
|
+
byteLength: number;
|
|
5684
|
+
} | {
|
|
5685
|
+
encoding: "base64";
|
|
5686
|
+
content: string;
|
|
5687
|
+
sha256: `sha256:${string}`;
|
|
5688
|
+
byteLength: number;
|
|
5689
|
+
};
|
|
5690
|
+
}, unknown>>;
|
|
5726
5691
|
files: z.ZodArray<z.ZodObject<{
|
|
5727
5692
|
path: z.ZodString;
|
|
5728
5693
|
mode: z.ZodNumber;
|
|
5729
5694
|
content: z.ZodString;
|
|
5730
5695
|
}, z.core.$strict>>;
|
|
5731
5696
|
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
5697
|
+
kind: z.ZodLiteral<"agent-candidate-profile-activation">;
|
|
5732
5698
|
}, z.core.$strict>;
|
|
5733
5699
|
executionPlan: z.ZodObject<{
|
|
5734
5700
|
kind: z.ZodLiteral<"agent-candidate-execution-plan">;
|
|
@@ -7005,11 +6971,10 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
7005
6971
|
}, z.core.$strict>;
|
|
7006
6972
|
}, z.core.$strict>;
|
|
7007
6973
|
profileActivation: z.ZodObject<{
|
|
7008
|
-
|
|
7009
|
-
|
|
7010
|
-
|
|
7011
|
-
|
|
7012
|
-
material: z.ZodType<{
|
|
6974
|
+
profilePlan: z.ZodType<{
|
|
6975
|
+
kind: "agent-profile-workspace-plan";
|
|
6976
|
+
digest: `sha256:${string}`;
|
|
6977
|
+
material: {
|
|
7013
6978
|
sourceProfileDigest: `sha256:${string}`;
|
|
7014
6979
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
7015
6980
|
files: {
|
|
@@ -7033,7 +6998,30 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
7033
6998
|
kind: "public";
|
|
7034
6999
|
value: string;
|
|
7035
7000
|
} | undefined;
|
|
7036
|
-
}
|
|
7001
|
+
};
|
|
7002
|
+
artifact: {
|
|
7003
|
+
locator: {
|
|
7004
|
+
kind: "s3";
|
|
7005
|
+
bucket: string;
|
|
7006
|
+
key: string;
|
|
7007
|
+
region?: string | undefined;
|
|
7008
|
+
} | {
|
|
7009
|
+
kind: "ipfs";
|
|
7010
|
+
cid: string;
|
|
7011
|
+
path?: string | undefined;
|
|
7012
|
+
};
|
|
7013
|
+
sha256: `sha256:${string}`;
|
|
7014
|
+
byteLength: number;
|
|
7015
|
+
} | {
|
|
7016
|
+
encoding: "base64";
|
|
7017
|
+
content: string;
|
|
7018
|
+
sha256: `sha256:${string}`;
|
|
7019
|
+
byteLength: number;
|
|
7020
|
+
};
|
|
7021
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
7022
|
+
kind: "agent-profile-workspace-plan";
|
|
7023
|
+
digest: `sha256:${string}`;
|
|
7024
|
+
material: {
|
|
7037
7025
|
sourceProfileDigest: `sha256:${string}`;
|
|
7038
7026
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
7039
7027
|
files: {
|
|
@@ -7057,33 +7045,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
7057
7045
|
kind: "public";
|
|
7058
7046
|
value: string;
|
|
7059
7047
|
} | undefined;
|
|
7060
|
-
}
|
|
7061
|
-
artifact:
|
|
7062
|
-
locator:
|
|
7063
|
-
kind:
|
|
7064
|
-
bucket:
|
|
7065
|
-
key:
|
|
7066
|
-
region
|
|
7067
|
-
}
|
|
7068
|
-
kind:
|
|
7069
|
-
cid:
|
|
7070
|
-
path
|
|
7071
|
-
}
|
|
7072
|
-
sha256:
|
|
7073
|
-
byteLength:
|
|
7074
|
-
}
|
|
7075
|
-
encoding:
|
|
7076
|
-
content:
|
|
7077
|
-
sha256:
|
|
7078
|
-
byteLength:
|
|
7079
|
-
}
|
|
7080
|
-
},
|
|
7048
|
+
};
|
|
7049
|
+
artifact: {
|
|
7050
|
+
locator: {
|
|
7051
|
+
kind: "s3";
|
|
7052
|
+
bucket: string;
|
|
7053
|
+
key: string;
|
|
7054
|
+
region?: string | undefined;
|
|
7055
|
+
} | {
|
|
7056
|
+
kind: "ipfs";
|
|
7057
|
+
cid: string;
|
|
7058
|
+
path?: string | undefined;
|
|
7059
|
+
};
|
|
7060
|
+
sha256: `sha256:${string}`;
|
|
7061
|
+
byteLength: number;
|
|
7062
|
+
} | {
|
|
7063
|
+
encoding: "base64";
|
|
7064
|
+
content: string;
|
|
7065
|
+
sha256: `sha256:${string}`;
|
|
7066
|
+
byteLength: number;
|
|
7067
|
+
};
|
|
7068
|
+
}, unknown>>;
|
|
7081
7069
|
files: z.ZodArray<z.ZodObject<{
|
|
7082
7070
|
path: z.ZodString;
|
|
7083
7071
|
mode: z.ZodNumber;
|
|
7084
7072
|
content: z.ZodString;
|
|
7085
7073
|
}, z.core.$strict>>;
|
|
7086
7074
|
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7075
|
+
kind: z.ZodLiteral<"agent-candidate-profile-activation">;
|
|
7087
7076
|
}, z.core.$strict>;
|
|
7088
7077
|
executionPlan: z.ZodObject<{
|
|
7089
7078
|
kind: z.ZodLiteral<"agent-candidate-execution-plan">;
|
|
@@ -8564,25 +8553,13 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
8564
8553
|
allow: "allow";
|
|
8565
8554
|
ask: "ask";
|
|
8566
8555
|
deny: "deny";
|
|
8567
|
-
}>, z.
|
|
8568
|
-
allow: "allow";
|
|
8569
|
-
ask: "ask";
|
|
8570
|
-
deny: "deny";
|
|
8571
|
-
}>>]>>>;
|
|
8556
|
+
}>, z.ZodType<Record<string, "allow" | "ask" | "deny">, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny">, unknown>>]>>>;
|
|
8572
8557
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
8573
8558
|
mcp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./agent-candidate.js").AgentCandidateMcpServer, unknown, z.core.$ZodTypeInternals<import("./agent-candidate.js").AgentCandidateMcpServer, unknown>>>>;
|
|
8574
8559
|
subagents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8575
8560
|
prompt: z.ZodOptional<z.ZodString>;
|
|
8576
|
-
permissions: z.ZodOptional<z.
|
|
8577
|
-
|
|
8578
|
-
ask: "ask";
|
|
8579
|
-
deny: "deny";
|
|
8580
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
8581
|
-
allow: "allow";
|
|
8582
|
-
ask: "ask";
|
|
8583
|
-
deny: "deny";
|
|
8584
|
-
}>>]>>>;
|
|
8585
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
8561
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
8562
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
8586
8563
|
description: z.ZodOptional<z.ZodString>;
|
|
8587
8564
|
model: z.ZodOptional<z.ZodString>;
|
|
8588
8565
|
maxSteps: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9060,16 +9037,8 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
9060
9037
|
}, z.core.$strict>>>>;
|
|
9061
9038
|
modes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9062
9039
|
prompt: z.ZodOptional<z.ZodString>;
|
|
9063
|
-
permissions: z.ZodOptional<z.
|
|
9064
|
-
|
|
9065
|
-
ask: "ask";
|
|
9066
|
-
deny: "deny";
|
|
9067
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
9068
|
-
allow: "allow";
|
|
9069
|
-
ask: "ask";
|
|
9070
|
-
deny: "deny";
|
|
9071
|
-
}>>]>>>;
|
|
9072
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
9040
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
9041
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
9073
9042
|
description: z.ZodOptional<z.ZodString>;
|
|
9074
9043
|
model: z.ZodOptional<z.ZodString>;
|
|
9075
9044
|
}, z.core.$strict>>>;
|
|
@@ -9407,25 +9376,13 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
9407
9376
|
allow: "allow";
|
|
9408
9377
|
ask: "ask";
|
|
9409
9378
|
deny: "deny";
|
|
9410
|
-
}>, z.
|
|
9411
|
-
allow: "allow";
|
|
9412
|
-
ask: "ask";
|
|
9413
|
-
deny: "deny";
|
|
9414
|
-
}>>]>>>;
|
|
9379
|
+
}>, z.ZodType<Record<string, "allow" | "ask" | "deny">, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny">, unknown>>]>>>;
|
|
9415
9380
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
9416
9381
|
mcp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./agent-candidate.js").AgentCandidateMcpServer, unknown, z.core.$ZodTypeInternals<import("./agent-candidate.js").AgentCandidateMcpServer, unknown>>>>;
|
|
9417
9382
|
subagents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9418
9383
|
prompt: z.ZodOptional<z.ZodString>;
|
|
9419
|
-
permissions: z.ZodOptional<z.
|
|
9420
|
-
|
|
9421
|
-
ask: "ask";
|
|
9422
|
-
deny: "deny";
|
|
9423
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
9424
|
-
allow: "allow";
|
|
9425
|
-
ask: "ask";
|
|
9426
|
-
deny: "deny";
|
|
9427
|
-
}>>]>>>;
|
|
9428
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
9384
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
9385
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
9429
9386
|
description: z.ZodOptional<z.ZodString>;
|
|
9430
9387
|
model: z.ZodOptional<z.ZodString>;
|
|
9431
9388
|
maxSteps: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9903,16 +9860,8 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
9903
9860
|
}, z.core.$strict>>>>;
|
|
9904
9861
|
modes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9905
9862
|
prompt: z.ZodOptional<z.ZodString>;
|
|
9906
|
-
permissions: z.ZodOptional<z.
|
|
9907
|
-
|
|
9908
|
-
ask: "ask";
|
|
9909
|
-
deny: "deny";
|
|
9910
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
9911
|
-
allow: "allow";
|
|
9912
|
-
ask: "ask";
|
|
9913
|
-
deny: "deny";
|
|
9914
|
-
}>>]>>>;
|
|
9915
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
9863
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
9864
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
9916
9865
|
description: z.ZodOptional<z.ZodString>;
|
|
9917
9866
|
model: z.ZodOptional<z.ZodString>;
|
|
9918
9867
|
}, z.core.$strict>>>;
|
|
@@ -10601,11 +10550,10 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
10601
10550
|
}, z.core.$strict>;
|
|
10602
10551
|
}, z.core.$strict>;
|
|
10603
10552
|
profileActivation: z.ZodObject<{
|
|
10604
|
-
|
|
10605
|
-
|
|
10606
|
-
|
|
10607
|
-
|
|
10608
|
-
material: z.ZodType<{
|
|
10553
|
+
profilePlan: z.ZodType<{
|
|
10554
|
+
kind: "agent-profile-workspace-plan";
|
|
10555
|
+
digest: `sha256:${string}`;
|
|
10556
|
+
material: {
|
|
10609
10557
|
sourceProfileDigest: `sha256:${string}`;
|
|
10610
10558
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
10611
10559
|
files: {
|
|
@@ -10629,7 +10577,30 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
10629
10577
|
kind: "public";
|
|
10630
10578
|
value: string;
|
|
10631
10579
|
} | undefined;
|
|
10632
|
-
}
|
|
10580
|
+
};
|
|
10581
|
+
artifact: {
|
|
10582
|
+
locator: {
|
|
10583
|
+
kind: "s3";
|
|
10584
|
+
bucket: string;
|
|
10585
|
+
key: string;
|
|
10586
|
+
region?: string | undefined;
|
|
10587
|
+
} | {
|
|
10588
|
+
kind: "ipfs";
|
|
10589
|
+
cid: string;
|
|
10590
|
+
path?: string | undefined;
|
|
10591
|
+
};
|
|
10592
|
+
sha256: `sha256:${string}`;
|
|
10593
|
+
byteLength: number;
|
|
10594
|
+
} | {
|
|
10595
|
+
encoding: "base64";
|
|
10596
|
+
content: string;
|
|
10597
|
+
sha256: `sha256:${string}`;
|
|
10598
|
+
byteLength: number;
|
|
10599
|
+
};
|
|
10600
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
10601
|
+
kind: "agent-profile-workspace-plan";
|
|
10602
|
+
digest: `sha256:${string}`;
|
|
10603
|
+
material: {
|
|
10633
10604
|
sourceProfileDigest: `sha256:${string}`;
|
|
10634
10605
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
10635
10606
|
files: {
|
|
@@ -10653,33 +10624,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
10653
10624
|
kind: "public";
|
|
10654
10625
|
value: string;
|
|
10655
10626
|
} | undefined;
|
|
10656
|
-
}
|
|
10657
|
-
artifact:
|
|
10658
|
-
locator:
|
|
10659
|
-
kind:
|
|
10660
|
-
bucket:
|
|
10661
|
-
key:
|
|
10662
|
-
region
|
|
10663
|
-
}
|
|
10664
|
-
kind:
|
|
10665
|
-
cid:
|
|
10666
|
-
path
|
|
10667
|
-
}
|
|
10668
|
-
sha256:
|
|
10669
|
-
byteLength:
|
|
10670
|
-
}
|
|
10671
|
-
encoding:
|
|
10672
|
-
content:
|
|
10673
|
-
sha256:
|
|
10674
|
-
byteLength:
|
|
10675
|
-
}
|
|
10676
|
-
},
|
|
10627
|
+
};
|
|
10628
|
+
artifact: {
|
|
10629
|
+
locator: {
|
|
10630
|
+
kind: "s3";
|
|
10631
|
+
bucket: string;
|
|
10632
|
+
key: string;
|
|
10633
|
+
region?: string | undefined;
|
|
10634
|
+
} | {
|
|
10635
|
+
kind: "ipfs";
|
|
10636
|
+
cid: string;
|
|
10637
|
+
path?: string | undefined;
|
|
10638
|
+
};
|
|
10639
|
+
sha256: `sha256:${string}`;
|
|
10640
|
+
byteLength: number;
|
|
10641
|
+
} | {
|
|
10642
|
+
encoding: "base64";
|
|
10643
|
+
content: string;
|
|
10644
|
+
sha256: `sha256:${string}`;
|
|
10645
|
+
byteLength: number;
|
|
10646
|
+
};
|
|
10647
|
+
}, unknown>>;
|
|
10677
10648
|
files: z.ZodArray<z.ZodObject<{
|
|
10678
10649
|
path: z.ZodString;
|
|
10679
10650
|
mode: z.ZodNumber;
|
|
10680
10651
|
content: z.ZodString;
|
|
10681
10652
|
}, z.core.$strict>>;
|
|
10682
10653
|
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
10654
|
+
kind: z.ZodLiteral<"agent-candidate-profile-activation">;
|
|
10683
10655
|
}, z.core.$strict>;
|
|
10684
10656
|
executionPlan: z.ZodObject<{
|
|
10685
10657
|
kind: z.ZodLiteral<"agent-candidate-execution-plan">;
|
|
@@ -11956,11 +11928,10 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
11956
11928
|
}, z.core.$strict>;
|
|
11957
11929
|
}, z.core.$strict>;
|
|
11958
11930
|
profileActivation: z.ZodObject<{
|
|
11959
|
-
|
|
11960
|
-
|
|
11961
|
-
|
|
11962
|
-
|
|
11963
|
-
material: z.ZodType<{
|
|
11931
|
+
profilePlan: z.ZodType<{
|
|
11932
|
+
kind: "agent-profile-workspace-plan";
|
|
11933
|
+
digest: `sha256:${string}`;
|
|
11934
|
+
material: {
|
|
11964
11935
|
sourceProfileDigest: `sha256:${string}`;
|
|
11965
11936
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
11966
11937
|
files: {
|
|
@@ -11984,7 +11955,30 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
11984
11955
|
kind: "public";
|
|
11985
11956
|
value: string;
|
|
11986
11957
|
} | undefined;
|
|
11987
|
-
}
|
|
11958
|
+
};
|
|
11959
|
+
artifact: {
|
|
11960
|
+
locator: {
|
|
11961
|
+
kind: "s3";
|
|
11962
|
+
bucket: string;
|
|
11963
|
+
key: string;
|
|
11964
|
+
region?: string | undefined;
|
|
11965
|
+
} | {
|
|
11966
|
+
kind: "ipfs";
|
|
11967
|
+
cid: string;
|
|
11968
|
+
path?: string | undefined;
|
|
11969
|
+
};
|
|
11970
|
+
sha256: `sha256:${string}`;
|
|
11971
|
+
byteLength: number;
|
|
11972
|
+
} | {
|
|
11973
|
+
encoding: "base64";
|
|
11974
|
+
content: string;
|
|
11975
|
+
sha256: `sha256:${string}`;
|
|
11976
|
+
byteLength: number;
|
|
11977
|
+
};
|
|
11978
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
11979
|
+
kind: "agent-profile-workspace-plan";
|
|
11980
|
+
digest: `sha256:${string}`;
|
|
11981
|
+
material: {
|
|
11988
11982
|
sourceProfileDigest: `sha256:${string}`;
|
|
11989
11983
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
11990
11984
|
files: {
|
|
@@ -12008,33 +12002,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
12008
12002
|
kind: "public";
|
|
12009
12003
|
value: string;
|
|
12010
12004
|
} | undefined;
|
|
12011
|
-
}
|
|
12012
|
-
artifact:
|
|
12013
|
-
locator:
|
|
12014
|
-
kind:
|
|
12015
|
-
bucket:
|
|
12016
|
-
key:
|
|
12017
|
-
region
|
|
12018
|
-
}
|
|
12019
|
-
kind:
|
|
12020
|
-
cid:
|
|
12021
|
-
path
|
|
12022
|
-
}
|
|
12023
|
-
sha256:
|
|
12024
|
-
byteLength:
|
|
12025
|
-
}
|
|
12026
|
-
encoding:
|
|
12027
|
-
content:
|
|
12028
|
-
sha256:
|
|
12029
|
-
byteLength:
|
|
12030
|
-
}
|
|
12031
|
-
},
|
|
12005
|
+
};
|
|
12006
|
+
artifact: {
|
|
12007
|
+
locator: {
|
|
12008
|
+
kind: "s3";
|
|
12009
|
+
bucket: string;
|
|
12010
|
+
key: string;
|
|
12011
|
+
region?: string | undefined;
|
|
12012
|
+
} | {
|
|
12013
|
+
kind: "ipfs";
|
|
12014
|
+
cid: string;
|
|
12015
|
+
path?: string | undefined;
|
|
12016
|
+
};
|
|
12017
|
+
sha256: `sha256:${string}`;
|
|
12018
|
+
byteLength: number;
|
|
12019
|
+
} | {
|
|
12020
|
+
encoding: "base64";
|
|
12021
|
+
content: string;
|
|
12022
|
+
sha256: `sha256:${string}`;
|
|
12023
|
+
byteLength: number;
|
|
12024
|
+
};
|
|
12025
|
+
}, unknown>>;
|
|
12032
12026
|
files: z.ZodArray<z.ZodObject<{
|
|
12033
12027
|
path: z.ZodString;
|
|
12034
12028
|
mode: z.ZodNumber;
|
|
12035
12029
|
content: z.ZodString;
|
|
12036
12030
|
}, z.core.$strict>>;
|
|
12037
12031
|
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
12032
|
+
kind: z.ZodLiteral<"agent-candidate-profile-activation">;
|
|
12038
12033
|
}, z.core.$strict>;
|
|
12039
12034
|
executionPlan: z.ZodObject<{
|
|
12040
12035
|
kind: z.ZodLiteral<"agent-candidate-execution-plan">;
|