@riddledc/riddle-proof 0.5.0 → 0.5.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.
Files changed (35) hide show
  1. package/README.md +6 -6
  2. package/dist/chunk-3MHFLQKG.js +853 -0
  3. package/dist/{chunk-LVP22WE4.js → chunk-5GZZZ6JA.js} +5 -1
  4. package/dist/engine-harness.cjs +2505 -22
  5. package/dist/engine-harness.js +1 -1
  6. package/dist/index.cjs +2512 -29
  7. package/dist/index.js +2 -2
  8. package/dist/openclaw.cjs +1 -1
  9. package/dist/openclaw.js +1 -1
  10. package/dist/proof-run-core.cjs +909 -0
  11. package/dist/proof-run-core.d.cts +280 -0
  12. package/dist/proof-run-core.d.ts +280 -0
  13. package/dist/proof-run-core.js +48 -0
  14. package/dist/proof-run-engine.cjs +2499 -0
  15. package/dist/proof-run-engine.d.cts +677 -0
  16. package/dist/proof-run-engine.d.ts +677 -0
  17. package/dist/proof-run-engine.js +1649 -0
  18. package/lib/workspace-core.mjs +391 -0
  19. package/package.json +15 -3
  20. package/runtime/lib/author.py +343 -0
  21. package/runtime/lib/implement.py +63 -0
  22. package/runtime/lib/preflight.py +246 -0
  23. package/runtime/lib/recon.py +1048 -0
  24. package/runtime/lib/riddle_core_call.mjs +151 -0
  25. package/runtime/lib/setup.py +387 -0
  26. package/runtime/lib/ship.py +834 -0
  27. package/runtime/lib/util.py +673 -0
  28. package/runtime/lib/verify.py +1223 -0
  29. package/runtime/pipelines/riddle-proof-author.lobster +28 -0
  30. package/runtime/pipelines/riddle-proof-implement.lobster +26 -0
  31. package/runtime/pipelines/riddle-proof-recon.lobster +79 -0
  32. package/runtime/pipelines/riddle-proof-setup.lobster +141 -0
  33. package/runtime/pipelines/riddle-proof-ship.lobster +36 -0
  34. package/runtime/pipelines/riddle-proof-verify.lobster +74 -0
  35. package/runtime/tests/recon_verify_smoke.py +1198 -0
