@tienne/gestalt 0.1.1 → 0.5.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/CLAUDE.md +175 -6
- package/README.md +381 -14
- package/dist/benchmarks/runners/passthrough-benchmark-runner.d.ts +94 -0
- package/dist/benchmarks/runners/passthrough-benchmark-runner.d.ts.map +1 -0
- package/dist/benchmarks/runners/passthrough-benchmark-runner.js +454 -0
- package/dist/benchmarks/runners/passthrough-benchmark-runner.js.map +1 -0
- package/dist/benchmarks/scenarios/api-gateway.scenario.d.ts +3 -0
- package/dist/benchmarks/scenarios/api-gateway.scenario.d.ts.map +1 -0
- package/dist/benchmarks/scenarios/api-gateway.scenario.js +115 -0
- package/dist/benchmarks/scenarios/api-gateway.scenario.js.map +1 -0
- package/dist/benchmarks/scenarios/auth-system.scenario.d.ts +3 -0
- package/dist/benchmarks/scenarios/auth-system.scenario.d.ts.map +1 -0
- package/dist/benchmarks/scenarios/auth-system.scenario.js +114 -0
- package/dist/benchmarks/scenarios/auth-system.scenario.js.map +1 -0
- package/dist/benchmarks/scenarios/dashboard.scenario.d.ts +3 -0
- package/dist/benchmarks/scenarios/dashboard.scenario.d.ts.map +1 -0
- package/dist/benchmarks/scenarios/dashboard.scenario.js +110 -0
- package/dist/benchmarks/scenarios/dashboard.scenario.js.map +1 -0
- package/dist/benchmarks/types.d.ts +148 -0
- package/dist/benchmarks/types.d.ts.map +1 -0
- package/dist/benchmarks/types.js +2 -0
- package/dist/benchmarks/types.js.map +1 -0
- package/dist/package.json +61 -0
- package/dist/schemas/gestalt.schema.json +98 -0
- package/dist/src/agent/parser.d.ts.map +1 -1
- package/dist/src/agent/parser.js +2 -0
- package/dist/src/agent/parser.js.map +1 -1
- package/dist/src/agent/passthrough-generator.d.ts +27 -0
- package/dist/src/agent/passthrough-generator.d.ts.map +1 -0
- package/dist/src/agent/passthrough-generator.js +133 -0
- package/dist/src/agent/passthrough-generator.js.map +1 -0
- package/dist/src/agent/registry.d.ts +1 -0
- package/dist/src/agent/registry.d.ts.map +1 -1
- package/dist/src/agent/registry.js +4 -1
- package/dist/src/agent/registry.js.map +1 -1
- package/dist/src/agent/role-agent-registry.d.ts +18 -0
- package/dist/src/agent/role-agent-registry.d.ts.map +1 -0
- package/dist/src/agent/role-agent-registry.js +62 -0
- package/dist/src/agent/role-agent-registry.js.map +1 -0
- package/dist/src/agent/role-consensus-engine.d.ts +9 -0
- package/dist/src/agent/role-consensus-engine.d.ts.map +1 -0
- package/dist/src/agent/role-consensus-engine.js +35 -0
- package/dist/src/agent/role-consensus-engine.js.map +1 -0
- package/dist/src/agent/role-match-engine.d.ts +14 -0
- package/dist/src/agent/role-match-engine.d.ts.map +1 -0
- package/dist/src/agent/role-match-engine.js +46 -0
- package/dist/src/agent/role-match-engine.js.map +1 -0
- package/dist/src/agent/role-prompt-generator.d.ts +10 -0
- package/dist/src/agent/role-prompt-generator.d.ts.map +1 -0
- package/dist/src/agent/role-prompt-generator.js +22 -0
- package/dist/src/agent/role-prompt-generator.js.map +1 -0
- package/dist/src/cli/commands/interview.js +2 -2
- package/dist/src/cli/commands/interview.js.map +1 -1
- package/dist/src/cli/commands/monitor.d.ts +2 -0
- package/dist/src/cli/commands/monitor.d.ts.map +1 -0
- package/dist/src/cli/commands/monitor.js +13 -0
- package/dist/src/cli/commands/monitor.js.map +1 -0
- package/dist/src/cli/commands/setup.d.ts +2 -0
- package/dist/src/cli/commands/setup.d.ts.map +1 -0
- package/dist/src/cli/commands/setup.js +20 -0
- package/dist/src/cli/commands/setup.js.map +1 -0
- package/dist/src/cli/commands/spec.js +2 -2
- package/dist/src/cli/commands/spec.js.map +1 -1
- package/dist/src/cli/commands/status.d.ts.map +1 -1
- package/dist/src/cli/commands/status.js +3 -3
- package/dist/src/cli/commands/status.js.map +1 -1
- package/dist/src/cli/index.d.ts.map +1 -1
- package/dist/src/cli/index.js +16 -1
- package/dist/src/cli/index.js.map +1 -1
- package/dist/src/core/config.d.ts +80 -17
- package/dist/src/core/config.d.ts.map +1 -1
- package/dist/src/core/config.js +141 -31
- package/dist/src/core/config.js.map +1 -1
- package/dist/src/core/constants.d.ts +2 -2
- package/dist/src/core/constants.d.ts.map +1 -1
- package/dist/src/core/constants.js +2 -2
- package/dist/src/core/constants.js.map +1 -1
- package/dist/src/core/errors.d.ts +3 -0
- package/dist/src/core/errors.d.ts.map +1 -1
- package/dist/src/core/errors.js +6 -0
- package/dist/src/core/errors.js.map +1 -1
- package/dist/src/core/types.d.ts +83 -3
- package/dist/src/core/types.d.ts.map +1 -1
- package/dist/src/core/version.d.ts +10 -0
- package/dist/src/core/version.d.ts.map +1 -0
- package/dist/src/core/version.js +89 -0
- package/dist/src/core/version.js.map +1 -0
- package/dist/src/events/types.d.ts +16 -1
- package/dist/src/events/types.d.ts.map +1 -1
- package/dist/src/events/types.js +19 -0
- package/dist/src/events/types.js.map +1 -1
- package/dist/src/execute/passthrough-engine.d.ts +44 -2
- package/dist/src/execute/passthrough-engine.d.ts.map +1 -1
- package/dist/src/execute/passthrough-engine.js +245 -10
- package/dist/src/execute/passthrough-engine.js.map +1 -1
- package/dist/src/execute/repository.d.ts.map +1 -1
- package/dist/src/execute/repository.js +24 -0
- package/dist/src/execute/repository.js.map +1 -1
- package/dist/src/execute/session.d.ts +6 -1
- package/dist/src/execute/session.d.ts.map +1 -1
- package/dist/src/execute/session.js +60 -0
- package/dist/src/execute/session.js.map +1 -1
- package/dist/src/mcp/schemas.d.ts +513 -9
- package/dist/src/mcp/schemas.d.ts.map +1 -1
- package/dist/src/mcp/schemas.js +102 -0
- package/dist/src/mcp/schemas.js.map +1 -1
- package/dist/src/mcp/server.d.ts.map +1 -1
- package/dist/src/mcp/server.js +253 -38
- package/dist/src/mcp/server.js.map +1 -1
- package/dist/src/mcp/tools/benchmark-passthrough.d.ts +3 -0
- package/dist/src/mcp/tools/benchmark-passthrough.d.ts.map +1 -0
- package/dist/src/mcp/tools/benchmark-passthrough.js +95 -0
- package/dist/src/mcp/tools/benchmark-passthrough.js.map +1 -0
- package/dist/src/mcp/tools/create-agent-passthrough.d.ts +5 -0
- package/dist/src/mcp/tools/create-agent-passthrough.d.ts.map +1 -0
- package/dist/src/mcp/tools/create-agent-passthrough.js +59 -0
- package/dist/src/mcp/tools/create-agent-passthrough.js.map +1 -0
- package/dist/src/mcp/tools/execute-passthrough.d.ts.map +1 -1
- package/dist/src/mcp/tools/execute-passthrough.js +126 -0
- package/dist/src/mcp/tools/execute-passthrough.js.map +1 -1
- package/dist/src/mcp/tools/review-passthrough.d.ts +6 -0
- package/dist/src/mcp/tools/review-passthrough.d.ts.map +1 -0
- package/dist/src/mcp/tools/review-passthrough.js +134 -0
- package/dist/src/mcp/tools/review-passthrough.js.map +1 -0
- package/dist/src/mcp/tools/status.d.ts +2 -1
- package/dist/src/mcp/tools/status.d.ts.map +1 -1
- package/dist/src/mcp/tools/status.js +81 -26
- package/dist/src/mcp/tools/status.js.map +1 -1
- package/dist/src/resilience/lateral.d.ts +17 -0
- package/dist/src/resilience/lateral.d.ts.map +1 -0
- package/dist/src/resilience/lateral.js +62 -0
- package/dist/src/resilience/lateral.js.map +1 -0
- package/dist/src/resilience/prompts.d.ts +5 -0
- package/dist/src/resilience/prompts.d.ts.map +1 -0
- package/dist/src/resilience/prompts.js +130 -0
- package/dist/src/resilience/prompts.js.map +1 -0
- package/dist/src/resilience/stagnation-detector.d.ts +19 -0
- package/dist/src/resilience/stagnation-detector.d.ts.map +1 -0
- package/dist/src/resilience/stagnation-detector.js +38 -0
- package/dist/src/resilience/stagnation-detector.js.map +1 -0
- package/dist/src/resilience/types.d.ts +39 -0
- package/dist/src/resilience/types.d.ts.map +1 -0
- package/dist/src/resilience/types.js +17 -0
- package/dist/src/resilience/types.js.map +1 -0
- package/dist/src/review/agent-matcher.d.ts +15 -0
- package/dist/src/review/agent-matcher.d.ts.map +1 -0
- package/dist/src/review/agent-matcher.js +61 -0
- package/dist/src/review/agent-matcher.js.map +1 -0
- package/dist/src/review/context-collector.d.ts +7 -0
- package/dist/src/review/context-collector.d.ts.map +1 -0
- package/dist/src/review/context-collector.js +44 -0
- package/dist/src/review/context-collector.js.map +1 -0
- package/dist/src/review/passthrough-engine.d.ts +53 -0
- package/dist/src/review/passthrough-engine.d.ts.map +1 -0
- package/dist/src/review/passthrough-engine.js +257 -0
- package/dist/src/review/passthrough-engine.js.map +1 -0
- package/dist/src/review/report-generator.d.ts +7 -0
- package/dist/src/review/report-generator.d.ts.map +1 -0
- package/dist/src/review/report-generator.js +82 -0
- package/dist/src/review/report-generator.js.map +1 -0
- package/dist/src/tui/components/TUIApp.d.ts +20 -0
- package/dist/src/tui/components/TUIApp.d.ts.map +1 -0
- package/dist/src/tui/components/TUIApp.js +84 -0
- package/dist/src/tui/components/TUIApp.js.map +1 -0
- package/dist/src/tui/hooks/event-store-reader.d.ts +28 -0
- package/dist/src/tui/hooks/event-store-reader.d.ts.map +1 -0
- package/dist/src/tui/hooks/event-store-reader.js +143 -0
- package/dist/src/tui/hooks/event-store-reader.js.map +1 -0
- package/dist/src/tui/hooks/useEventStorePoller.d.ts +12 -0
- package/dist/src/tui/hooks/useEventStorePoller.d.ts.map +1 -0
- package/dist/src/tui/hooks/useEventStorePoller.js +86 -0
- package/dist/src/tui/hooks/useEventStorePoller.js.map +1 -0
- package/dist/src/tui/screens/DashboardScreen.d.ts +4 -0
- package/dist/src/tui/screens/DashboardScreen.d.ts.map +1 -0
- package/dist/src/tui/screens/DashboardScreen.js +132 -0
- package/dist/src/tui/screens/DashboardScreen.js.map +1 -0
- package/dist/src/tui/screens/DebugScreen.d.ts +4 -0
- package/dist/src/tui/screens/DebugScreen.d.ts.map +1 -0
- package/dist/src/tui/screens/DebugScreen.js +40 -0
- package/dist/src/tui/screens/DebugScreen.js.map +1 -0
- package/dist/src/tui/screens/EvolutionScreen.d.ts +4 -0
- package/dist/src/tui/screens/EvolutionScreen.d.ts.map +1 -0
- package/dist/src/tui/screens/EvolutionScreen.js +136 -0
- package/dist/src/tui/screens/EvolutionScreen.js.map +1 -0
- package/dist/src/tui/screens/HUDPanel.d.ts +4 -0
- package/dist/src/tui/screens/HUDPanel.d.ts.map +1 -0
- package/dist/src/tui/screens/HUDPanel.js +13 -0
- package/dist/src/tui/screens/HUDPanel.js.map +1 -0
- package/dist/src/tui/screens/InterviewScreen.d.ts +4 -0
- package/dist/src/tui/screens/InterviewScreen.d.ts.map +1 -0
- package/dist/src/tui/screens/InterviewScreen.js +103 -0
- package/dist/src/tui/screens/InterviewScreen.js.map +1 -0
- package/dist/src/tui/screens/LogScreen.d.ts +4 -0
- package/dist/src/tui/screens/LogScreen.d.ts.map +1 -0
- package/dist/src/tui/screens/LogScreen.js +83 -0
- package/dist/src/tui/screens/LogScreen.js.map +1 -0
- package/dist/src/tui/screens/SessionListScreen.d.ts +4 -0
- package/dist/src/tui/screens/SessionListScreen.d.ts.map +1 -0
- package/dist/src/tui/screens/SessionListScreen.js +71 -0
- package/dist/src/tui/screens/SessionListScreen.js.map +1 -0
- package/dist/src/tui/screens/SpecViewerScreen.d.ts +4 -0
- package/dist/src/tui/screens/SpecViewerScreen.d.ts.map +1 -0
- package/dist/src/tui/screens/SpecViewerScreen.js +73 -0
- package/dist/src/tui/screens/SpecViewerScreen.js.map +1 -0
- package/dist/src/tui/widgets/DriftMeter.d.ts +15 -0
- package/dist/src/tui/widgets/DriftMeter.d.ts.map +1 -0
- package/dist/src/tui/widgets/DriftMeter.js +27 -0
- package/dist/src/tui/widgets/DriftMeter.js.map +1 -0
- package/dist/src/tui/widgets/GestaltPrincipleBar.d.ts +9 -0
- package/dist/src/tui/widgets/GestaltPrincipleBar.d.ts.map +1 -0
- package/dist/src/tui/widgets/GestaltPrincipleBar.js +35 -0
- package/dist/src/tui/widgets/GestaltPrincipleBar.js.map +1 -0
- package/dist/src/tui/widgets/TaskDAGTree.d.ts +15 -0
- package/dist/src/tui/widgets/TaskDAGTree.d.ts.map +1 -0
- package/dist/src/tui/widgets/TaskDAGTree.js +54 -0
- package/dist/src/tui/widgets/TaskDAGTree.js.map +1 -0
- package/package.json +11 -3
- package/schemas/gestalt.schema.json +98 -0
|
@@ -126,7 +126,7 @@ export declare const specInputSchema: z.ZodObject<{
|
|
|
126
126
|
}>;
|
|
127
127
|
export type SpecInput = z.infer<typeof specInputSchema>;
|
|
128
128
|
export declare const executeInputSchema: z.ZodObject<{
|
|
129
|
-
action: z.ZodEnum<["start", "plan_step", "plan_complete", "execute_start", "execute_task", "evaluate", "status", "evolve_fix", "evolve", "evolve_patch", "evolve_re_execute"]>;
|
|
129
|
+
action: z.ZodEnum<["start", "plan_step", "plan_complete", "execute_start", "execute_task", "evaluate", "status", "evolve_fix", "evolve", "evolve_patch", "evolve_re_execute", "evolve_lateral", "evolve_lateral_result", "role_match", "role_consensus", "review_start", "review_submit", "review_consensus", "review_fix"]>;
|
|
130
130
|
spec: z.ZodOptional<z.ZodObject<{
|
|
131
131
|
version: z.ZodString;
|
|
132
132
|
goal: z.ZodString;
|
|
@@ -248,14 +248,14 @@ export declare const executeInputSchema: z.ZodObject<{
|
|
|
248
248
|
}, "strip", z.ZodTypeAny, {
|
|
249
249
|
reasoning: string;
|
|
250
250
|
name: string;
|
|
251
|
-
groupId: string;
|
|
252
251
|
domain: string;
|
|
252
|
+
groupId: string;
|
|
253
253
|
taskIds: string[];
|
|
254
254
|
}, {
|
|
255
255
|
reasoning: string;
|
|
256
256
|
name: string;
|
|
257
|
-
groupId: string;
|
|
258
257
|
domain: string;
|
|
258
|
+
groupId: string;
|
|
259
259
|
taskIds: string[];
|
|
260
260
|
}>, "many">>;
|
|
261
261
|
dagValidation: z.ZodOptional<z.ZodObject<{
|
|
@@ -304,8 +304,8 @@ export declare const executeInputSchema: z.ZodObject<{
|
|
|
304
304
|
taskGroups?: {
|
|
305
305
|
reasoning: string;
|
|
306
306
|
name: string;
|
|
307
|
-
groupId: string;
|
|
308
307
|
domain: string;
|
|
308
|
+
groupId: string;
|
|
309
309
|
taskIds: string[];
|
|
310
310
|
}[] | undefined;
|
|
311
311
|
dagValidation?: {
|
|
@@ -338,8 +338,8 @@ export declare const executeInputSchema: z.ZodObject<{
|
|
|
338
338
|
taskGroups?: {
|
|
339
339
|
reasoning: string;
|
|
340
340
|
name: string;
|
|
341
|
-
groupId: string;
|
|
342
341
|
domain: string;
|
|
342
|
+
groupId: string;
|
|
343
343
|
taskIds: string[];
|
|
344
344
|
}[] | undefined;
|
|
345
345
|
dagValidation?: {
|
|
@@ -564,8 +564,315 @@ export declare const executeInputSchema: z.ZodObject<{
|
|
|
564
564
|
artifacts: string[];
|
|
565
565
|
}>>;
|
|
566
566
|
terminateReason: z.ZodOptional<z.ZodEnum<["caller"]>>;
|
|
567
|
+
matchResult: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
568
|
+
agentName: z.ZodString;
|
|
569
|
+
domain: z.ZodArray<z.ZodString, "many">;
|
|
570
|
+
relevanceScore: z.ZodNumber;
|
|
571
|
+
reasoning: z.ZodString;
|
|
572
|
+
}, "strip", z.ZodTypeAny, {
|
|
573
|
+
reasoning: string;
|
|
574
|
+
domain: string[];
|
|
575
|
+
agentName: string;
|
|
576
|
+
relevanceScore: number;
|
|
577
|
+
}, {
|
|
578
|
+
reasoning: string;
|
|
579
|
+
domain: string[];
|
|
580
|
+
agentName: string;
|
|
581
|
+
relevanceScore: number;
|
|
582
|
+
}>, "many">>;
|
|
583
|
+
perspectives: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
584
|
+
agentName: z.ZodString;
|
|
585
|
+
perspective: z.ZodString;
|
|
586
|
+
confidence: z.ZodNumber;
|
|
587
|
+
}, "strip", z.ZodTypeAny, {
|
|
588
|
+
confidence: number;
|
|
589
|
+
agentName: string;
|
|
590
|
+
perspective: string;
|
|
591
|
+
}, {
|
|
592
|
+
confidence: number;
|
|
593
|
+
agentName: string;
|
|
594
|
+
perspective: string;
|
|
595
|
+
}>, "many">>;
|
|
596
|
+
consensus: z.ZodOptional<z.ZodObject<{
|
|
597
|
+
consensus: z.ZodString;
|
|
598
|
+
conflictResolutions: z.ZodArray<z.ZodString, "many">;
|
|
599
|
+
perspectives: z.ZodArray<z.ZodObject<{
|
|
600
|
+
agentName: z.ZodString;
|
|
601
|
+
perspective: z.ZodString;
|
|
602
|
+
confidence: z.ZodNumber;
|
|
603
|
+
}, "strip", z.ZodTypeAny, {
|
|
604
|
+
confidence: number;
|
|
605
|
+
agentName: string;
|
|
606
|
+
perspective: string;
|
|
607
|
+
}, {
|
|
608
|
+
confidence: number;
|
|
609
|
+
agentName: string;
|
|
610
|
+
perspective: string;
|
|
611
|
+
}>, "many">;
|
|
612
|
+
}, "strip", z.ZodTypeAny, {
|
|
613
|
+
consensus: string;
|
|
614
|
+
perspectives: {
|
|
615
|
+
confidence: number;
|
|
616
|
+
agentName: string;
|
|
617
|
+
perspective: string;
|
|
618
|
+
}[];
|
|
619
|
+
conflictResolutions: string[];
|
|
620
|
+
}, {
|
|
621
|
+
consensus: string;
|
|
622
|
+
perspectives: {
|
|
623
|
+
confidence: number;
|
|
624
|
+
agentName: string;
|
|
625
|
+
perspective: string;
|
|
626
|
+
}[];
|
|
627
|
+
conflictResolutions: string[];
|
|
628
|
+
}>>;
|
|
629
|
+
lateralResult: z.ZodOptional<z.ZodObject<{
|
|
630
|
+
persona: z.ZodEnum<["multistability", "simplicity", "reification", "invariance"]>;
|
|
631
|
+
specPatch: z.ZodObject<{
|
|
632
|
+
acceptanceCriteria: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
633
|
+
constraints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
634
|
+
ontologySchema: z.ZodOptional<z.ZodObject<{
|
|
635
|
+
entities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
636
|
+
name: z.ZodString;
|
|
637
|
+
description: z.ZodString;
|
|
638
|
+
attributes: z.ZodArray<z.ZodString, "many">;
|
|
639
|
+
}, "strip", z.ZodTypeAny, {
|
|
640
|
+
name: string;
|
|
641
|
+
description: string;
|
|
642
|
+
attributes: string[];
|
|
643
|
+
}, {
|
|
644
|
+
name: string;
|
|
645
|
+
description: string;
|
|
646
|
+
attributes: string[];
|
|
647
|
+
}>, "many">>;
|
|
648
|
+
relations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
649
|
+
from: z.ZodString;
|
|
650
|
+
to: z.ZodString;
|
|
651
|
+
type: z.ZodString;
|
|
652
|
+
}, "strip", z.ZodTypeAny, {
|
|
653
|
+
type: string;
|
|
654
|
+
from: string;
|
|
655
|
+
to: string;
|
|
656
|
+
}, {
|
|
657
|
+
type: string;
|
|
658
|
+
from: string;
|
|
659
|
+
to: string;
|
|
660
|
+
}>, "many">>;
|
|
661
|
+
}, "strip", z.ZodTypeAny, {
|
|
662
|
+
entities?: {
|
|
663
|
+
name: string;
|
|
664
|
+
description: string;
|
|
665
|
+
attributes: string[];
|
|
666
|
+
}[] | undefined;
|
|
667
|
+
relations?: {
|
|
668
|
+
type: string;
|
|
669
|
+
from: string;
|
|
670
|
+
to: string;
|
|
671
|
+
}[] | undefined;
|
|
672
|
+
}, {
|
|
673
|
+
entities?: {
|
|
674
|
+
name: string;
|
|
675
|
+
description: string;
|
|
676
|
+
attributes: string[];
|
|
677
|
+
}[] | undefined;
|
|
678
|
+
relations?: {
|
|
679
|
+
type: string;
|
|
680
|
+
from: string;
|
|
681
|
+
to: string;
|
|
682
|
+
}[] | undefined;
|
|
683
|
+
}>>;
|
|
684
|
+
}, "strip", z.ZodTypeAny, {
|
|
685
|
+
constraints?: string[] | undefined;
|
|
686
|
+
acceptanceCriteria?: string[] | undefined;
|
|
687
|
+
ontologySchema?: {
|
|
688
|
+
entities?: {
|
|
689
|
+
name: string;
|
|
690
|
+
description: string;
|
|
691
|
+
attributes: string[];
|
|
692
|
+
}[] | undefined;
|
|
693
|
+
relations?: {
|
|
694
|
+
type: string;
|
|
695
|
+
from: string;
|
|
696
|
+
to: string;
|
|
697
|
+
}[] | undefined;
|
|
698
|
+
} | undefined;
|
|
699
|
+
}, {
|
|
700
|
+
constraints?: string[] | undefined;
|
|
701
|
+
acceptanceCriteria?: string[] | undefined;
|
|
702
|
+
ontologySchema?: {
|
|
703
|
+
entities?: {
|
|
704
|
+
name: string;
|
|
705
|
+
description: string;
|
|
706
|
+
attributes: string[];
|
|
707
|
+
}[] | undefined;
|
|
708
|
+
relations?: {
|
|
709
|
+
type: string;
|
|
710
|
+
from: string;
|
|
711
|
+
to: string;
|
|
712
|
+
}[] | undefined;
|
|
713
|
+
} | undefined;
|
|
714
|
+
}>;
|
|
715
|
+
description: z.ZodString;
|
|
716
|
+
}, "strip", z.ZodTypeAny, {
|
|
717
|
+
description: string;
|
|
718
|
+
specPatch: {
|
|
719
|
+
constraints?: string[] | undefined;
|
|
720
|
+
acceptanceCriteria?: string[] | undefined;
|
|
721
|
+
ontologySchema?: {
|
|
722
|
+
entities?: {
|
|
723
|
+
name: string;
|
|
724
|
+
description: string;
|
|
725
|
+
attributes: string[];
|
|
726
|
+
}[] | undefined;
|
|
727
|
+
relations?: {
|
|
728
|
+
type: string;
|
|
729
|
+
from: string;
|
|
730
|
+
to: string;
|
|
731
|
+
}[] | undefined;
|
|
732
|
+
} | undefined;
|
|
733
|
+
};
|
|
734
|
+
persona: "multistability" | "simplicity" | "reification" | "invariance";
|
|
735
|
+
}, {
|
|
736
|
+
description: string;
|
|
737
|
+
specPatch: {
|
|
738
|
+
constraints?: string[] | undefined;
|
|
739
|
+
acceptanceCriteria?: string[] | undefined;
|
|
740
|
+
ontologySchema?: {
|
|
741
|
+
entities?: {
|
|
742
|
+
name: string;
|
|
743
|
+
description: string;
|
|
744
|
+
attributes: string[];
|
|
745
|
+
}[] | undefined;
|
|
746
|
+
relations?: {
|
|
747
|
+
type: string;
|
|
748
|
+
from: string;
|
|
749
|
+
to: string;
|
|
750
|
+
}[] | undefined;
|
|
751
|
+
} | undefined;
|
|
752
|
+
};
|
|
753
|
+
persona: "multistability" | "simplicity" | "reification" | "invariance";
|
|
754
|
+
}>>;
|
|
755
|
+
reviewAgentName: z.ZodOptional<z.ZodString>;
|
|
756
|
+
reviewResult: z.ZodOptional<z.ZodObject<{
|
|
757
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
758
|
+
id: z.ZodString;
|
|
759
|
+
severity: z.ZodEnum<["critical", "high", "warning"]>;
|
|
760
|
+
category: z.ZodString;
|
|
761
|
+
file: z.ZodString;
|
|
762
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
763
|
+
message: z.ZodString;
|
|
764
|
+
suggestion: z.ZodString;
|
|
765
|
+
}, "strip", z.ZodTypeAny, {
|
|
766
|
+
message: string;
|
|
767
|
+
id: string;
|
|
768
|
+
severity: "critical" | "high" | "warning";
|
|
769
|
+
category: string;
|
|
770
|
+
file: string;
|
|
771
|
+
suggestion: string;
|
|
772
|
+
line?: number | undefined;
|
|
773
|
+
}, {
|
|
774
|
+
message: string;
|
|
775
|
+
id: string;
|
|
776
|
+
severity: "critical" | "high" | "warning";
|
|
777
|
+
category: string;
|
|
778
|
+
file: string;
|
|
779
|
+
suggestion: string;
|
|
780
|
+
line?: number | undefined;
|
|
781
|
+
}>, "many">;
|
|
782
|
+
approved: z.ZodBoolean;
|
|
783
|
+
summary: z.ZodString;
|
|
784
|
+
}, "strip", z.ZodTypeAny, {
|
|
785
|
+
issues: {
|
|
786
|
+
message: string;
|
|
787
|
+
id: string;
|
|
788
|
+
severity: "critical" | "high" | "warning";
|
|
789
|
+
category: string;
|
|
790
|
+
file: string;
|
|
791
|
+
suggestion: string;
|
|
792
|
+
line?: number | undefined;
|
|
793
|
+
}[];
|
|
794
|
+
approved: boolean;
|
|
795
|
+
summary: string;
|
|
796
|
+
}, {
|
|
797
|
+
issues: {
|
|
798
|
+
message: string;
|
|
799
|
+
id: string;
|
|
800
|
+
severity: "critical" | "high" | "warning";
|
|
801
|
+
category: string;
|
|
802
|
+
file: string;
|
|
803
|
+
suggestion: string;
|
|
804
|
+
line?: number | undefined;
|
|
805
|
+
}[];
|
|
806
|
+
approved: boolean;
|
|
807
|
+
summary: string;
|
|
808
|
+
}>>;
|
|
809
|
+
reviewConsensus: z.ZodOptional<z.ZodObject<{
|
|
810
|
+
mergedIssues: z.ZodArray<z.ZodObject<{
|
|
811
|
+
id: z.ZodString;
|
|
812
|
+
severity: z.ZodEnum<["critical", "high", "warning"]>;
|
|
813
|
+
category: z.ZodString;
|
|
814
|
+
file: z.ZodString;
|
|
815
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
816
|
+
message: z.ZodString;
|
|
817
|
+
suggestion: z.ZodString;
|
|
818
|
+
reportedBy: z.ZodString;
|
|
819
|
+
}, "strip", z.ZodTypeAny, {
|
|
820
|
+
message: string;
|
|
821
|
+
id: string;
|
|
822
|
+
severity: "critical" | "high" | "warning";
|
|
823
|
+
category: string;
|
|
824
|
+
file: string;
|
|
825
|
+
suggestion: string;
|
|
826
|
+
reportedBy: string;
|
|
827
|
+
line?: number | undefined;
|
|
828
|
+
}, {
|
|
829
|
+
message: string;
|
|
830
|
+
id: string;
|
|
831
|
+
severity: "critical" | "high" | "warning";
|
|
832
|
+
category: string;
|
|
833
|
+
file: string;
|
|
834
|
+
suggestion: string;
|
|
835
|
+
reportedBy: string;
|
|
836
|
+
line?: number | undefined;
|
|
837
|
+
}>, "many">;
|
|
838
|
+
approvedBy: z.ZodArray<z.ZodString, "many">;
|
|
839
|
+
blockedBy: z.ZodArray<z.ZodString, "many">;
|
|
840
|
+
summary: z.ZodString;
|
|
841
|
+
overallApproved: z.ZodBoolean;
|
|
842
|
+
}, "strip", z.ZodTypeAny, {
|
|
843
|
+
summary: string;
|
|
844
|
+
mergedIssues: {
|
|
845
|
+
message: string;
|
|
846
|
+
id: string;
|
|
847
|
+
severity: "critical" | "high" | "warning";
|
|
848
|
+
category: string;
|
|
849
|
+
file: string;
|
|
850
|
+
suggestion: string;
|
|
851
|
+
reportedBy: string;
|
|
852
|
+
line?: number | undefined;
|
|
853
|
+
}[];
|
|
854
|
+
approvedBy: string[];
|
|
855
|
+
blockedBy: string[];
|
|
856
|
+
overallApproved: boolean;
|
|
857
|
+
}, {
|
|
858
|
+
summary: string;
|
|
859
|
+
mergedIssues: {
|
|
860
|
+
message: string;
|
|
861
|
+
id: string;
|
|
862
|
+
severity: "critical" | "high" | "warning";
|
|
863
|
+
category: string;
|
|
864
|
+
file: string;
|
|
865
|
+
suggestion: string;
|
|
866
|
+
reportedBy: string;
|
|
867
|
+
line?: number | undefined;
|
|
868
|
+
}[];
|
|
869
|
+
approvedBy: string[];
|
|
870
|
+
blockedBy: string[];
|
|
871
|
+
overallApproved: boolean;
|
|
872
|
+
}>>;
|
|
873
|
+
reviewSessionId: z.ZodOptional<z.ZodString>;
|
|
567
874
|
}, "strip", z.ZodTypeAny, {
|
|
568
|
-
action: "plan_complete" | "evaluate" | "status" | "start" | "plan_step" | "execute_start" | "execute_task" | "evolve_fix" | "evolve" | "evolve_patch" | "evolve_re_execute";
|
|
875
|
+
action: "plan_complete" | "evaluate" | "status" | "start" | "plan_step" | "execute_start" | "execute_task" | "evolve_fix" | "evolve" | "evolve_patch" | "evolve_re_execute" | "evolve_lateral" | "evolve_lateral_result" | "role_match" | "role_consensus" | "review_start" | "review_submit" | "review_consensus" | "review_fix";
|
|
569
876
|
spec?: {
|
|
570
877
|
goal: string;
|
|
571
878
|
version: string;
|
|
@@ -583,6 +890,15 @@ export declare const executeInputSchema: z.ZodObject<{
|
|
|
583
890
|
generatedAt: string;
|
|
584
891
|
};
|
|
585
892
|
} | undefined;
|
|
893
|
+
consensus?: {
|
|
894
|
+
consensus: string;
|
|
895
|
+
perspectives: {
|
|
896
|
+
confidence: number;
|
|
897
|
+
agentName: string;
|
|
898
|
+
perspective: string;
|
|
899
|
+
}[];
|
|
900
|
+
conflictResolutions: string[];
|
|
901
|
+
} | undefined;
|
|
586
902
|
sessionId?: string | undefined;
|
|
587
903
|
stepResult?: {
|
|
588
904
|
principle: "closure" | "proximity" | "figure_ground" | "continuity";
|
|
@@ -605,8 +921,8 @@ export declare const executeInputSchema: z.ZodObject<{
|
|
|
605
921
|
taskGroups?: {
|
|
606
922
|
reasoning: string;
|
|
607
923
|
name: string;
|
|
608
|
-
groupId: string;
|
|
609
924
|
domain: string;
|
|
925
|
+
groupId: string;
|
|
610
926
|
taskIds: string[];
|
|
611
927
|
}[] | undefined;
|
|
612
928
|
dagValidation?: {
|
|
@@ -675,8 +991,70 @@ export declare const executeInputSchema: z.ZodObject<{
|
|
|
675
991
|
artifacts: string[];
|
|
676
992
|
} | undefined;
|
|
677
993
|
terminateReason?: "caller" | undefined;
|
|
994
|
+
matchResult?: {
|
|
995
|
+
reasoning: string;
|
|
996
|
+
domain: string[];
|
|
997
|
+
agentName: string;
|
|
998
|
+
relevanceScore: number;
|
|
999
|
+
}[] | undefined;
|
|
1000
|
+
perspectives?: {
|
|
1001
|
+
confidence: number;
|
|
1002
|
+
agentName: string;
|
|
1003
|
+
perspective: string;
|
|
1004
|
+
}[] | undefined;
|
|
1005
|
+
lateralResult?: {
|
|
1006
|
+
description: string;
|
|
1007
|
+
specPatch: {
|
|
1008
|
+
constraints?: string[] | undefined;
|
|
1009
|
+
acceptanceCriteria?: string[] | undefined;
|
|
1010
|
+
ontologySchema?: {
|
|
1011
|
+
entities?: {
|
|
1012
|
+
name: string;
|
|
1013
|
+
description: string;
|
|
1014
|
+
attributes: string[];
|
|
1015
|
+
}[] | undefined;
|
|
1016
|
+
relations?: {
|
|
1017
|
+
type: string;
|
|
1018
|
+
from: string;
|
|
1019
|
+
to: string;
|
|
1020
|
+
}[] | undefined;
|
|
1021
|
+
} | undefined;
|
|
1022
|
+
};
|
|
1023
|
+
persona: "multistability" | "simplicity" | "reification" | "invariance";
|
|
1024
|
+
} | undefined;
|
|
1025
|
+
reviewAgentName?: string | undefined;
|
|
1026
|
+
reviewResult?: {
|
|
1027
|
+
issues: {
|
|
1028
|
+
message: string;
|
|
1029
|
+
id: string;
|
|
1030
|
+
severity: "critical" | "high" | "warning";
|
|
1031
|
+
category: string;
|
|
1032
|
+
file: string;
|
|
1033
|
+
suggestion: string;
|
|
1034
|
+
line?: number | undefined;
|
|
1035
|
+
}[];
|
|
1036
|
+
approved: boolean;
|
|
1037
|
+
summary: string;
|
|
1038
|
+
} | undefined;
|
|
1039
|
+
reviewConsensus?: {
|
|
1040
|
+
summary: string;
|
|
1041
|
+
mergedIssues: {
|
|
1042
|
+
message: string;
|
|
1043
|
+
id: string;
|
|
1044
|
+
severity: "critical" | "high" | "warning";
|
|
1045
|
+
category: string;
|
|
1046
|
+
file: string;
|
|
1047
|
+
suggestion: string;
|
|
1048
|
+
reportedBy: string;
|
|
1049
|
+
line?: number | undefined;
|
|
1050
|
+
}[];
|
|
1051
|
+
approvedBy: string[];
|
|
1052
|
+
blockedBy: string[];
|
|
1053
|
+
overallApproved: boolean;
|
|
1054
|
+
} | undefined;
|
|
1055
|
+
reviewSessionId?: string | undefined;
|
|
678
1056
|
}, {
|
|
679
|
-
action: "plan_complete" | "evaluate" | "status" | "start" | "plan_step" | "execute_start" | "execute_task" | "evolve_fix" | "evolve" | "evolve_patch" | "evolve_re_execute";
|
|
1057
|
+
action: "plan_complete" | "evaluate" | "status" | "start" | "plan_step" | "execute_start" | "execute_task" | "evolve_fix" | "evolve" | "evolve_patch" | "evolve_re_execute" | "evolve_lateral" | "evolve_lateral_result" | "role_match" | "role_consensus" | "review_start" | "review_submit" | "review_consensus" | "review_fix";
|
|
680
1058
|
spec?: {
|
|
681
1059
|
goal: string;
|
|
682
1060
|
version: string;
|
|
@@ -694,6 +1072,15 @@ export declare const executeInputSchema: z.ZodObject<{
|
|
|
694
1072
|
generatedAt: string;
|
|
695
1073
|
};
|
|
696
1074
|
} | undefined;
|
|
1075
|
+
consensus?: {
|
|
1076
|
+
consensus: string;
|
|
1077
|
+
perspectives: {
|
|
1078
|
+
confidence: number;
|
|
1079
|
+
agentName: string;
|
|
1080
|
+
perspective: string;
|
|
1081
|
+
}[];
|
|
1082
|
+
conflictResolutions: string[];
|
|
1083
|
+
} | undefined;
|
|
697
1084
|
sessionId?: string | undefined;
|
|
698
1085
|
stepResult?: {
|
|
699
1086
|
principle: "closure" | "proximity" | "figure_ground" | "continuity";
|
|
@@ -716,8 +1103,8 @@ export declare const executeInputSchema: z.ZodObject<{
|
|
|
716
1103
|
taskGroups?: {
|
|
717
1104
|
reasoning: string;
|
|
718
1105
|
name: string;
|
|
719
|
-
groupId: string;
|
|
720
1106
|
domain: string;
|
|
1107
|
+
groupId: string;
|
|
721
1108
|
taskIds: string[];
|
|
722
1109
|
}[] | undefined;
|
|
723
1110
|
dagValidation?: {
|
|
@@ -786,14 +1173,131 @@ export declare const executeInputSchema: z.ZodObject<{
|
|
|
786
1173
|
artifacts: string[];
|
|
787
1174
|
} | undefined;
|
|
788
1175
|
terminateReason?: "caller" | undefined;
|
|
1176
|
+
matchResult?: {
|
|
1177
|
+
reasoning: string;
|
|
1178
|
+
domain: string[];
|
|
1179
|
+
agentName: string;
|
|
1180
|
+
relevanceScore: number;
|
|
1181
|
+
}[] | undefined;
|
|
1182
|
+
perspectives?: {
|
|
1183
|
+
confidence: number;
|
|
1184
|
+
agentName: string;
|
|
1185
|
+
perspective: string;
|
|
1186
|
+
}[] | undefined;
|
|
1187
|
+
lateralResult?: {
|
|
1188
|
+
description: string;
|
|
1189
|
+
specPatch: {
|
|
1190
|
+
constraints?: string[] | undefined;
|
|
1191
|
+
acceptanceCriteria?: string[] | undefined;
|
|
1192
|
+
ontologySchema?: {
|
|
1193
|
+
entities?: {
|
|
1194
|
+
name: string;
|
|
1195
|
+
description: string;
|
|
1196
|
+
attributes: string[];
|
|
1197
|
+
}[] | undefined;
|
|
1198
|
+
relations?: {
|
|
1199
|
+
type: string;
|
|
1200
|
+
from: string;
|
|
1201
|
+
to: string;
|
|
1202
|
+
}[] | undefined;
|
|
1203
|
+
} | undefined;
|
|
1204
|
+
};
|
|
1205
|
+
persona: "multistability" | "simplicity" | "reification" | "invariance";
|
|
1206
|
+
} | undefined;
|
|
1207
|
+
reviewAgentName?: string | undefined;
|
|
1208
|
+
reviewResult?: {
|
|
1209
|
+
issues: {
|
|
1210
|
+
message: string;
|
|
1211
|
+
id: string;
|
|
1212
|
+
severity: "critical" | "high" | "warning";
|
|
1213
|
+
category: string;
|
|
1214
|
+
file: string;
|
|
1215
|
+
suggestion: string;
|
|
1216
|
+
line?: number | undefined;
|
|
1217
|
+
}[];
|
|
1218
|
+
approved: boolean;
|
|
1219
|
+
summary: string;
|
|
1220
|
+
} | undefined;
|
|
1221
|
+
reviewConsensus?: {
|
|
1222
|
+
summary: string;
|
|
1223
|
+
mergedIssues: {
|
|
1224
|
+
message: string;
|
|
1225
|
+
id: string;
|
|
1226
|
+
severity: "critical" | "high" | "warning";
|
|
1227
|
+
category: string;
|
|
1228
|
+
file: string;
|
|
1229
|
+
suggestion: string;
|
|
1230
|
+
reportedBy: string;
|
|
1231
|
+
line?: number | undefined;
|
|
1232
|
+
}[];
|
|
1233
|
+
approvedBy: string[];
|
|
1234
|
+
blockedBy: string[];
|
|
1235
|
+
overallApproved: boolean;
|
|
1236
|
+
} | undefined;
|
|
1237
|
+
reviewSessionId?: string | undefined;
|
|
789
1238
|
}>;
|
|
790
1239
|
export type ExecuteInput = z.infer<typeof executeInputSchema>;
|
|
1240
|
+
export declare const agentCreateInputSchema: z.ZodObject<{
|
|
1241
|
+
action: z.ZodEnum<["start", "submit"]>;
|
|
1242
|
+
sessionId: z.ZodString;
|
|
1243
|
+
agentContent: z.ZodOptional<z.ZodString>;
|
|
1244
|
+
cwd: z.ZodOptional<z.ZodString>;
|
|
1245
|
+
}, "strip", z.ZodTypeAny, {
|
|
1246
|
+
action: "start" | "submit";
|
|
1247
|
+
sessionId: string;
|
|
1248
|
+
cwd?: string | undefined;
|
|
1249
|
+
agentContent?: string | undefined;
|
|
1250
|
+
}, {
|
|
1251
|
+
action: "start" | "submit";
|
|
1252
|
+
sessionId: string;
|
|
1253
|
+
cwd?: string | undefined;
|
|
1254
|
+
agentContent?: string | undefined;
|
|
1255
|
+
}>;
|
|
1256
|
+
export type AgentCreateInput = z.infer<typeof agentCreateInputSchema>;
|
|
1257
|
+
export declare const benchmarkInputSchema: z.ZodObject<{
|
|
1258
|
+
action: z.ZodEnum<["start", "respond", "status"]>;
|
|
1259
|
+
scenario: z.ZodOptional<z.ZodString>;
|
|
1260
|
+
benchmarkSessionId: z.ZodOptional<z.ZodString>;
|
|
1261
|
+
response: z.ZodOptional<z.ZodString>;
|
|
1262
|
+
usage: z.ZodOptional<z.ZodObject<{
|
|
1263
|
+
inputTokens: z.ZodNumber;
|
|
1264
|
+
outputTokens: z.ZodNumber;
|
|
1265
|
+
}, "strip", z.ZodTypeAny, {
|
|
1266
|
+
inputTokens: number;
|
|
1267
|
+
outputTokens: number;
|
|
1268
|
+
}, {
|
|
1269
|
+
inputTokens: number;
|
|
1270
|
+
outputTokens: number;
|
|
1271
|
+
}>>;
|
|
1272
|
+
}, "strip", z.ZodTypeAny, {
|
|
1273
|
+
action: "status" | "start" | "respond";
|
|
1274
|
+
response?: string | undefined;
|
|
1275
|
+
usage?: {
|
|
1276
|
+
inputTokens: number;
|
|
1277
|
+
outputTokens: number;
|
|
1278
|
+
} | undefined;
|
|
1279
|
+
scenario?: string | undefined;
|
|
1280
|
+
benchmarkSessionId?: string | undefined;
|
|
1281
|
+
}, {
|
|
1282
|
+
action: "status" | "start" | "respond";
|
|
1283
|
+
response?: string | undefined;
|
|
1284
|
+
usage?: {
|
|
1285
|
+
inputTokens: number;
|
|
1286
|
+
outputTokens: number;
|
|
1287
|
+
} | undefined;
|
|
1288
|
+
scenario?: string | undefined;
|
|
1289
|
+
benchmarkSessionId?: string | undefined;
|
|
1290
|
+
}>;
|
|
1291
|
+
export type BenchmarkInput = z.infer<typeof benchmarkInputSchema>;
|
|
791
1292
|
export declare const statusInputSchema: z.ZodObject<{
|
|
792
1293
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
1294
|
+
sessionType: z.ZodDefault<z.ZodOptional<z.ZodEnum<["interview", "execute", "all"]>>>;
|
|
793
1295
|
}, "strip", z.ZodTypeAny, {
|
|
1296
|
+
sessionType: "interview" | "execute" | "all";
|
|
794
1297
|
sessionId?: string | undefined;
|
|
795
1298
|
}, {
|
|
796
1299
|
sessionId?: string | undefined;
|
|
1300
|
+
sessionType?: "interview" | "execute" | "all" | undefined;
|
|
797
1301
|
}>;
|
|
798
1302
|
export type StatusInput = z.infer<typeof statusInputSchema>;
|
|
799
1303
|
//# sourceMappingURL=schemas.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../../src/mcp/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgB/B,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAGlE,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU1B,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAGxD,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../../src/mcp/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgB/B,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAGlE,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU1B,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAGxD,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwM7B,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAG9D,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;EAOjC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAGtE,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAY/B,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAGlE,eAAO,MAAM,iBAAiB;;;;;;;;;EAG5B,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC"}
|