@warpgogol/forge 4.0.0 → 4.1.2
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/AGENTS.md +18 -3
- package/bin/cli.ts +15 -8
- package/os/adr/adr.module.ts +24 -23
- package/os/adr/index.ts +1 -1
- package/os/audit/audit.module.ts +13 -8
- package/os/audit/index.ts +1 -1
- package/os/compass/compass.module.ts +22 -19
- package/os/core/core.module.ts +842 -864
- package/os/core/handlers/package-health.ts +20 -0
- package/os/core/index.ts +1 -1
- package/os/exploration/exploration.module.ts +19 -16
- package/os/exploration/index.ts +2 -2
- package/os/mission/index.ts +1 -1
- package/os/mission/mission.module.ts +13 -8
- package/os/naming/index.ts +1 -1
- package/os/naming/naming-convention.ts +1 -0
- package/os/naming/naming.module.ts +13 -7
- package/os/notes/index.ts +2 -2
- package/os/notes/notes.module.ts +20 -17
- package/os/plan/index.ts +1 -1
- package/os/plan/plan.module.ts +13 -8
- package/os/plugin/plugin.module.ts +10 -8
- package/os/program/program.module.ts +22 -20
- package/os/rfc/handlers/implement-stamp.ts +17 -1
- package/os/rfc/index.ts +1 -1
- package/os/rfc/rfc-0000-template.md +3 -2
- package/os/rfc/rfc.module.ts +54 -84
- package/os/rfc/types.ts +1 -0
- package/os/session/handlers/metrics-aggregate.ts +208 -0
- package/os/session/handlers/metrics-rfc.ts +339 -0
- package/os/session/handlers/metrics-session.ts +209 -0
- package/os/session/handlers/save.ts +19 -0
- package/os/session/index.ts +16 -1
- package/os/session/session.module.ts +133 -107
- package/os/session/types.ts +99 -0
- package/os/spec/spec.module.ts +28 -29
- package/os/werkstatt/werkstatt.module.ts +12 -9
- package/os/workflow/index.ts +1 -1
- package/os/workflow/workflow.module.ts +18 -12
- package/package.json +3 -1
- package/src/forge-module.ts +24 -10
- package/src/index.ts +12 -12
- package/src/onboarding/scaffold.ts +6 -4
- package/src/tests/metrics-rfc-1053.test.ts +355 -0
- package/src/types/werkstatt-engine-shims.d.ts +126 -48
- package/src/types/werkstatt-shared-shims.d.ts +6 -0
|
@@ -69,12 +69,10 @@ declare module "@warpgogol/werkstatt-engine/kernel" {
|
|
|
69
69
|
export interface GeneratedArtifactSpec {}
|
|
70
70
|
export interface GeneratorOwnershipEntry {}
|
|
71
71
|
export interface KernelRuntimeContext {}
|
|
72
|
-
export interface KernelCommandDefinition {}
|
|
73
72
|
export interface KernelPipelineStep {}
|
|
74
|
-
export interface KernelModuleRegistry {}
|
|
75
|
-
export interface KernelModule {}
|
|
76
73
|
export interface KernelAppConfig {}
|
|
77
74
|
export interface KernelExecutionReport {}
|
|
75
|
+
export interface RemediationHint {}
|
|
78
76
|
export interface KernelPipelineReport {}
|
|
79
77
|
export interface KernelCommandTiming {}
|
|
80
78
|
export interface PipelineStepTiming {}
|
|
@@ -90,8 +88,21 @@ declare module "@warpgogol/werkstatt-engine/kernel" {
|
|
|
90
88
|
export type KernelFlagValue = any;
|
|
91
89
|
export type GateSeverity = any;
|
|
92
90
|
export type GatePhase = any;
|
|
91
|
+
export type KernelCommandDefinition = any;
|
|
92
|
+
export type KernelModule = any;
|
|
93
|
+
export type ModuleFiberState = any;
|
|
93
94
|
export type PipelineStepStatus = any;
|
|
94
|
-
export
|
|
95
|
+
export interface DesiredState {}
|
|
96
|
+
export interface ReconciliationDelta {}
|
|
97
|
+
export interface ReconciliationResult {}
|
|
98
|
+
export interface CommandDeclaration {}
|
|
99
|
+
export interface PipelineDeclaration {}
|
|
100
|
+
export interface ModuleExport {}
|
|
101
|
+
export interface ModuleBuildContext {}
|
|
102
|
+
export interface ActualState {}
|
|
103
|
+
export interface MutableActualState {}
|
|
104
|
+
export interface DesiredStateOverlay {}
|
|
105
|
+
export const createForgeAdrModule: any;
|
|
95
106
|
export const runAdrList: any;
|
|
96
107
|
export const runAdrCreate: any;
|
|
97
108
|
export const runAdrValidate: any;
|
|
@@ -140,15 +151,16 @@ declare module "@warpgogol/werkstatt-engine/kernel" {
|
|
|
140
151
|
export function runCommandManifestGenerate(...args: any[]): any;
|
|
141
152
|
export function runCommandManifestValidate(...args: any[]): any;
|
|
142
153
|
export interface CommandManifestEntry {}
|
|
154
|
+
export interface CommandManifestRuntimeState {}
|
|
143
155
|
export interface CommandManifest {}
|
|
144
156
|
export const resolveSiteWorkspace: any;
|
|
145
157
|
export const SiteWorkspace: any;
|
|
146
158
|
export const SiteWorkspaceSource: any;
|
|
147
159
|
export const createKernelLogger: any;
|
|
148
|
-
export const
|
|
160
|
+
export const buildActualState: any;
|
|
149
161
|
export const resolveCompassScanRoot: any;
|
|
150
162
|
export const runKernelWire: any;
|
|
151
|
-
export const
|
|
163
|
+
export const createIconsModule: any;
|
|
152
164
|
export const runIconsGenerate: any;
|
|
153
165
|
export const runRfcList: any;
|
|
154
166
|
export const runRfcCreate: any;
|
|
@@ -189,22 +201,22 @@ declare module "@warpgogol/werkstatt-engine/kernel" {
|
|
|
189
201
|
export const buildGeneratedHeader: any;
|
|
190
202
|
export const StripGeneratedMarkerResult: any;
|
|
191
203
|
export const GeneratedHeaderInput: any;
|
|
192
|
-
export const
|
|
204
|
+
export const createSemanticModule: any;
|
|
193
205
|
export const runSemanticPageValidate: any;
|
|
194
206
|
export const runWorkflowLint: any;
|
|
195
207
|
export const runWorkflowList: any;
|
|
196
208
|
export const runWorkflowAmendList: any;
|
|
197
|
-
export const
|
|
209
|
+
export const createCommitMessageModule: any;
|
|
198
210
|
export const runCommitMessageLint: any;
|
|
199
211
|
export const lintCommitSubject: any;
|
|
200
212
|
export const parseGitLogOutput: any;
|
|
201
213
|
export const parseNameOnlyOutput: any;
|
|
202
214
|
export const isExempt: any;
|
|
203
|
-
export const
|
|
204
|
-
export const
|
|
205
|
-
export const
|
|
206
|
-
export const
|
|
207
|
-
export const
|
|
215
|
+
export const createPipelineBudgetModule: any;
|
|
216
|
+
export const createValidatorInventoryModule: any;
|
|
217
|
+
export const createChangeImpactModule: any;
|
|
218
|
+
export const createCommandManifestModule: any;
|
|
219
|
+
export const createGitmeshModule: any;
|
|
208
220
|
export const parseSemver: any;
|
|
209
221
|
export const compareSemver: any;
|
|
210
222
|
export const ltSemver: any;
|
|
@@ -218,15 +230,15 @@ declare module "@warpgogol/werkstatt-engine/kernel" {
|
|
|
218
230
|
export const hasTrailer: any;
|
|
219
231
|
export const resolveMissionDir: any;
|
|
220
232
|
export const resolvePlatformSemanticHash: any;
|
|
221
|
-
export const
|
|
233
|
+
export const createSwimModule: any;
|
|
222
234
|
}
|
|
223
235
|
|
|
224
236
|
declare module "@warpgogol/werkstatt-engine/kernel/icons" {
|
|
225
|
-
export
|
|
237
|
+
export function createIconsModule(...args: any[]): any;
|
|
226
238
|
}
|
|
227
239
|
|
|
228
240
|
declare module "@warpgogol/werkstatt-engine/kernel/adr" {
|
|
229
|
-
export const
|
|
241
|
+
export const createForgeAdrModule: any;
|
|
230
242
|
export const runAdrList: any;
|
|
231
243
|
export const runAdrCreate: any;
|
|
232
244
|
export const runAdrValidate: any;
|
|
@@ -253,7 +265,7 @@ declare module "@warpgogol/werkstatt-engine/kernel/change-impact" {
|
|
|
253
265
|
}
|
|
254
266
|
|
|
255
267
|
declare module "@warpgogol/werkstatt-engine/kernel/change-impact-module" {
|
|
256
|
-
export
|
|
268
|
+
export function createChangeImpactModule(...args: any[]): any;
|
|
257
269
|
}
|
|
258
270
|
|
|
259
271
|
declare module "@warpgogol/werkstatt-engine/kernel/cli" {
|
|
@@ -261,7 +273,7 @@ declare module "@warpgogol/werkstatt-engine/kernel/cli" {
|
|
|
261
273
|
}
|
|
262
274
|
|
|
263
275
|
declare module "@warpgogol/werkstatt-engine/kernel/commit-message" {
|
|
264
|
-
export
|
|
276
|
+
export function createCommitMessageModule(...args: any[]): any;
|
|
265
277
|
}
|
|
266
278
|
|
|
267
279
|
declare module "@warpgogol/werkstatt-engine/kernel/command-manifest" {
|
|
@@ -271,15 +283,16 @@ declare module "@warpgogol/werkstatt-engine/kernel/command-manifest" {
|
|
|
271
283
|
export function runCommandManifestGenerate(...args: any[]): any;
|
|
272
284
|
export function runCommandManifestValidate(...args: any[]): any;
|
|
273
285
|
export interface CommandManifestEntry {}
|
|
286
|
+
export interface CommandManifestRuntimeState {}
|
|
274
287
|
export interface CommandManifest {}
|
|
275
288
|
}
|
|
276
289
|
|
|
277
290
|
declare module "@warpgogol/werkstatt-engine/kernel/command-manifest-module" {
|
|
278
|
-
export
|
|
291
|
+
export function createCommandManifestModule(...args: any[]): any;
|
|
279
292
|
}
|
|
280
293
|
|
|
281
294
|
declare module "@warpgogol/werkstatt-engine/kernel/cache-module" {
|
|
282
|
-
export
|
|
295
|
+
export function createCacheModule(...args: any[]): any;
|
|
283
296
|
}
|
|
284
297
|
|
|
285
298
|
declare module "@warpgogol/werkstatt-engine/kernel/discovery" {
|
|
@@ -301,15 +314,15 @@ declare module "@warpgogol/werkstatt-engine/kernel/generated-marker" {
|
|
|
301
314
|
}
|
|
302
315
|
|
|
303
316
|
declare module "@warpgogol/werkstatt-engine/kernel/gitmesh-module" {
|
|
304
|
-
export
|
|
317
|
+
export function createGitmeshModule(...args: any[]): any;
|
|
305
318
|
}
|
|
306
319
|
|
|
307
320
|
declare module "@warpgogol/werkstatt-engine/kernel/swim-module" {
|
|
308
|
-
export
|
|
321
|
+
export function createSwimModule(...args: any[]): any;
|
|
309
322
|
}
|
|
310
323
|
|
|
311
324
|
declare module "@warpgogol/werkstatt-engine/kernel/pipeline-budget" {
|
|
312
|
-
export
|
|
325
|
+
export function createPipelineBudgetModule(...args: any[]): any;
|
|
313
326
|
}
|
|
314
327
|
|
|
315
328
|
declare module "@warpgogol/werkstatt-engine/kernel/pipeline-budgets" {
|
|
@@ -329,11 +342,15 @@ declare module "@warpgogol/werkstatt-engine/kernel/pipeline-budgets" {
|
|
|
329
342
|
}
|
|
330
343
|
|
|
331
344
|
declare module "@warpgogol/werkstatt-engine/kernel/validator-inventory" {
|
|
332
|
-
export
|
|
345
|
+
export function createValidatorInventoryModule(...args: any[]): any;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
declare module "@warpgogol/werkstatt-engine/remediation-module" {
|
|
349
|
+
export function createRemediationModule(...args: any[]): any;
|
|
333
350
|
}
|
|
334
351
|
|
|
335
352
|
declare module "@warpgogol/werkstatt-engine/kernel/semantic" {
|
|
336
|
-
export
|
|
353
|
+
export function createSemanticModule(...args: any[]): any;
|
|
337
354
|
}
|
|
338
355
|
|
|
339
356
|
declare module "@warpgogol/werkstatt-engine/kernel/runtime" {
|
|
@@ -378,12 +395,10 @@ declare module "@warpgogol/werkstatt-engine/kernel/types" {
|
|
|
378
395
|
export interface GeneratedArtifactSpec {}
|
|
379
396
|
export interface GeneratorOwnershipEntry {}
|
|
380
397
|
export interface KernelRuntimeContext {}
|
|
381
|
-
export interface KernelCommandDefinition {}
|
|
382
398
|
export interface KernelPipelineStep {}
|
|
383
|
-
export interface KernelModuleRegistry {}
|
|
384
|
-
export interface KernelModule {}
|
|
385
399
|
export interface KernelAppConfig {}
|
|
386
400
|
export interface KernelExecutionReport {}
|
|
401
|
+
export interface RemediationHint {}
|
|
387
402
|
export interface KernelPipelineReport {}
|
|
388
403
|
export interface KernelCommandTiming {}
|
|
389
404
|
export interface PipelineStepTiming {}
|
|
@@ -399,6 +414,9 @@ declare module "@warpgogol/werkstatt-engine/kernel/types" {
|
|
|
399
414
|
export type KernelFlagValue = any;
|
|
400
415
|
export type GateSeverity = any;
|
|
401
416
|
export type GatePhase = any;
|
|
417
|
+
export type KernelCommandDefinition = any;
|
|
418
|
+
export type KernelModule = any;
|
|
419
|
+
export type ModuleFiberState = any;
|
|
402
420
|
export type PipelineStepStatus = any;
|
|
403
421
|
}
|
|
404
422
|
|
|
@@ -438,7 +456,7 @@ declare module "@warpgogol/werkstatt-engine/kernel/dht" {
|
|
|
438
456
|
}
|
|
439
457
|
|
|
440
458
|
declare module "@warpgogol/werkstatt-engine/kernel/dht-module" {
|
|
441
|
-
export
|
|
459
|
+
export function createDhtModule(...args: any[]): any;
|
|
442
460
|
}
|
|
443
461
|
|
|
444
462
|
declare module "@warpgogol/werkstatt-engine/mission" {
|
|
@@ -504,6 +522,14 @@ declare module "@warpgogol/werkstatt-engine/mission" {
|
|
|
504
522
|
export const MissionPreflightInput: any;
|
|
505
523
|
export const PreflightCheckResult: any;
|
|
506
524
|
export const MissionPreflightData: any;
|
|
525
|
+
export const ValidationState: any;
|
|
526
|
+
export const ValidatorState: any;
|
|
527
|
+
export const resolveValidationStatePath: any;
|
|
528
|
+
export const readValidationState: any;
|
|
529
|
+
export const writeValidationState: any;
|
|
530
|
+
export const buildValidatorStatesFromSteps: any;
|
|
531
|
+
export const runValidationStateInspect: any;
|
|
532
|
+
export const ValidationStateInspectData: any;
|
|
507
533
|
}
|
|
508
534
|
|
|
509
535
|
declare module "@warpgogol/werkstatt-engine/sternsystem" {
|
|
@@ -615,7 +641,6 @@ declare module "@warpgogol/werkstatt-engine/bordbuch" {
|
|
|
615
641
|
}
|
|
616
642
|
|
|
617
643
|
declare module "@warpgogol/werkstatt-engine/artifact-store" {
|
|
618
|
-
export function createArtifactStoreModule(...args: any[]): any;
|
|
619
644
|
export const runArtifactStorePut: any;
|
|
620
645
|
export const ArtifactStorePutData: any;
|
|
621
646
|
export const storeArtifactCore: any;
|
|
@@ -632,7 +657,6 @@ declare module "@warpgogol/werkstatt-engine/artifact-store" {
|
|
|
632
657
|
}
|
|
633
658
|
|
|
634
659
|
declare module "@warpgogol/werkstatt-engine/behavior-snapshot" {
|
|
635
|
-
export function createBehaviorSnapshotModule(...args: any[]): any;
|
|
636
660
|
export const runBehaviorSnapshotCapture: any;
|
|
637
661
|
export const BehaviorSnapshotCaptureData: any;
|
|
638
662
|
export const runBehaviorSnapshotDiff: any;
|
|
@@ -640,7 +664,6 @@ declare module "@warpgogol/werkstatt-engine/behavior-snapshot" {
|
|
|
640
664
|
}
|
|
641
665
|
|
|
642
666
|
declare module "@warpgogol/werkstatt-engine/release" {
|
|
643
|
-
export function createReleaseModule(...args: any[]): any;
|
|
644
667
|
export const runReleasePrepare: any;
|
|
645
668
|
export const ReleasePrepareData: any;
|
|
646
669
|
export const runReleaseReady: any;
|
|
@@ -703,7 +726,6 @@ declare module "@warpgogol/werkstatt-engine/leitstand/adapters/cloudflare-worker
|
|
|
703
726
|
}
|
|
704
727
|
|
|
705
728
|
declare module "@warpgogol/werkstatt-engine/notausgang" {
|
|
706
|
-
export function createNotausgangModule(...args: any[]): any;
|
|
707
729
|
export const runNotausgangExport: any;
|
|
708
730
|
export const NotausgangExportData: any;
|
|
709
731
|
export const runNotausgangValidate: any;
|
|
@@ -729,7 +751,6 @@ declare module "@warpgogol/werkstatt-engine/evidence" {
|
|
|
729
751
|
}
|
|
730
752
|
|
|
731
753
|
declare module "@warpgogol/werkstatt-engine/handoff" {
|
|
732
|
-
export function createHandoffModule(...args: any[]): any;
|
|
733
754
|
export const diffCapabilities: any;
|
|
734
755
|
export const intentMatches: any;
|
|
735
756
|
export const worstTier: any;
|
|
@@ -800,16 +821,6 @@ declare module "@warpgogol/werkstatt-engine/handoff" {
|
|
|
800
821
|
export const runBordbuchGenerate: any;
|
|
801
822
|
export const runBordbuchStatus: any;
|
|
802
823
|
export const BordbuchViolation: any;
|
|
803
|
-
export const createArtifactStoreModule: any;
|
|
804
|
-
export const createBehaviorSnapshotModule: any;
|
|
805
|
-
export const createReleaseModule: any;
|
|
806
|
-
export const createLeitstandModule: any;
|
|
807
|
-
export const createSubdomainModule: any;
|
|
808
|
-
export const createCustomdomainModule: any;
|
|
809
|
-
export const createDnsModule: any;
|
|
810
|
-
export const createNotausgangModule: any;
|
|
811
|
-
export const createDeployModule: any;
|
|
812
|
-
export const createEvidenceModule: any;
|
|
813
824
|
export const createPlatformModule: any;
|
|
814
825
|
export const runPlatformConsistencyValidate: any;
|
|
815
826
|
export const PlatformConsistencyData: any;
|
|
@@ -972,7 +983,7 @@ declare module "@warpgogol/werkstatt-engine/integrity" {
|
|
|
972
983
|
}
|
|
973
984
|
|
|
974
985
|
declare module "@warpgogol/werkstatt-engine/observability" {
|
|
975
|
-
export const
|
|
986
|
+
export const createObservabilityModule: any;
|
|
976
987
|
export const runObservabilityConventionsValidate: any;
|
|
977
988
|
export const runObservabilityStackValidate: any;
|
|
978
989
|
export const runObservabilityStackHealth: any;
|
|
@@ -990,7 +1001,7 @@ declare module "@warpgogol/werkstatt-engine/observability" {
|
|
|
990
1001
|
}
|
|
991
1002
|
|
|
992
1003
|
declare module "@warpgogol/werkstatt-engine/observability/module" {
|
|
993
|
-
export
|
|
1004
|
+
export function createObservabilityModule(...args: any[]): any;
|
|
994
1005
|
}
|
|
995
1006
|
|
|
996
1007
|
declare module "@warpgogol/werkstatt-engine/fingerprint" {
|
|
@@ -1037,6 +1048,7 @@ declare module "@warpgogol/werkstatt-engine/agent-gate" {
|
|
|
1037
1048
|
export function createFixedWindowLimiter(...args: any[]): any;
|
|
1038
1049
|
export interface RateLimitResult {}
|
|
1039
1050
|
export interface RateLimiter {}
|
|
1051
|
+
export const createAgentReflectRoute: any;
|
|
1040
1052
|
}
|
|
1041
1053
|
|
|
1042
1054
|
declare module "@warpgogol/werkstatt-engine/agent-gate/astro" {
|
|
@@ -1045,6 +1057,11 @@ declare module "@warpgogol/werkstatt-engine/agent-gate/astro" {
|
|
|
1045
1057
|
export function createAgentSearchRoute(...args: any[]): any;
|
|
1046
1058
|
}
|
|
1047
1059
|
|
|
1060
|
+
declare module "@warpgogol/werkstatt-engine/agent-gate/reflect-route" {
|
|
1061
|
+
export function createAgentReflectRoute(...args: any[]): any;
|
|
1062
|
+
export interface CreateAgentReflectRouteOptions {}
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1048
1065
|
declare module "@warpgogol/werkstatt-engine/changelog" {
|
|
1049
1066
|
export const runChangelogGenerate: any;
|
|
1050
1067
|
export const runChangelogRebuildIndex: any;
|
|
@@ -1114,6 +1131,7 @@ declare module "@warpgogol/werkstatt-engine/schemas" {
|
|
|
1114
1131
|
export const diagnosticRuleIdSchema: any;
|
|
1115
1132
|
export const safeWorkspaceRelativePathSchema: any;
|
|
1116
1133
|
export const safeDiagnosticUrlSchema: any;
|
|
1134
|
+
export const remediationRefSchema: any;
|
|
1117
1135
|
export const DIAGNOSTIC_LIMITS: any;
|
|
1118
1136
|
export const dhtSiteEntrySchema: any;
|
|
1119
1137
|
export const dhtConfigSchema: any;
|
|
@@ -1125,9 +1143,10 @@ declare module "@warpgogol/werkstatt-engine/schemas" {
|
|
|
1125
1143
|
}
|
|
1126
1144
|
|
|
1127
1145
|
declare module "@warpgogol/werkstatt-engine/component" {
|
|
1128
|
-
export const
|
|
1146
|
+
export const SCOPE_ERROR_CODES: any;
|
|
1147
|
+
export const parseComponentDeclaration: any;
|
|
1129
1148
|
export const parseResolvedComponentSetV1: any;
|
|
1130
|
-
export const
|
|
1149
|
+
export const componentDeclarationSchema: any;
|
|
1131
1150
|
export const resolvedComponentSetV1Schema: any;
|
|
1132
1151
|
export const computeManifestHash: any;
|
|
1133
1152
|
export const computeSetHash: any;
|
|
@@ -1154,6 +1173,11 @@ declare module "@warpgogol/werkstatt-engine/testing/e2e" {
|
|
|
1154
1173
|
export = _;
|
|
1155
1174
|
}
|
|
1156
1175
|
|
|
1176
|
+
declare module "@warpgogol/werkstatt-engine/testing/boot" {
|
|
1177
|
+
const _: any;
|
|
1178
|
+
export = _;
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1157
1181
|
declare module "@warpgogol/werkstatt-engine/e2e" {
|
|
1158
1182
|
export const runColdE2e: any;
|
|
1159
1183
|
}
|
|
@@ -1162,13 +1186,62 @@ declare module "@warpgogol/werkstatt-engine/component-runtime/reflection" {
|
|
|
1162
1186
|
export function toReflectedState(...args: any[]): any;
|
|
1163
1187
|
export function createCapabilityCatalog(...args: any[]): any;
|
|
1164
1188
|
export function assertNoForbiddenFields(...args: any[]): any;
|
|
1189
|
+
export function reflectRuntime(...args: any[]): any;
|
|
1165
1190
|
export interface CapabilityCatalogEntryV1 {}
|
|
1166
1191
|
export interface CapabilityCatalogV1 {}
|
|
1167
1192
|
export interface LiveComponentObservation {}
|
|
1168
1193
|
export interface ReflectionInput {}
|
|
1194
|
+
export interface LawKernelSummary {}
|
|
1195
|
+
export interface ComponentReflectionV1 {}
|
|
1196
|
+
export interface RuntimeReflectionV1 {}
|
|
1169
1197
|
export type ReflectedLifecycleState = any;
|
|
1170
1198
|
}
|
|
1171
1199
|
|
|
1200
|
+
declare module "@warpgogol/werkstatt-engine/component-runtime-module" {
|
|
1201
|
+
export function createComponentRuntimeModule(...args: any[]): any;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
declare module "@warpgogol/werkstatt-engine/effects-module" {
|
|
1205
|
+
export function createEffectsModule(...args: any[]): any;
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
declare module "@warpgogol/werkstatt-engine/evolution-module" {
|
|
1209
|
+
export function createEvolutionModule(...args: any[]): any;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
declare module "@warpgogol/werkstatt-engine/isolation-module" {
|
|
1213
|
+
export function createIsolationModule(...args: any[]): any;
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
declare module "@warpgogol/werkstatt-engine/scope-module" {
|
|
1217
|
+
export function createScopeModule(...args: any[]): any;
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
declare module "@warpgogol/werkstatt-engine/composition-module" {
|
|
1221
|
+
export const compositionModule: any;
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
declare module "@warpgogol/werkstatt-engine/runtime/desired-state" {
|
|
1225
|
+
export interface DesiredState {}
|
|
1226
|
+
export interface ReconciliationDelta {}
|
|
1227
|
+
export interface ReconciliationResult {}
|
|
1228
|
+
export interface CommandDeclaration {}
|
|
1229
|
+
export interface PipelineDeclaration {}
|
|
1230
|
+
export interface ModuleExport {}
|
|
1231
|
+
export interface ModuleBuildContext {}
|
|
1232
|
+
export interface ActualState {}
|
|
1233
|
+
export interface MutableActualState {}
|
|
1234
|
+
export interface DesiredStateOverlay {}
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
declare module "@warpgogol/werkstatt-engine/scope" {
|
|
1238
|
+
export function createScopeManager(...args: any[]): any;
|
|
1239
|
+
export function getDefaultScopeManager(...args: any[]): any;
|
|
1240
|
+
export function resetDefaultScopeManager(...args: any[]): any;
|
|
1241
|
+
export class ScopeError { constructor(...args: any[]); }
|
|
1242
|
+
export interface ScopeManagerOptions {}
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1172
1245
|
declare module "@warpgogol/werkstatt-engine/component-runtime/conformance" {
|
|
1173
1246
|
export function createConformanceResult(...args: any[]): any;
|
|
1174
1247
|
export interface ConformanceEventV1 {}
|
|
@@ -1205,9 +1278,14 @@ declare module "@warpgogol/werkstatt-engine/isolation/contracts" {
|
|
|
1205
1278
|
export interface IsolationAdapterV1 {}
|
|
1206
1279
|
export interface AdversarialCaseResultV1 {}
|
|
1207
1280
|
export interface IsolationConformanceResultV1 {}
|
|
1281
|
+
export interface IsolationPolicy {}
|
|
1282
|
+
export interface SandboxHandle {}
|
|
1283
|
+
export interface CapabilityBridge {}
|
|
1284
|
+
export interface IsolationManager {}
|
|
1208
1285
|
export type IsolationPropertyKind = any;
|
|
1209
1286
|
export type IsolationConformanceStatus = any;
|
|
1210
1287
|
export type AdversarialCaseKind = any;
|
|
1288
|
+
export type SandboxState = any;
|
|
1211
1289
|
}
|
|
1212
1290
|
|
|
1213
1291
|
declare module "@warpgogol/werkstatt-engine/isolation/schemas" {
|
|
@@ -1512,6 +1512,12 @@ declare module "@warpgogol/werkstatt-shared/share/redirects" {
|
|
|
1512
1512
|
export type RedirectRule = any;
|
|
1513
1513
|
}
|
|
1514
1514
|
|
|
1515
|
+
declare module "@warpgogol/werkstatt-shared/share/remediation" {
|
|
1516
|
+
export function lookupRemediation(...args: any[]): any;
|
|
1517
|
+
export const REMEDIATION_CATALOG: any;
|
|
1518
|
+
export interface RemediationPattern {}
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1515
1521
|
declare module "@warpgogol/werkstatt-shared/share/rfc0042-utils" {
|
|
1516
1522
|
export function need(...args: any[]): any;
|
|
1517
1523
|
export function cast(...args: any[]): any;
|