@@ -0,0 +1,677 @@
1
+ import { WorkflowParams, resolveConfig, PluginConfig, WorkflowStage } from './proof-run-core.js';
2
+
3
+ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, resolvedConfig?: ReturnType<typeof resolveConfig>): Promise<{
4
+ ok: boolean;
5
+ action: string;
6
+ state_path: string;
7
+ checkpoint: string;
8
+ summary: string;
9
+ state: null;
10
+ nextAction: string;
11
+ pr_state?: undefined;
12
+ cleanup?: undefined;
13
+ } | {
14
+ ok: boolean;
15
+ action: string;
16
+ state_path: string;
17
+ checkpoint: string;
18
+ summary: string;
19
+ state: {
20
+ workspace_ready: boolean;
21
+ repo: any;
22
+ branch: any;
23
+ mode: any;
24
+ reference: any;
25
+ before_ref: any;
26
+ allow_static_preview_fallback: boolean;
27
+ commit_message: any;
28
+ author_status: any;
29
+ author_summary: any;
30
+ author_request: any;
31
+ proof_plan_status: any;
32
+ proof_plan: any;
33
+ proof_plan_request: any;
34
+ proof_profile_applied: boolean;
35
+ proof_profile: any;
36
+ recon_status: any;
37
+ recon_assessment: any;
38
+ recon_assessment_request: any;
39
+ recon_assessment_source: any;
40
+ recon_decision_request: any;
41
+ recon_attempts_used: any;
42
+ recon_attempts_max: any;
43
+ recon_hypothesis: any;
44
+ implementation_status: any;
45
+ implementation_summary: any;
46
+ implementation_environment_issues: any;
47
+ verify_status: any;
48
+ verify_summary: any;
49
+ verify_decision_request: any;
50
+ proof_assessment: any;
51
+ proof_assessment_request: any;
52
+ proof_assessment_source: any;
53
+ merge_recommendation: any;
54
+ before_cdn: any;
55
+ after_cdn: any;
56
+ prod_cdn: any;
57
+ pr_url: any;
58
+ pr_branch: any;
59
+ pr_state: any;
60
+ ship_commit: any;
61
+ ship_remote_head: any;
62
+ merge_commit: any;
63
+ merged_at: any;
64
+ ship_push: any;
65
+ ship_report: any;
66
+ cleanup_report: any;
67
+ proof_comment_url: any;
68
+ proof_assessment_comment_url: any;
69
+ marked_ready: any;
70
+ left_draft: any;
71
+ ci_status: any;
72
+ reviewer: any;
73
+ active_checkpoint: any;
74
+ active_checkpoint_stage: any;
75
+ continue_with_stage: WorkflowStage | null;
76
+ stage_decision_request: any;
77
+ stage_attempt_counts: {
78
+ [k: string]: number;
79
+ };
80
+ explicit_stage_gate: boolean;
81
+ last_requested_advance_stage: any;
82
+ recon_results: any;
83
+ verify_results: any;
84
+ } | null;
85
+ pr_state: {
86
+ status: string;
87
+ pr_url: any;
88
+ pr_number: string;
89
+ repo: any;
90
+ head_branch: any;
91
+ base_branch: any;
92
+ checked_at: string;
93
+ source: string;
94
+ sync_recoverable: boolean;
95
+ sync_blocker: string;
96
+ next_action: string;
97
+ };
98
+ nextAction: string;
99
+ cleanup?: undefined;
100
+ } | {
101
+ ok: boolean;
102
+ action: string;
103
+ state_path: string;
104
+ checkpoint: string;
105
+ summary: string;
106
+ state: {
107
+ workspace_ready: boolean;
108
+ repo: any;
109
+ branch: any;
110
+ mode: any;
111
+ reference: any;
112
+ before_ref: any;
113
+ allow_static_preview_fallback: boolean;
114
+ commit_message: any;
115
+ author_status: any;
116
+ author_summary: any;
117
+ author_request: any;
118
+ proof_plan_status: any;
119
+ proof_plan: any;
120
+ proof_plan_request: any;
121
+ proof_profile_applied: boolean;
122
+ proof_profile: any;
123
+ recon_status: any;
124
+ recon_assessment: any;
125
+ recon_assessment_request: any;
126
+ recon_assessment_source: any;
127
+ recon_decision_request: any;
128
+ recon_attempts_used: any;
129
+ recon_attempts_max: any;
130
+ recon_hypothesis: any;
131
+ implementation_status: any;
132
+ implementation_summary: any;
133
+ implementation_environment_issues: any;
134
+ verify_status: any;
135
+ verify_summary: any;
136
+ verify_decision_request: any;
137
+ proof_assessment: any;
138
+ proof_assessment_request: any;
139
+ proof_assessment_source: any;
140
+ merge_recommendation: any;
141
+ before_cdn: any;
142
+ after_cdn: any;
143
+ prod_cdn: any;
144
+ pr_url: any;
145
+ pr_branch: any;
146
+ pr_state: any;
147
+ ship_commit: any;
148
+ ship_remote_head: any;
149
+ merge_commit: any;
150
+ merged_at: any;
151
+ ship_push: any;
152
+ ship_report: any;
153
+ cleanup_report: any;
154
+ proof_comment_url: any;
155
+ proof_assessment_comment_url: any;
156
+ marked_ready: any;
157
+ left_draft: any;
158
+ ci_status: any;
159
+ reviewer: any;
160
+ active_checkpoint: any;
161
+ active_checkpoint_stage: any;
162
+ continue_with_stage: WorkflowStage | null;
163
+ stage_decision_request: any;
164
+ stage_attempt_counts: {
165
+ [k: string]: number;
166
+ };
167
+ explicit_stage_gate: boolean;
168
+ last_requested_advance_stage: any;
169
+ recon_results: any;
170
+ verify_results: any;
171
+ } | null;
172
+ pr_state: {
173
+ status: string;
174
+ pr_url: any;
175
+ pr_number: string;
176
+ repo: any;
177
+ head_branch: any;
178
+ base_branch: any;
179
+ checked_at: string;
180
+ source: string;
181
+ next_action: string;
182
+ };
183
+ cleanup: any;
184
+ nextAction: string;
185
+ } | {
186
+ ok: boolean;
187
+ action: string;
188
+ state_path: string;
189
+ checkpoint: string;
190
+ summary: string;
191
+ state: {
192
+ workspace_ready: boolean;
193
+ repo: any;
194
+ branch: any;
195
+ mode: any;
196
+ reference: any;
197
+ before_ref: any;
198
+ allow_static_preview_fallback: boolean;
199
+ commit_message: any;
200
+ author_status: any;
201
+ author_summary: any;
202
+ author_request: any;
203
+ proof_plan_status: any;
204
+ proof_plan: any;
205
+ proof_plan_request: any;
206
+ proof_profile_applied: boolean;
207
+ proof_profile: any;
208
+ recon_status: any;
209
+ recon_assessment: any;
210
+ recon_assessment_request: any;
211
+ recon_assessment_source: any;
212
+ recon_decision_request: any;
213
+ recon_attempts_used: any;
214
+ recon_attempts_max: any;
215
+ recon_hypothesis: any;
216
+ implementation_status: any;
217
+ implementation_summary: any;
218
+ implementation_environment_issues: any;
219
+ verify_status: any;
220
+ verify_summary: any;
221
+ verify_decision_request: any;
222
+ proof_assessment: any;
223
+ proof_assessment_request: any;
224
+ proof_assessment_source: any;
225
+ merge_recommendation: any;
226
+ before_cdn: any;
227
+ after_cdn: any;
228
+ prod_cdn: any;
229
+ pr_url: any;
230
+ pr_branch: any;
231
+ pr_state: any;
232
+ ship_commit: any;
233
+ ship_remote_head: any;
234
+ merge_commit: any;
235
+ merged_at: any;
236
+ ship_push: any;
237
+ ship_report: any;
238
+ cleanup_report: any;
239
+ proof_comment_url: any;
240
+ proof_assessment_comment_url: any;
241
+ marked_ready: any;
242
+ left_draft: any;
243
+ ci_status: any;
244
+ reviewer: any;
245
+ active_checkpoint: any;
246
+ active_checkpoint_stage: any;
247
+ continue_with_stage: WorkflowStage | null;
248
+ stage_decision_request: any;
249
+ stage_attempt_counts: {
250
+ [k: string]: number;
251
+ };
252
+ explicit_stage_gate: boolean;
253
+ last_requested_advance_stage: any;
254
+ recon_results: any;
255
+ verify_results: any;
256
+ } | null;
257
+ pr_state: any;
258
+ cleanup: Record<string, unknown> | null;
259
+ nextAction: string;
260
+ } | {
261
+ checkpoint: string | null;
262
+ blocking?: boolean;
263
+ details?: Record<string, unknown>;
264
+ ok: boolean;
265
+ action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
266
+ state_path: string;
267
+ stage: any;
268
+ summary: string;
269
+ state: {
270
+ workspace_ready: boolean;
271
+ repo: any;
272
+ branch: any;
273
+ mode: any;
274
+ reference: any;
275
+ before_ref: any;
276
+ allow_static_preview_fallback: boolean;
277
+ commit_message: any;
278
+ author_status: any;
279
+ author_summary: any;
280
+ author_request: any;
281
+ proof_plan_status: any;
282
+ proof_plan: any;
283
+ proof_plan_request: any;
284
+ proof_profile_applied: boolean;
285
+ proof_profile: any;
286
+ recon_status: any;
287
+ recon_assessment: any;
288
+ recon_assessment_request: any;
289
+ recon_assessment_source: any;
290
+ recon_decision_request: any;
291
+ recon_attempts_used: any;
292
+ recon_attempts_max: any;
293
+ recon_hypothesis: any;
294
+ implementation_status: any;
295
+ implementation_summary: any;
296
+ implementation_environment_issues: any;
297
+ verify_status: any;
298
+ verify_summary: any;
299
+ verify_decision_request: any;
300
+ proof_assessment: any;
301
+ proof_assessment_request: any;
302
+ proof_assessment_source: any;
303
+ merge_recommendation: any;
304
+ before_cdn: any;
305
+ after_cdn: any;
306
+ prod_cdn: any;
307
+ pr_url: any;
308
+ pr_branch: any;
309
+ pr_state: any;
310
+ ship_commit: any;
311
+ ship_remote_head: any;
312
+ merge_commit: any;
313
+ merged_at: any;
314
+ ship_push: any;
315
+ ship_report: any;
316
+ cleanup_report: any;
317
+ proof_comment_url: any;
318
+ proof_assessment_comment_url: any;
319
+ marked_ready: any;
320
+ left_draft: any;
321
+ ci_status: any;
322
+ reviewer: any;
323
+ active_checkpoint: any;
324
+ active_checkpoint_stage: any;
325
+ continue_with_stage: WorkflowStage | null;
326
+ stage_decision_request: any;
327
+ stage_attempt_counts: {
328
+ [k: string]: number;
329
+ };
330
+ explicit_stage_gate: boolean;
331
+ last_requested_advance_stage: any;
332
+ recon_results: any;
333
+ verify_results: any;
334
+ } | null;
335
+ approval: any;
336
+ error: any;
337
+ } | {
338
+ ok: boolean;
339
+ nextActions?: string[];
340
+ advanceOptions?: WorkflowStage[];
341
+ recommendedAdvanceStage?: WorkflowStage | null;
342
+ continueWithStage?: WorkflowStage | null;
343
+ blocking?: boolean;
344
+ details?: Record<string, unknown>;
345
+ action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
346
+ state_path: string;
347
+ stage: any;
348
+ checkpoint: string;
349
+ summary: string;
350
+ state: {
351
+ workspace_ready: boolean;
352
+ repo: any;
353
+ branch: any;
354
+ mode: any;
355
+ reference: any;
356
+ before_ref: any;
357
+ allow_static_preview_fallback: boolean;
358
+ commit_message: any;
359
+ author_status: any;
360
+ author_summary: any;
361
+ author_request: any;
362
+ proof_plan_status: any;
363
+ proof_plan: any;
364
+ proof_plan_request: any;
365
+ proof_profile_applied: boolean;
366
+ proof_profile: any;
367
+ recon_status: any;
368
+ recon_assessment: any;
369
+ recon_assessment_request: any;
370
+ recon_assessment_source: any;
371
+ recon_decision_request: any;
372
+ recon_attempts_used: any;
373
+ recon_attempts_max: any;
374
+ recon_hypothesis: any;
375
+ implementation_status: any;
376
+ implementation_summary: any;
377
+ implementation_environment_issues: any;
378
+ verify_status: any;
379
+ verify_summary: any;
380
+ verify_decision_request: any;
381
+ proof_assessment: any;
382
+ proof_assessment_request: any;
383
+ proof_assessment_source: any;
384
+ merge_recommendation: any;
385
+ before_cdn: any;
386
+ after_cdn: any;
387
+ prod_cdn: any;
388
+ pr_url: any;
389
+ pr_branch: any;
390
+ pr_state: any;
391
+ ship_commit: any;
392
+ ship_remote_head: any;
393
+ merge_commit: any;
394
+ merged_at: any;
395
+ ship_push: any;
396
+ ship_report: any;
397
+ cleanup_report: any;
398
+ proof_comment_url: any;
399
+ proof_assessment_comment_url: any;
400
+ marked_ready: any;
401
+ left_draft: any;
402
+ ci_status: any;
403
+ reviewer: any;
404
+ active_checkpoint: any;
405
+ active_checkpoint_stage: any;
406
+ continue_with_stage: WorkflowStage | null;
407
+ stage_decision_request: any;
408
+ stage_attempt_counts: {
409
+ [k: string]: number;
410
+ };
411
+ explicit_stage_gate: boolean;
412
+ last_requested_advance_stage: any;
413
+ recon_results: any;
414
+ verify_results: any;
415
+ } | null;
416
+ decisionRequest: any;
417
+ checkpointContract: any;
418
+ } | {
419
+ stage: string;
420
+ summary: string;
421
+ state: null;
422
+ state_path: string;
423
+ ok?: undefined;
424
+ action?: undefined;
425
+ checkpoint?: undefined;
426
+ shipReport?: undefined;
427
+ checkpointContract?: undefined;
428
+ executed?: undefined;
429
+ approval?: undefined;
430
+ autoApproved?: undefined;
431
+ error?: undefined;
432
+ } | {
433
+ stage: any;
434
+ summary: string;
435
+ state: {
436
+ workspace_ready: boolean;
437
+ repo: any;
438
+ branch: any;
439
+ mode: any;
440
+ reference: any;
441
+ before_ref: any;
442
+ allow_static_preview_fallback: boolean;
443
+ commit_message: any;
444
+ author_status: any;
445
+ author_summary: any;
446
+ author_request: any;
447
+ proof_plan_status: any;
448
+ proof_plan: any;
449
+ proof_plan_request: any;
450
+ proof_profile_applied: boolean;
451
+ proof_profile: any;
452
+ recon_status: any;
453
+ recon_assessment: any;
454
+ recon_assessment_request: any;
455
+ recon_assessment_source: any;
456
+ recon_decision_request: any;
457
+ recon_attempts_used: any;
458
+ recon_attempts_max: any;
459
+ recon_hypothesis: any;
460
+ implementation_status: any;
461
+ implementation_summary: any;
462
+ implementation_environment_issues: any;
463
+ verify_status: any;
464
+ verify_summary: any;
465
+ verify_decision_request: any;
466
+ proof_assessment: any;
467
+ proof_assessment_request: any;
468
+ proof_assessment_source: any;
469
+ merge_recommendation: any;
470
+ before_cdn: any;
471
+ after_cdn: any;
472
+ prod_cdn: any;
473
+ pr_url: any;
474
+ pr_branch: any;
475
+ pr_state: any;
476
+ ship_commit: any;
477
+ ship_remote_head: any;
478
+ merge_commit: any;
479
+ merged_at: any;
480
+ ship_push: any;
481
+ ship_report: any;
482
+ cleanup_report: any;
483
+ proof_comment_url: any;
484
+ proof_assessment_comment_url: any;
485
+ marked_ready: any;
486
+ left_draft: any;
487
+ ci_status: any;
488
+ reviewer: any;
489
+ active_checkpoint: any;
490
+ active_checkpoint_stage: any;
491
+ continue_with_stage: WorkflowStage | null;
492
+ stage_decision_request: any;
493
+ stage_attempt_counts: {
494
+ [k: string]: number;
495
+ };
496
+ explicit_stage_gate: boolean;
497
+ last_requested_advance_stage: any;
498
+ recon_results: any;
499
+ verify_results: any;
500
+ };
501
+ state_path: string;
502
+ ok?: undefined;
503
+ action?: undefined;
504
+ checkpoint?: undefined;
505
+ shipReport?: undefined;
506
+ checkpointContract?: undefined;
507
+ executed?: undefined;
508
+ approval?: undefined;
509
+ autoApproved?: undefined;
510
+ error?: undefined;
511
+ } | {
512
+ ok: boolean;
513
+ action: "run";
514
+ state_path: string;
515
+ stage: any;
516
+ checkpoint: string;
517
+ summary: string;
518
+ state: {
519
+ workspace_ready: boolean;
520
+ repo: any;
521
+ branch: any;
522
+ mode: any;
523
+ reference: any;
524
+ before_ref: any;
525
+ allow_static_preview_fallback: boolean;
526
+ commit_message: any;
527
+ author_status: any;
528
+ author_summary: any;
529
+ author_request: any;
530
+ proof_plan_status: any;
531
+ proof_plan: any;
532
+ proof_plan_request: any;
533
+ proof_profile_applied: boolean;
534
+ proof_profile: any;
535
+ recon_status: any;
536
+ recon_assessment: any;
537
+ recon_assessment_request: any;
538
+ recon_assessment_source: any;
539
+ recon_decision_request: any;
540
+ recon_attempts_used: any;
541
+ recon_attempts_max: any;
542
+ recon_hypothesis: any;
543
+ implementation_status: any;
544
+ implementation_summary: any;
545
+ implementation_environment_issues: any;
546
+ verify_status: any;
547
+ verify_summary: any;
548
+ verify_decision_request: any;
549
+ proof_assessment: any;
550
+ proof_assessment_request: any;
551
+ proof_assessment_source: any;
552
+ merge_recommendation: any;
553
+ before_cdn: any;
554
+ after_cdn: any;
555
+ prod_cdn: any;
556
+ pr_url: any;
557
+ pr_branch: any;
558
+ pr_state: any;
559
+ ship_commit: any;
560
+ ship_remote_head: any;
561
+ merge_commit: any;
562
+ merged_at: any;
563
+ ship_push: any;
564
+ ship_report: any;
565
+ cleanup_report: any;
566
+ proof_comment_url: any;
567
+ proof_assessment_comment_url: any;
568
+ marked_ready: any;
569
+ left_draft: any;
570
+ ci_status: any;
571
+ reviewer: any;
572
+ active_checkpoint: any;
573
+ active_checkpoint_stage: any;
574
+ continue_with_stage: WorkflowStage | null;
575
+ stage_decision_request: any;
576
+ stage_attempt_counts: {
577
+ [k: string]: number;
578
+ };
579
+ explicit_stage_gate: boolean;
580
+ last_requested_advance_stage: any;
581
+ recon_results: any;
582
+ verify_results: any;
583
+ } | null;
584
+ shipReport: any;
585
+ checkpointContract: Record<string, unknown>;
586
+ executed: any[];
587
+ approval?: undefined;
588
+ autoApproved?: undefined;
589
+ error?: undefined;
590
+ } | {
591
+ ok: boolean;
592
+ action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
593
+ state_path: string;
594
+ stage: any;
595
+ summary: string;
596
+ state: {
597
+ workspace_ready: boolean;
598
+ repo: any;
599
+ branch: any;
600
+ mode: any;
601
+ reference: any;
602
+ before_ref: any;
603
+ allow_static_preview_fallback: boolean;
604
+ commit_message: any;
605
+ author_status: any;
606
+ author_summary: any;
607
+ author_request: any;
608
+ proof_plan_status: any;
609
+ proof_plan: any;
610
+ proof_plan_request: any;
611
+ proof_profile_applied: boolean;
612
+ proof_profile: any;
613
+ recon_status: any;
614
+ recon_assessment: any;
615
+ recon_assessment_request: any;
616
+ recon_assessment_source: any;
617
+ recon_decision_request: any;
618
+ recon_attempts_used: any;
619
+ recon_attempts_max: any;
620
+ recon_hypothesis: any;
621
+ implementation_status: any;
622
+ implementation_summary: any;
623
+ implementation_environment_issues: any;
624
+ verify_status: any;
625
+ verify_summary: any;
626
+ verify_decision_request: any;
627
+ proof_assessment: any;
628
+ proof_assessment_request: any;
629
+ proof_assessment_source: any;
630
+ merge_recommendation: any;
631
+ before_cdn: any;
632
+ after_cdn: any;
633
+ prod_cdn: any;
634
+ pr_url: any;
635
+ pr_branch: any;
636
+ pr_state: any;
637
+ ship_commit: any;
638
+ ship_remote_head: any;
639
+ merge_commit: any;
640
+ merged_at: any;
641
+ ship_push: any;
642
+ ship_report: any;
643
+ cleanup_report: any;
644
+ proof_comment_url: any;
645
+ proof_assessment_comment_url: any;
646
+ marked_ready: any;
647
+ left_draft: any;
648
+ ci_status: any;
649
+ reviewer: any;
650
+ active_checkpoint: any;
651
+ active_checkpoint_stage: any;
652
+ continue_with_stage: WorkflowStage | null;
653
+ stage_decision_request: any;
654
+ stage_attempt_counts: {
655
+ [k: string]: number;
656
+ };
657
+ explicit_stage_gate: boolean;
658
+ last_requested_advance_stage: any;
659
+ recon_results: any;
660
+ verify_results: any;
661
+ } | null;
662
+ approval: null;
663
+ autoApproved: any;
664
+ error: null;
665
+ checkpoint?: undefined;
666
+ shipReport?: undefined;
667
+ checkpointContract?: undefined;
668
+ executed?: undefined;
669
+ }>;
670
+ interface RiddleProofEngine {
671
+ execute(params: WorkflowParams): Promise<Record<string, unknown>>;
672
+ status(statePath?: string): Promise<Record<string, unknown>>;
673
+ resolveConfig(params?: Partial<Pick<WorkflowParams, "action" | "state_path">>): ReturnType<typeof resolveConfig>;
674
+ }
675
+ declare function createRiddleProofEngine(pluginConfig?: PluginConfig): RiddleProofEngine;
676
+
677
+ export { type RiddleProofEngine, createRiddleProofEngine, executeWorkflow };