@lore-co/core 0.1.17 → 0.1.19
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/auth-schemas.d.ts +92 -4
- package/dist/auth-schemas.d.ts.map +1 -1
- package/dist/auth-schemas.js +77 -0
- package/dist/auth-schemas.js.map +1 -1
- package/dist/canonical-json.d.ts +19 -0
- package/dist/canonical-json.d.ts.map +1 -0
- package/dist/canonical-json.js +228 -0
- package/dist/canonical-json.js.map +1 -0
- package/dist/conflict-detector.d.ts.map +1 -1
- package/dist/conflict-detector.js +30 -14
- package/dist/conflict-detector.js.map +1 -1
- package/dist/engine.d.ts +38 -6
- package/dist/engine.d.ts.map +1 -1
- package/dist/engine.js +118 -25
- package/dist/engine.js.map +1 -1
- package/dist/guard-schemas.d.ts +217 -1
- package/dist/guard-schemas.d.ts.map +1 -1
- package/dist/guard-schemas.js +92 -11
- package/dist/guard-schemas.js.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/integration-contract.d.ts +612 -0
- package/dist/integration-contract.d.ts.map +1 -0
- package/dist/integration-contract.js +679 -0
- package/dist/integration-contract.js.map +1 -0
- package/dist/native-coding-agents.d.ts +1 -1
- package/dist/native-coding-agents.d.ts.map +1 -1
- package/dist/native-coding-agents.js +2 -0
- package/dist/native-coding-agents.js.map +1 -1
- package/dist/operational-metrics.d.ts +165 -0
- package/dist/operational-metrics.d.ts.map +1 -0
- package/dist/operational-metrics.js +216 -0
- package/dist/operational-metrics.js.map +1 -0
- package/dist/pilot-schemas.d.ts +80 -0
- package/dist/pilot-schemas.d.ts.map +1 -1
- package/dist/platform-admin-schemas.d.ts +171 -8
- package/dist/platform-admin-schemas.d.ts.map +1 -1
- package/dist/platform-admin-schemas.js +89 -1
- package/dist/platform-admin-schemas.js.map +1 -1
- package/dist/ports.d.ts +85 -8
- package/dist/ports.d.ts.map +1 -1
- package/dist/ports.js +231 -1
- package/dist/ports.js.map +1 -1
- package/dist/reliability-schemas.d.ts +723 -0
- package/dist/reliability-schemas.d.ts.map +1 -0
- package/dist/reliability-schemas.js +750 -0
- package/dist/reliability-schemas.js.map +1 -0
- package/dist/schemas.d.ts +205 -0
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +166 -1
- package/dist/schemas.js.map +1 -1
- package/dist/session-schemas.d.ts +80 -0
- package/dist/session-schemas.d.ts.map +1 -1
- package/dist/snapshot-schemas.d.ts +3503 -0
- package/dist/snapshot-schemas.d.ts.map +1 -0
- package/dist/snapshot-schemas.js +507 -0
- package/dist/snapshot-schemas.js.map +1 -0
- package/package.json +21 -1
|
@@ -0,0 +1,612 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const RELIABILITY_INTEGRATION_CONTRACT_VERSION: "reliability-integration-v1";
|
|
3
|
+
export declare const ReliabilityIntegrationIdSchema: z.ZodString;
|
|
4
|
+
export declare const ReliabilityCaptureOperationSchema: z.ZodEnum<{
|
|
5
|
+
observation: "observation";
|
|
6
|
+
paired_turn: "paired_turn";
|
|
7
|
+
}>;
|
|
8
|
+
export type ReliabilityCaptureOperation = z.infer<typeof ReliabilityCaptureOperationSchema>;
|
|
9
|
+
export declare const ReliabilityInstallationMechanismSchema: z.ZodEnum<{
|
|
10
|
+
command_hooks: "command_hooks";
|
|
11
|
+
plugin: "plugin";
|
|
12
|
+
server_connector: "server_connector";
|
|
13
|
+
library: "library";
|
|
14
|
+
mcp_stdio: "mcp_stdio";
|
|
15
|
+
mcp_remote: "mcp_remote";
|
|
16
|
+
}>;
|
|
17
|
+
export type ReliabilityInstallationMechanism = z.infer<typeof ReliabilityInstallationMechanismSchema>;
|
|
18
|
+
export declare const ReliabilityIntegrationManifestSchema: z.ZodObject<{
|
|
19
|
+
integrationContractVersion: z.ZodLiteral<"reliability-integration-v1">;
|
|
20
|
+
integrationId: z.ZodString;
|
|
21
|
+
displayName: z.ZodString;
|
|
22
|
+
capabilities: z.ZodObject<{
|
|
23
|
+
contractVersion: z.ZodLiteral<"reliability-v1">;
|
|
24
|
+
agent: z.ZodString;
|
|
25
|
+
contextDelivery: z.ZodEnum<{
|
|
26
|
+
none: "none";
|
|
27
|
+
prompt: "prompt";
|
|
28
|
+
pre_action: "pre_action";
|
|
29
|
+
}>;
|
|
30
|
+
captureDurability: z.ZodEnum<{
|
|
31
|
+
memory: "memory";
|
|
32
|
+
server: "server";
|
|
33
|
+
none: "none";
|
|
34
|
+
local_disk: "local_disk";
|
|
35
|
+
}>;
|
|
36
|
+
guardBoundaryCoverage: z.ZodEnum<{
|
|
37
|
+
none: "none";
|
|
38
|
+
partial: "partial";
|
|
39
|
+
full: "full";
|
|
40
|
+
}>;
|
|
41
|
+
guardedActions: z.ZodArray<z.ZodEnum<{
|
|
42
|
+
other: "other";
|
|
43
|
+
edit: "edit";
|
|
44
|
+
command: "command";
|
|
45
|
+
mcp: "mcp";
|
|
46
|
+
commit: "commit";
|
|
47
|
+
deploy: "deploy";
|
|
48
|
+
plan: "plan";
|
|
49
|
+
}>>;
|
|
50
|
+
enforcement: z.ZodEnum<{
|
|
51
|
+
confirm: "confirm";
|
|
52
|
+
none: "none";
|
|
53
|
+
context_only: "context_only";
|
|
54
|
+
deny: "deny";
|
|
55
|
+
}>;
|
|
56
|
+
stateDurability: z.ZodEnum<{
|
|
57
|
+
memory: "memory";
|
|
58
|
+
server: "server";
|
|
59
|
+
none: "none";
|
|
60
|
+
local_disk: "local_disk";
|
|
61
|
+
}>;
|
|
62
|
+
runtimeCoverage: z.ZodArray<z.ZodEnum<{
|
|
63
|
+
local: "local";
|
|
64
|
+
cloud: "cloud";
|
|
65
|
+
}>>;
|
|
66
|
+
}, z.core.$strict>;
|
|
67
|
+
operations: z.ZodObject<{
|
|
68
|
+
capture: z.ZodArray<z.ZodEnum<{
|
|
69
|
+
observation: "observation";
|
|
70
|
+
paired_turn: "paired_turn";
|
|
71
|
+
}>>;
|
|
72
|
+
guard: z.ZodBoolean;
|
|
73
|
+
}, z.core.$strict>;
|
|
74
|
+
installation: z.ZodObject<{
|
|
75
|
+
mechanism: z.ZodEnum<{
|
|
76
|
+
command_hooks: "command_hooks";
|
|
77
|
+
plugin: "plugin";
|
|
78
|
+
server_connector: "server_connector";
|
|
79
|
+
library: "library";
|
|
80
|
+
mcp_stdio: "mcp_stdio";
|
|
81
|
+
mcp_remote: "mcp_remote";
|
|
82
|
+
}>;
|
|
83
|
+
expectedUnits: z.ZodNullable<z.ZodNumber>;
|
|
84
|
+
}, z.core.$strict>;
|
|
85
|
+
invocation: z.ZodObject<{
|
|
86
|
+
mode: z.ZodEnum<{
|
|
87
|
+
event_driven: "event_driven";
|
|
88
|
+
polling: "polling";
|
|
89
|
+
host_managed: "host_managed";
|
|
90
|
+
}>;
|
|
91
|
+
events: z.ZodArray<z.ZodString>;
|
|
92
|
+
}, z.core.$strict>;
|
|
93
|
+
}, z.core.$strict>;
|
|
94
|
+
export type ReliabilityIntegrationManifest = z.infer<typeof ReliabilityIntegrationManifestSchema>;
|
|
95
|
+
export declare const ReliabilityInstallationUnitSchema: z.ZodObject<{
|
|
96
|
+
id: z.ZodString;
|
|
97
|
+
state: z.ZodEnum<{
|
|
98
|
+
exact: "exact";
|
|
99
|
+
missing: "missing";
|
|
100
|
+
drifted: "drifted";
|
|
101
|
+
duplicate: "duplicate";
|
|
102
|
+
}>;
|
|
103
|
+
}, z.core.$strict>;
|
|
104
|
+
export type ReliabilityInstallationUnit = z.infer<typeof ReliabilityInstallationUnitSchema>;
|
|
105
|
+
export declare const ReliabilityInstallationHealthSchema: z.ZodObject<{
|
|
106
|
+
state: z.ZodEnum<{
|
|
107
|
+
stale: "stale";
|
|
108
|
+
partial: "partial";
|
|
109
|
+
missing: "missing";
|
|
110
|
+
complete: "complete";
|
|
111
|
+
invalid: "invalid";
|
|
112
|
+
not_applicable: "not_applicable";
|
|
113
|
+
}>;
|
|
114
|
+
configured: z.ZodBoolean;
|
|
115
|
+
executable: z.ZodNullable<z.ZodBoolean>;
|
|
116
|
+
installedUnits: z.ZodNumber;
|
|
117
|
+
expectedUnits: z.ZodNumber;
|
|
118
|
+
units: z.ZodArray<z.ZodObject<{
|
|
119
|
+
id: z.ZodString;
|
|
120
|
+
state: z.ZodEnum<{
|
|
121
|
+
exact: "exact";
|
|
122
|
+
missing: "missing";
|
|
123
|
+
drifted: "drifted";
|
|
124
|
+
duplicate: "duplicate";
|
|
125
|
+
}>;
|
|
126
|
+
}, z.core.$strict>>;
|
|
127
|
+
runtime: z.ZodEnum<{
|
|
128
|
+
stale: "stale";
|
|
129
|
+
missing: "missing";
|
|
130
|
+
not_required: "not_required";
|
|
131
|
+
installed: "installed";
|
|
132
|
+
}>;
|
|
133
|
+
runtimeVersion: z.ZodNullable<z.ZodString>;
|
|
134
|
+
expectedRuntimeVersion: z.ZodNullable<z.ZodString>;
|
|
135
|
+
issue: z.ZodNullable<z.ZodLiteral<"invalid_configuration">>;
|
|
136
|
+
}, z.core.$strict>;
|
|
137
|
+
export type ReliabilityInstallationHealth = z.infer<typeof ReliabilityInstallationHealthSchema>;
|
|
138
|
+
export declare const ReliabilityInvocationFailureCodeSchema: z.ZodEnum<{
|
|
139
|
+
invalid_input: "invalid_input";
|
|
140
|
+
runtime_error: "runtime_error";
|
|
141
|
+
}>;
|
|
142
|
+
export type ReliabilityInvocationFailureCode = z.infer<typeof ReliabilityInvocationFailureCodeSchema>;
|
|
143
|
+
export declare const ReliabilityInvocationRecordSchema: z.ZodObject<{
|
|
144
|
+
version: z.ZodLiteral<1>;
|
|
145
|
+
integrationId: z.ZodString;
|
|
146
|
+
lastAttempt: z.ZodNullable<z.ZodObject<{
|
|
147
|
+
id: z.ZodUUID;
|
|
148
|
+
at: z.ZodISODateTime;
|
|
149
|
+
runtimeVersion: z.ZodNullable<z.ZodString>;
|
|
150
|
+
}, z.core.$strict>>;
|
|
151
|
+
lastCompletion: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
152
|
+
attemptId: z.ZodUUID;
|
|
153
|
+
at: z.ZodISODateTime;
|
|
154
|
+
outcome: z.ZodLiteral<"success">;
|
|
155
|
+
failureCode: z.ZodNull;
|
|
156
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
157
|
+
attemptId: z.ZodUUID;
|
|
158
|
+
at: z.ZodISODateTime;
|
|
159
|
+
outcome: z.ZodLiteral<"failure">;
|
|
160
|
+
failureCode: z.ZodEnum<{
|
|
161
|
+
invalid_input: "invalid_input";
|
|
162
|
+
runtime_error: "runtime_error";
|
|
163
|
+
}>;
|
|
164
|
+
}, z.core.$strict>], "outcome">>;
|
|
165
|
+
}, z.core.$strict>;
|
|
166
|
+
export type ReliabilityInvocationRecord = z.infer<typeof ReliabilityInvocationRecordSchema>;
|
|
167
|
+
export declare const ReliabilityInvocationHealthSchema: z.ZodObject<{
|
|
168
|
+
state: z.ZodEnum<{
|
|
169
|
+
unknown: "unknown";
|
|
170
|
+
failed: "failed";
|
|
171
|
+
never_observed: "never_observed";
|
|
172
|
+
successful: "successful";
|
|
173
|
+
incomplete: "incomplete";
|
|
174
|
+
}>;
|
|
175
|
+
lastAttemptedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
176
|
+
lastSuccessfulAt: z.ZodNullable<z.ZodISODateTime>;
|
|
177
|
+
runtimeVersion: z.ZodNullable<z.ZodString>;
|
|
178
|
+
failureCode: z.ZodNullable<z.ZodEnum<{
|
|
179
|
+
invalid_input: "invalid_input";
|
|
180
|
+
runtime_error: "runtime_error";
|
|
181
|
+
}>>;
|
|
182
|
+
}, z.core.$strict>;
|
|
183
|
+
export type ReliabilityInvocationHealth = z.infer<typeof ReliabilityInvocationHealthSchema>;
|
|
184
|
+
export declare const ReliabilityIntegrationHealthSchema: z.ZodObject<{
|
|
185
|
+
integrationContractVersion: z.ZodLiteral<"reliability-integration-v1">;
|
|
186
|
+
integrationId: z.ZodString;
|
|
187
|
+
observedAt: z.ZodISODateTime;
|
|
188
|
+
installation: z.ZodObject<{
|
|
189
|
+
state: z.ZodEnum<{
|
|
190
|
+
stale: "stale";
|
|
191
|
+
partial: "partial";
|
|
192
|
+
missing: "missing";
|
|
193
|
+
complete: "complete";
|
|
194
|
+
invalid: "invalid";
|
|
195
|
+
not_applicable: "not_applicable";
|
|
196
|
+
}>;
|
|
197
|
+
configured: z.ZodBoolean;
|
|
198
|
+
executable: z.ZodNullable<z.ZodBoolean>;
|
|
199
|
+
installedUnits: z.ZodNumber;
|
|
200
|
+
expectedUnits: z.ZodNumber;
|
|
201
|
+
units: z.ZodArray<z.ZodObject<{
|
|
202
|
+
id: z.ZodString;
|
|
203
|
+
state: z.ZodEnum<{
|
|
204
|
+
exact: "exact";
|
|
205
|
+
missing: "missing";
|
|
206
|
+
drifted: "drifted";
|
|
207
|
+
duplicate: "duplicate";
|
|
208
|
+
}>;
|
|
209
|
+
}, z.core.$strict>>;
|
|
210
|
+
runtime: z.ZodEnum<{
|
|
211
|
+
stale: "stale";
|
|
212
|
+
missing: "missing";
|
|
213
|
+
not_required: "not_required";
|
|
214
|
+
installed: "installed";
|
|
215
|
+
}>;
|
|
216
|
+
runtimeVersion: z.ZodNullable<z.ZodString>;
|
|
217
|
+
expectedRuntimeVersion: z.ZodNullable<z.ZodString>;
|
|
218
|
+
issue: z.ZodNullable<z.ZodLiteral<"invalid_configuration">>;
|
|
219
|
+
}, z.core.$strict>;
|
|
220
|
+
invocation: z.ZodObject<{
|
|
221
|
+
state: z.ZodEnum<{
|
|
222
|
+
unknown: "unknown";
|
|
223
|
+
failed: "failed";
|
|
224
|
+
never_observed: "never_observed";
|
|
225
|
+
successful: "successful";
|
|
226
|
+
incomplete: "incomplete";
|
|
227
|
+
}>;
|
|
228
|
+
lastAttemptedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
229
|
+
lastSuccessfulAt: z.ZodNullable<z.ZodISODateTime>;
|
|
230
|
+
runtimeVersion: z.ZodNullable<z.ZodString>;
|
|
231
|
+
failureCode: z.ZodNullable<z.ZodEnum<{
|
|
232
|
+
invalid_input: "invalid_input";
|
|
233
|
+
runtime_error: "runtime_error";
|
|
234
|
+
}>>;
|
|
235
|
+
}, z.core.$strict>;
|
|
236
|
+
}, z.core.$strict>;
|
|
237
|
+
export type ReliabilityIntegrationHealth = z.infer<typeof ReliabilityIntegrationHealthSchema>;
|
|
238
|
+
export declare function deriveReliabilityInvocationHealth(value: unknown, integrationId: string): ReliabilityInvocationHealth;
|
|
239
|
+
export type DeepReadonly<T> = T extends (...args: never[]) => unknown ? T : T extends readonly (infer Item)[] ? readonly DeepReadonly<Item>[] : T extends object ? {
|
|
240
|
+
readonly [Key in keyof T]: DeepReadonly<T[Key]>;
|
|
241
|
+
} : T;
|
|
242
|
+
export declare const CLAUDE_RELIABILITY_INTEGRATION: {
|
|
243
|
+
readonly integrationContractVersion: "reliability-integration-v1";
|
|
244
|
+
readonly integrationId: string;
|
|
245
|
+
readonly displayName: string;
|
|
246
|
+
readonly capabilities: {
|
|
247
|
+
readonly contractVersion: "reliability-v1";
|
|
248
|
+
readonly agent: string;
|
|
249
|
+
readonly contextDelivery: "none" | "prompt" | "pre_action";
|
|
250
|
+
readonly captureDurability: "memory" | "server" | "none" | "local_disk";
|
|
251
|
+
readonly guardBoundaryCoverage: "none" | "partial" | "full";
|
|
252
|
+
readonly guardedActions: readonly ("other" | "edit" | "command" | "mcp" | "commit" | "deploy" | "plan")[];
|
|
253
|
+
readonly enforcement: "confirm" | "none" | "context_only" | "deny";
|
|
254
|
+
readonly stateDurability: "memory" | "server" | "none" | "local_disk";
|
|
255
|
+
readonly runtimeCoverage: readonly ("local" | "cloud")[];
|
|
256
|
+
};
|
|
257
|
+
readonly operations: {
|
|
258
|
+
readonly capture: readonly ("observation" | "paired_turn")[];
|
|
259
|
+
readonly guard: boolean;
|
|
260
|
+
};
|
|
261
|
+
readonly installation: {
|
|
262
|
+
readonly mechanism: "command_hooks" | "plugin" | "server_connector" | "library" | "mcp_stdio" | "mcp_remote";
|
|
263
|
+
readonly expectedUnits: number | null;
|
|
264
|
+
};
|
|
265
|
+
readonly invocation: {
|
|
266
|
+
readonly mode: "event_driven" | "polling" | "host_managed";
|
|
267
|
+
readonly events: readonly string[];
|
|
268
|
+
};
|
|
269
|
+
};
|
|
270
|
+
export declare const CODEX_RELIABILITY_INTEGRATION: {
|
|
271
|
+
readonly integrationContractVersion: "reliability-integration-v1";
|
|
272
|
+
readonly integrationId: string;
|
|
273
|
+
readonly displayName: string;
|
|
274
|
+
readonly capabilities: {
|
|
275
|
+
readonly contractVersion: "reliability-v1";
|
|
276
|
+
readonly agent: string;
|
|
277
|
+
readonly contextDelivery: "none" | "prompt" | "pre_action";
|
|
278
|
+
readonly captureDurability: "memory" | "server" | "none" | "local_disk";
|
|
279
|
+
readonly guardBoundaryCoverage: "none" | "partial" | "full";
|
|
280
|
+
readonly guardedActions: readonly ("other" | "edit" | "command" | "mcp" | "commit" | "deploy" | "plan")[];
|
|
281
|
+
readonly enforcement: "confirm" | "none" | "context_only" | "deny";
|
|
282
|
+
readonly stateDurability: "memory" | "server" | "none" | "local_disk";
|
|
283
|
+
readonly runtimeCoverage: readonly ("local" | "cloud")[];
|
|
284
|
+
};
|
|
285
|
+
readonly operations: {
|
|
286
|
+
readonly capture: readonly ("observation" | "paired_turn")[];
|
|
287
|
+
readonly guard: boolean;
|
|
288
|
+
};
|
|
289
|
+
readonly installation: {
|
|
290
|
+
readonly mechanism: "command_hooks" | "plugin" | "server_connector" | "library" | "mcp_stdio" | "mcp_remote";
|
|
291
|
+
readonly expectedUnits: number | null;
|
|
292
|
+
};
|
|
293
|
+
readonly invocation: {
|
|
294
|
+
readonly mode: "event_driven" | "polling" | "host_managed";
|
|
295
|
+
readonly events: readonly string[];
|
|
296
|
+
};
|
|
297
|
+
};
|
|
298
|
+
export declare const CURSOR_RELIABILITY_INTEGRATION: {
|
|
299
|
+
readonly integrationContractVersion: "reliability-integration-v1";
|
|
300
|
+
readonly integrationId: string;
|
|
301
|
+
readonly displayName: string;
|
|
302
|
+
readonly capabilities: {
|
|
303
|
+
readonly contractVersion: "reliability-v1";
|
|
304
|
+
readonly agent: string;
|
|
305
|
+
readonly contextDelivery: "none" | "prompt" | "pre_action";
|
|
306
|
+
readonly captureDurability: "memory" | "server" | "none" | "local_disk";
|
|
307
|
+
readonly guardBoundaryCoverage: "none" | "partial" | "full";
|
|
308
|
+
readonly guardedActions: readonly ("other" | "edit" | "command" | "mcp" | "commit" | "deploy" | "plan")[];
|
|
309
|
+
readonly enforcement: "confirm" | "none" | "context_only" | "deny";
|
|
310
|
+
readonly stateDurability: "memory" | "server" | "none" | "local_disk";
|
|
311
|
+
readonly runtimeCoverage: readonly ("local" | "cloud")[];
|
|
312
|
+
};
|
|
313
|
+
readonly operations: {
|
|
314
|
+
readonly capture: readonly ("observation" | "paired_turn")[];
|
|
315
|
+
readonly guard: boolean;
|
|
316
|
+
};
|
|
317
|
+
readonly installation: {
|
|
318
|
+
readonly mechanism: "command_hooks" | "plugin" | "server_connector" | "library" | "mcp_stdio" | "mcp_remote";
|
|
319
|
+
readonly expectedUnits: number | null;
|
|
320
|
+
};
|
|
321
|
+
readonly invocation: {
|
|
322
|
+
readonly mode: "event_driven" | "polling" | "host_managed";
|
|
323
|
+
readonly events: readonly string[];
|
|
324
|
+
};
|
|
325
|
+
};
|
|
326
|
+
export declare const COPILOT_CLI_RELIABILITY_INTEGRATION: {
|
|
327
|
+
readonly integrationContractVersion: "reliability-integration-v1";
|
|
328
|
+
readonly integrationId: string;
|
|
329
|
+
readonly displayName: string;
|
|
330
|
+
readonly capabilities: {
|
|
331
|
+
readonly contractVersion: "reliability-v1";
|
|
332
|
+
readonly agent: string;
|
|
333
|
+
readonly contextDelivery: "none" | "prompt" | "pre_action";
|
|
334
|
+
readonly captureDurability: "memory" | "server" | "none" | "local_disk";
|
|
335
|
+
readonly guardBoundaryCoverage: "none" | "partial" | "full";
|
|
336
|
+
readonly guardedActions: readonly ("other" | "edit" | "command" | "mcp" | "commit" | "deploy" | "plan")[];
|
|
337
|
+
readonly enforcement: "confirm" | "none" | "context_only" | "deny";
|
|
338
|
+
readonly stateDurability: "memory" | "server" | "none" | "local_disk";
|
|
339
|
+
readonly runtimeCoverage: readonly ("local" | "cloud")[];
|
|
340
|
+
};
|
|
341
|
+
readonly operations: {
|
|
342
|
+
readonly capture: readonly ("observation" | "paired_turn")[];
|
|
343
|
+
readonly guard: boolean;
|
|
344
|
+
};
|
|
345
|
+
readonly installation: {
|
|
346
|
+
readonly mechanism: "command_hooks" | "plugin" | "server_connector" | "library" | "mcp_stdio" | "mcp_remote";
|
|
347
|
+
readonly expectedUnits: number | null;
|
|
348
|
+
};
|
|
349
|
+
readonly invocation: {
|
|
350
|
+
readonly mode: "event_driven" | "polling" | "host_managed";
|
|
351
|
+
readonly events: readonly string[];
|
|
352
|
+
};
|
|
353
|
+
};
|
|
354
|
+
export declare const COPILOT_VSCODE_PREVIEW_RELIABILITY_INTEGRATION: {
|
|
355
|
+
readonly integrationContractVersion: "reliability-integration-v1";
|
|
356
|
+
readonly integrationId: string;
|
|
357
|
+
readonly displayName: string;
|
|
358
|
+
readonly capabilities: {
|
|
359
|
+
readonly contractVersion: "reliability-v1";
|
|
360
|
+
readonly agent: string;
|
|
361
|
+
readonly contextDelivery: "none" | "prompt" | "pre_action";
|
|
362
|
+
readonly captureDurability: "memory" | "server" | "none" | "local_disk";
|
|
363
|
+
readonly guardBoundaryCoverage: "none" | "partial" | "full";
|
|
364
|
+
readonly guardedActions: readonly ("other" | "edit" | "command" | "mcp" | "commit" | "deploy" | "plan")[];
|
|
365
|
+
readonly enforcement: "confirm" | "none" | "context_only" | "deny";
|
|
366
|
+
readonly stateDurability: "memory" | "server" | "none" | "local_disk";
|
|
367
|
+
readonly runtimeCoverage: readonly ("local" | "cloud")[];
|
|
368
|
+
};
|
|
369
|
+
readonly operations: {
|
|
370
|
+
readonly capture: readonly ("observation" | "paired_turn")[];
|
|
371
|
+
readonly guard: boolean;
|
|
372
|
+
};
|
|
373
|
+
readonly installation: {
|
|
374
|
+
readonly mechanism: "command_hooks" | "plugin" | "server_connector" | "library" | "mcp_stdio" | "mcp_remote";
|
|
375
|
+
readonly expectedUnits: number | null;
|
|
376
|
+
};
|
|
377
|
+
readonly invocation: {
|
|
378
|
+
readonly mode: "event_driven" | "polling" | "host_managed";
|
|
379
|
+
readonly events: readonly string[];
|
|
380
|
+
};
|
|
381
|
+
};
|
|
382
|
+
export declare const COPILOT_CLOUD_MCP_RELIABILITY_INTEGRATION: {
|
|
383
|
+
readonly integrationContractVersion: "reliability-integration-v1";
|
|
384
|
+
readonly integrationId: string;
|
|
385
|
+
readonly displayName: string;
|
|
386
|
+
readonly capabilities: {
|
|
387
|
+
readonly contractVersion: "reliability-v1";
|
|
388
|
+
readonly agent: string;
|
|
389
|
+
readonly contextDelivery: "none" | "prompt" | "pre_action";
|
|
390
|
+
readonly captureDurability: "memory" | "server" | "none" | "local_disk";
|
|
391
|
+
readonly guardBoundaryCoverage: "none" | "partial" | "full";
|
|
392
|
+
readonly guardedActions: readonly ("other" | "edit" | "command" | "mcp" | "commit" | "deploy" | "plan")[];
|
|
393
|
+
readonly enforcement: "confirm" | "none" | "context_only" | "deny";
|
|
394
|
+
readonly stateDurability: "memory" | "server" | "none" | "local_disk";
|
|
395
|
+
readonly runtimeCoverage: readonly ("local" | "cloud")[];
|
|
396
|
+
};
|
|
397
|
+
readonly operations: {
|
|
398
|
+
readonly capture: readonly ("observation" | "paired_turn")[];
|
|
399
|
+
readonly guard: boolean;
|
|
400
|
+
};
|
|
401
|
+
readonly installation: {
|
|
402
|
+
readonly mechanism: "command_hooks" | "plugin" | "server_connector" | "library" | "mcp_stdio" | "mcp_remote";
|
|
403
|
+
readonly expectedUnits: number | null;
|
|
404
|
+
};
|
|
405
|
+
readonly invocation: {
|
|
406
|
+
readonly mode: "event_driven" | "polling" | "host_managed";
|
|
407
|
+
readonly events: readonly string[];
|
|
408
|
+
};
|
|
409
|
+
};
|
|
410
|
+
export declare const POLYTOKEN_RELIABILITY_INTEGRATION: {
|
|
411
|
+
readonly integrationContractVersion: "reliability-integration-v1";
|
|
412
|
+
readonly integrationId: string;
|
|
413
|
+
readonly displayName: string;
|
|
414
|
+
readonly capabilities: {
|
|
415
|
+
readonly contractVersion: "reliability-v1";
|
|
416
|
+
readonly agent: string;
|
|
417
|
+
readonly contextDelivery: "none" | "prompt" | "pre_action";
|
|
418
|
+
readonly captureDurability: "memory" | "server" | "none" | "local_disk";
|
|
419
|
+
readonly guardBoundaryCoverage: "none" | "partial" | "full";
|
|
420
|
+
readonly guardedActions: readonly ("other" | "edit" | "command" | "mcp" | "commit" | "deploy" | "plan")[];
|
|
421
|
+
readonly enforcement: "confirm" | "none" | "context_only" | "deny";
|
|
422
|
+
readonly stateDurability: "memory" | "server" | "none" | "local_disk";
|
|
423
|
+
readonly runtimeCoverage: readonly ("local" | "cloud")[];
|
|
424
|
+
};
|
|
425
|
+
readonly operations: {
|
|
426
|
+
readonly capture: readonly ("observation" | "paired_turn")[];
|
|
427
|
+
readonly guard: boolean;
|
|
428
|
+
};
|
|
429
|
+
readonly installation: {
|
|
430
|
+
readonly mechanism: "command_hooks" | "plugin" | "server_connector" | "library" | "mcp_stdio" | "mcp_remote";
|
|
431
|
+
readonly expectedUnits: number | null;
|
|
432
|
+
};
|
|
433
|
+
readonly invocation: {
|
|
434
|
+
readonly mode: "event_driven" | "polling" | "host_managed";
|
|
435
|
+
readonly events: readonly string[];
|
|
436
|
+
};
|
|
437
|
+
};
|
|
438
|
+
export declare const OPENCODE_RELIABILITY_INTEGRATION: {
|
|
439
|
+
readonly integrationContractVersion: "reliability-integration-v1";
|
|
440
|
+
readonly integrationId: string;
|
|
441
|
+
readonly displayName: string;
|
|
442
|
+
readonly capabilities: {
|
|
443
|
+
readonly contractVersion: "reliability-v1";
|
|
444
|
+
readonly agent: string;
|
|
445
|
+
readonly contextDelivery: "none" | "prompt" | "pre_action";
|
|
446
|
+
readonly captureDurability: "memory" | "server" | "none" | "local_disk";
|
|
447
|
+
readonly guardBoundaryCoverage: "none" | "partial" | "full";
|
|
448
|
+
readonly guardedActions: readonly ("other" | "edit" | "command" | "mcp" | "commit" | "deploy" | "plan")[];
|
|
449
|
+
readonly enforcement: "confirm" | "none" | "context_only" | "deny";
|
|
450
|
+
readonly stateDurability: "memory" | "server" | "none" | "local_disk";
|
|
451
|
+
readonly runtimeCoverage: readonly ("local" | "cloud")[];
|
|
452
|
+
};
|
|
453
|
+
readonly operations: {
|
|
454
|
+
readonly capture: readonly ("observation" | "paired_turn")[];
|
|
455
|
+
readonly guard: boolean;
|
|
456
|
+
};
|
|
457
|
+
readonly installation: {
|
|
458
|
+
readonly mechanism: "command_hooks" | "plugin" | "server_connector" | "library" | "mcp_stdio" | "mcp_remote";
|
|
459
|
+
readonly expectedUnits: number | null;
|
|
460
|
+
};
|
|
461
|
+
readonly invocation: {
|
|
462
|
+
readonly mode: "event_driven" | "polling" | "host_managed";
|
|
463
|
+
readonly events: readonly string[];
|
|
464
|
+
};
|
|
465
|
+
};
|
|
466
|
+
export declare const DEVIN_RELIABILITY_INTEGRATION: {
|
|
467
|
+
readonly integrationContractVersion: "reliability-integration-v1";
|
|
468
|
+
readonly integrationId: string;
|
|
469
|
+
readonly displayName: string;
|
|
470
|
+
readonly capabilities: {
|
|
471
|
+
readonly contractVersion: "reliability-v1";
|
|
472
|
+
readonly agent: string;
|
|
473
|
+
readonly contextDelivery: "none" | "prompt" | "pre_action";
|
|
474
|
+
readonly captureDurability: "memory" | "server" | "none" | "local_disk";
|
|
475
|
+
readonly guardBoundaryCoverage: "none" | "partial" | "full";
|
|
476
|
+
readonly guardedActions: readonly ("other" | "edit" | "command" | "mcp" | "commit" | "deploy" | "plan")[];
|
|
477
|
+
readonly enforcement: "confirm" | "none" | "context_only" | "deny";
|
|
478
|
+
readonly stateDurability: "memory" | "server" | "none" | "local_disk";
|
|
479
|
+
readonly runtimeCoverage: readonly ("local" | "cloud")[];
|
|
480
|
+
};
|
|
481
|
+
readonly operations: {
|
|
482
|
+
readonly capture: readonly ("observation" | "paired_turn")[];
|
|
483
|
+
readonly guard: boolean;
|
|
484
|
+
};
|
|
485
|
+
readonly installation: {
|
|
486
|
+
readonly mechanism: "command_hooks" | "plugin" | "server_connector" | "library" | "mcp_stdio" | "mcp_remote";
|
|
487
|
+
readonly expectedUnits: number | null;
|
|
488
|
+
};
|
|
489
|
+
readonly invocation: {
|
|
490
|
+
readonly mode: "event_driven" | "polling" | "host_managed";
|
|
491
|
+
readonly events: readonly string[];
|
|
492
|
+
};
|
|
493
|
+
};
|
|
494
|
+
export declare const GENERIC_ADAPTER_RELIABILITY_INTEGRATION: {
|
|
495
|
+
readonly integrationContractVersion: "reliability-integration-v1";
|
|
496
|
+
readonly integrationId: string;
|
|
497
|
+
readonly displayName: string;
|
|
498
|
+
readonly capabilities: {
|
|
499
|
+
readonly contractVersion: "reliability-v1";
|
|
500
|
+
readonly agent: string;
|
|
501
|
+
readonly contextDelivery: "none" | "prompt" | "pre_action";
|
|
502
|
+
readonly captureDurability: "memory" | "server" | "none" | "local_disk";
|
|
503
|
+
readonly guardBoundaryCoverage: "none" | "partial" | "full";
|
|
504
|
+
readonly guardedActions: readonly ("other" | "edit" | "command" | "mcp" | "commit" | "deploy" | "plan")[];
|
|
505
|
+
readonly enforcement: "confirm" | "none" | "context_only" | "deny";
|
|
506
|
+
readonly stateDurability: "memory" | "server" | "none" | "local_disk";
|
|
507
|
+
readonly runtimeCoverage: readonly ("local" | "cloud")[];
|
|
508
|
+
};
|
|
509
|
+
readonly operations: {
|
|
510
|
+
readonly capture: readonly ("observation" | "paired_turn")[];
|
|
511
|
+
readonly guard: boolean;
|
|
512
|
+
};
|
|
513
|
+
readonly installation: {
|
|
514
|
+
readonly mechanism: "command_hooks" | "plugin" | "server_connector" | "library" | "mcp_stdio" | "mcp_remote";
|
|
515
|
+
readonly expectedUnits: number | null;
|
|
516
|
+
};
|
|
517
|
+
readonly invocation: {
|
|
518
|
+
readonly mode: "event_driven" | "polling" | "host_managed";
|
|
519
|
+
readonly events: readonly string[];
|
|
520
|
+
};
|
|
521
|
+
};
|
|
522
|
+
export declare const BEDROCK_RELIABILITY_INTEGRATION: {
|
|
523
|
+
readonly integrationContractVersion: "reliability-integration-v1";
|
|
524
|
+
readonly integrationId: string;
|
|
525
|
+
readonly displayName: string;
|
|
526
|
+
readonly capabilities: {
|
|
527
|
+
readonly contractVersion: "reliability-v1";
|
|
528
|
+
readonly agent: string;
|
|
529
|
+
readonly contextDelivery: "none" | "prompt" | "pre_action";
|
|
530
|
+
readonly captureDurability: "memory" | "server" | "none" | "local_disk";
|
|
531
|
+
readonly guardBoundaryCoverage: "none" | "partial" | "full";
|
|
532
|
+
readonly guardedActions: readonly ("other" | "edit" | "command" | "mcp" | "commit" | "deploy" | "plan")[];
|
|
533
|
+
readonly enforcement: "confirm" | "none" | "context_only" | "deny";
|
|
534
|
+
readonly stateDurability: "memory" | "server" | "none" | "local_disk";
|
|
535
|
+
readonly runtimeCoverage: readonly ("local" | "cloud")[];
|
|
536
|
+
};
|
|
537
|
+
readonly operations: {
|
|
538
|
+
readonly capture: readonly ("observation" | "paired_turn")[];
|
|
539
|
+
readonly guard: boolean;
|
|
540
|
+
};
|
|
541
|
+
readonly installation: {
|
|
542
|
+
readonly mechanism: "command_hooks" | "plugin" | "server_connector" | "library" | "mcp_stdio" | "mcp_remote";
|
|
543
|
+
readonly expectedUnits: number | null;
|
|
544
|
+
};
|
|
545
|
+
readonly invocation: {
|
|
546
|
+
readonly mode: "event_driven" | "polling" | "host_managed";
|
|
547
|
+
readonly events: readonly string[];
|
|
548
|
+
};
|
|
549
|
+
};
|
|
550
|
+
export declare const MCP_RELIABILITY_INTEGRATION: {
|
|
551
|
+
readonly integrationContractVersion: "reliability-integration-v1";
|
|
552
|
+
readonly integrationId: string;
|
|
553
|
+
readonly displayName: string;
|
|
554
|
+
readonly capabilities: {
|
|
555
|
+
readonly contractVersion: "reliability-v1";
|
|
556
|
+
readonly agent: string;
|
|
557
|
+
readonly contextDelivery: "none" | "prompt" | "pre_action";
|
|
558
|
+
readonly captureDurability: "memory" | "server" | "none" | "local_disk";
|
|
559
|
+
readonly guardBoundaryCoverage: "none" | "partial" | "full";
|
|
560
|
+
readonly guardedActions: readonly ("other" | "edit" | "command" | "mcp" | "commit" | "deploy" | "plan")[];
|
|
561
|
+
readonly enforcement: "confirm" | "none" | "context_only" | "deny";
|
|
562
|
+
readonly stateDurability: "memory" | "server" | "none" | "local_disk";
|
|
563
|
+
readonly runtimeCoverage: readonly ("local" | "cloud")[];
|
|
564
|
+
};
|
|
565
|
+
readonly operations: {
|
|
566
|
+
readonly capture: readonly ("observation" | "paired_turn")[];
|
|
567
|
+
readonly guard: boolean;
|
|
568
|
+
};
|
|
569
|
+
readonly installation: {
|
|
570
|
+
readonly mechanism: "command_hooks" | "plugin" | "server_connector" | "library" | "mcp_stdio" | "mcp_remote";
|
|
571
|
+
readonly expectedUnits: number | null;
|
|
572
|
+
};
|
|
573
|
+
readonly invocation: {
|
|
574
|
+
readonly mode: "event_driven" | "polling" | "host_managed";
|
|
575
|
+
readonly events: readonly string[];
|
|
576
|
+
};
|
|
577
|
+
};
|
|
578
|
+
export declare const CLAUDE_COWORK_MCP_RELIABILITY_INTEGRATION: {
|
|
579
|
+
readonly integrationContractVersion: "reliability-integration-v1";
|
|
580
|
+
readonly integrationId: string;
|
|
581
|
+
readonly displayName: string;
|
|
582
|
+
readonly capabilities: {
|
|
583
|
+
readonly contractVersion: "reliability-v1";
|
|
584
|
+
readonly agent: string;
|
|
585
|
+
readonly contextDelivery: "none" | "prompt" | "pre_action";
|
|
586
|
+
readonly captureDurability: "memory" | "server" | "none" | "local_disk";
|
|
587
|
+
readonly guardBoundaryCoverage: "none" | "partial" | "full";
|
|
588
|
+
readonly guardedActions: readonly ("other" | "edit" | "command" | "mcp" | "commit" | "deploy" | "plan")[];
|
|
589
|
+
readonly enforcement: "confirm" | "none" | "context_only" | "deny";
|
|
590
|
+
readonly stateDurability: "memory" | "server" | "none" | "local_disk";
|
|
591
|
+
readonly runtimeCoverage: readonly ("local" | "cloud")[];
|
|
592
|
+
};
|
|
593
|
+
readonly operations: {
|
|
594
|
+
readonly capture: readonly ("observation" | "paired_turn")[];
|
|
595
|
+
readonly guard: boolean;
|
|
596
|
+
};
|
|
597
|
+
readonly installation: {
|
|
598
|
+
readonly mechanism: "command_hooks" | "plugin" | "server_connector" | "library" | "mcp_stdio" | "mcp_remote";
|
|
599
|
+
readonly expectedUnits: number | null;
|
|
600
|
+
};
|
|
601
|
+
readonly invocation: {
|
|
602
|
+
readonly mode: "event_driven" | "polling" | "host_managed";
|
|
603
|
+
readonly events: readonly string[];
|
|
604
|
+
};
|
|
605
|
+
};
|
|
606
|
+
export interface ReliabilityIntegrationRegistry {
|
|
607
|
+
get(integrationId: string): DeepReadonly<ReliabilityIntegrationManifest> | undefined;
|
|
608
|
+
list(): readonly DeepReadonly<ReliabilityIntegrationManifest>[];
|
|
609
|
+
}
|
|
610
|
+
export declare function createReliabilityIntegrationRegistry(values: readonly unknown[]): ReliabilityIntegrationRegistry;
|
|
611
|
+
export declare const OFFICIAL_RELIABILITY_INTEGRATIONS: ReliabilityIntegrationRegistry;
|
|
612
|
+
//# sourceMappingURL=integration-contract.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"integration-contract.d.ts","sourceRoot":"","sources":["../src/integration-contract.ts"],"names":[],"mappings":"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"}
|