@riddledc/riddle-proof 0.7.168 → 0.7.169

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/README.md CHANGED
@@ -497,9 +497,12 @@ sequences include `clicked_total` and `clicked_truncated`; the compact `clicked`
497
497
  list keeps the first and last clicked targets so later route switches and reset
498
498
  actions stay visible. Click actions with `click_count` greater than `1` are
499
499
  included in clicked-target evidence and rolled up as `click_count_action_total`
500
- and `click_count_value_total`. Setup receipt sampling favors both first and last
501
- per-viewport receipts before filling remaining space, so late lifecycle phases
502
- such as terminal or restart remain visible in compact summaries.
500
+ and `click_count_value_total`. Repeated selector runs such as long gameplay
501
+ button loops are also grouped as compact `same-selector` click-sequence
502
+ receipts with click totals and ordinals. Setup receipt sampling favors both
503
+ first and last per-viewport receipts before filling remaining space, so late
504
+ lifecycle phases such as terminal or restart remain visible in compact
505
+ summaries.
503
506
 
504
507
  `target.timeout_sec` is optional. Use it for known-heavy profile targets so the
505
508
  profile carries its own hosted Riddle worker budget; an explicit CLI `--timeout`
@@ -631,26 +631,29 @@ function profileSetupClickSequenceReceipts(clickedItems) {
631
631
  for (const item of clickedItems) {
632
632
  const selector = stringValue(item.selector);
633
633
  if (!selector) continue;
634
- const match = nthChildPattern.exec(selector);
635
- if (!match) continue;
636
634
  const frameSelector = stringValue(item.frame_selector);
637
- const selectorTemplate = selector.replace(nthChildTemplatePattern, ":nth-child(*)");
638
- const key = `${frameSelector || ""}
635
+ const clickCountValue = numberValue(item.click_count);
636
+ const clickCount = clickCountValue === void 0 ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
637
+ const ordinal = numberValue(item.ordinal);
638
+ const match = nthChildPattern.exec(selector);
639
+ const selectorTemplate = match ? selector.replace(nthChildTemplatePattern, ":nth-child(*)") : selector;
640
+ const valueSource = match ? "nth-child" : "same-selector";
641
+ const key = `${valueSource}
642
+ ${frameSelector || ""}
639
643
  ${selectorTemplate}`;
640
644
  const group = groups.get(key) || {
641
645
  selector_template: selectorTemplate,
642
646
  frame_selector: frameSelector,
643
- value_source: "nth-child",
647
+ value_source: valueSource,
644
648
  sequence: [],
645
649
  ordinals: [],
646
650
  result_count: 0,
647
651
  click_total: 0
648
652
  };
649
- const value = Number(match[1]);
650
- const clickCountValue = numberValue(item.click_count);
651
- const clickCount = clickCountValue === void 0 ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
652
- for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
653
- const ordinal = numberValue(item.ordinal);
653
+ if (match) {
654
+ const value = Number(match[1]);
655
+ for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
656
+ }
654
657
  if (ordinal !== void 0) group.ordinals.push(ordinal);
655
658
  group.result_count += 1;
656
659
  group.click_total += clickCount;
@@ -4337,25 +4340,29 @@ function profileSetupClickSequenceReceipts(clickedItems) {
4337
4340
  for (const item of clickedItems || []) {
4338
4341
  const selector = typeof item.selector === "string" && item.selector.trim() ? item.selector.trim() : undefined;
4339
4342
  if (!selector) continue;
4340
- const match = nthChildPattern.exec(selector);
4341
- if (!match) continue;
4342
4343
  const frameSelector = typeof item.frame_selector === "string" && item.frame_selector.trim() ? item.frame_selector.trim() : undefined;
4343
- const selectorTemplate = selector.replace(nthChildTemplatePattern, ":nth-child(*)");
4344
- const key = String(frameSelector || "") + "\\n" + selectorTemplate;
4344
+ const clickCountValue = typeof item.click_count === "number" && Number.isFinite(item.click_count) ? item.click_count : undefined;
4345
+ const clickCount = clickCountValue === undefined ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
4346
+ const ordinal = typeof item.ordinal === "number" && Number.isFinite(item.ordinal) ? item.ordinal : undefined;
4347
+ const match = nthChildPattern.exec(selector);
4348
+ const selectorTemplate = match
4349
+ ? selector.replace(nthChildTemplatePattern, ":nth-child(*)")
4350
+ : selector;
4351
+ const valueSource = match ? "nth-child" : "same-selector";
4352
+ const key = valueSource + "\\n" + String(frameSelector || "") + "\\n" + selectorTemplate;
4345
4353
  const group = groups.get(key) || {
4346
4354
  selector_template: selectorTemplate,
4347
4355
  frame_selector: frameSelector,
4348
- value_source: "nth-child",
4356
+ value_source: valueSource,
4349
4357
  sequence: [],
4350
4358
  ordinals: [],
4351
4359
  result_count: 0,
4352
4360
  click_total: 0,
4353
4361
  };
4354
- const value = Number(match[1]);
4355
- const clickCountValue = typeof item.click_count === "number" && Number.isFinite(item.click_count) ? item.click_count : undefined;
4356
- const clickCount = clickCountValue === undefined ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
4357
- for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
4358
- const ordinal = typeof item.ordinal === "number" && Number.isFinite(item.ordinal) ? item.ordinal : undefined;
4362
+ if (match) {
4363
+ const value = Number(match[1]);
4364
+ for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
4365
+ }
4359
4366
  if (ordinal !== undefined) group.ordinals.push(ordinal);
4360
4367
  group.result_count += 1;
4361
4368
  group.click_total += clickCount;
package/dist/cli.cjs CHANGED
@@ -7588,26 +7588,29 @@ function profileSetupClickSequenceReceipts(clickedItems) {
7588
7588
  for (const item of clickedItems) {
7589
7589
  const selector = stringValue2(item.selector);
7590
7590
  if (!selector) continue;
7591
- const match = nthChildPattern.exec(selector);
7592
- if (!match) continue;
7593
7591
  const frameSelector = stringValue2(item.frame_selector);
7594
- const selectorTemplate = selector.replace(nthChildTemplatePattern, ":nth-child(*)");
7595
- const key = `${frameSelector || ""}
7592
+ const clickCountValue = numberValue(item.click_count);
7593
+ const clickCount = clickCountValue === void 0 ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
7594
+ const ordinal = numberValue(item.ordinal);
7595
+ const match = nthChildPattern.exec(selector);
7596
+ const selectorTemplate = match ? selector.replace(nthChildTemplatePattern, ":nth-child(*)") : selector;
7597
+ const valueSource = match ? "nth-child" : "same-selector";
7598
+ const key = `${valueSource}
7599
+ ${frameSelector || ""}
7596
7600
  ${selectorTemplate}`;
7597
7601
  const group = groups.get(key) || {
7598
7602
  selector_template: selectorTemplate,
7599
7603
  frame_selector: frameSelector,
7600
- value_source: "nth-child",
7604
+ value_source: valueSource,
7601
7605
  sequence: [],
7602
7606
  ordinals: [],
7603
7607
  result_count: 0,
7604
7608
  click_total: 0
7605
7609
  };
7606
- const value = Number(match[1]);
7607
- const clickCountValue = numberValue(item.click_count);
7608
- const clickCount = clickCountValue === void 0 ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
7609
- for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
7610
- const ordinal = numberValue(item.ordinal);
7610
+ if (match) {
7611
+ const value = Number(match[1]);
7612
+ for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
7613
+ }
7611
7614
  if (ordinal !== void 0) group.ordinals.push(ordinal);
7612
7615
  group.result_count += 1;
7613
7616
  group.click_total += clickCount;
@@ -11278,25 +11281,29 @@ function profileSetupClickSequenceReceipts(clickedItems) {
11278
11281
  for (const item of clickedItems || []) {
11279
11282
  const selector = typeof item.selector === "string" && item.selector.trim() ? item.selector.trim() : undefined;
11280
11283
  if (!selector) continue;
11281
- const match = nthChildPattern.exec(selector);
11282
- if (!match) continue;
11283
11284
  const frameSelector = typeof item.frame_selector === "string" && item.frame_selector.trim() ? item.frame_selector.trim() : undefined;
11284
- const selectorTemplate = selector.replace(nthChildTemplatePattern, ":nth-child(*)");
11285
- const key = String(frameSelector || "") + "\\n" + selectorTemplate;
11285
+ const clickCountValue = typeof item.click_count === "number" && Number.isFinite(item.click_count) ? item.click_count : undefined;
11286
+ const clickCount = clickCountValue === undefined ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
11287
+ const ordinal = typeof item.ordinal === "number" && Number.isFinite(item.ordinal) ? item.ordinal : undefined;
11288
+ const match = nthChildPattern.exec(selector);
11289
+ const selectorTemplate = match
11290
+ ? selector.replace(nthChildTemplatePattern, ":nth-child(*)")
11291
+ : selector;
11292
+ const valueSource = match ? "nth-child" : "same-selector";
11293
+ const key = valueSource + "\\n" + String(frameSelector || "") + "\\n" + selectorTemplate;
11286
11294
  const group = groups.get(key) || {
11287
11295
  selector_template: selectorTemplate,
11288
11296
  frame_selector: frameSelector,
11289
- value_source: "nth-child",
11297
+ value_source: valueSource,
11290
11298
  sequence: [],
11291
11299
  ordinals: [],
11292
11300
  result_count: 0,
11293
11301
  click_total: 0,
11294
11302
  };
11295
- const value = Number(match[1]);
11296
- const clickCountValue = typeof item.click_count === "number" && Number.isFinite(item.click_count) ? item.click_count : undefined;
11297
- const clickCount = clickCountValue === undefined ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
11298
- for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
11299
- const ordinal = typeof item.ordinal === "number" && Number.isFinite(item.ordinal) ? item.ordinal : undefined;
11303
+ if (match) {
11304
+ const value = Number(match[1]);
11305
+ for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
11306
+ }
11300
11307
  if (ordinal !== undefined) group.ordinals.push(ordinal);
11301
11308
  group.result_count += 1;
11302
11309
  group.click_total += clickCount;
package/dist/cli.js CHANGED
@@ -13,7 +13,7 @@ import {
13
13
  profileStatusExitCode,
14
14
  resolveRiddleProofProfileTargetUrl,
15
15
  resolveRiddleProofProfileTimeoutSec
16
- } from "./chunk-U56YGC5K.js";
16
+ } from "./chunk-25XFUIIC.js";
17
17
  import {
18
18
  createRiddleApiClient,
19
19
  isTerminalRiddleJobStatus,
package/dist/index.cjs CHANGED
@@ -9364,26 +9364,29 @@ function profileSetupClickSequenceReceipts(clickedItems) {
9364
9364
  for (const item of clickedItems) {
9365
9365
  const selector = stringValue5(item.selector);
9366
9366
  if (!selector) continue;
9367
- const match = nthChildPattern.exec(selector);
9368
- if (!match) continue;
9369
9367
  const frameSelector = stringValue5(item.frame_selector);
9370
- const selectorTemplate = selector.replace(nthChildTemplatePattern, ":nth-child(*)");
9371
- const key = `${frameSelector || ""}
9368
+ const clickCountValue = numberValue3(item.click_count);
9369
+ const clickCount = clickCountValue === void 0 ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
9370
+ const ordinal = numberValue3(item.ordinal);
9371
+ const match = nthChildPattern.exec(selector);
9372
+ const selectorTemplate = match ? selector.replace(nthChildTemplatePattern, ":nth-child(*)") : selector;
9373
+ const valueSource = match ? "nth-child" : "same-selector";
9374
+ const key = `${valueSource}
9375
+ ${frameSelector || ""}
9372
9376
  ${selectorTemplate}`;
9373
9377
  const group = groups.get(key) || {
9374
9378
  selector_template: selectorTemplate,
9375
9379
  frame_selector: frameSelector,
9376
- value_source: "nth-child",
9380
+ value_source: valueSource,
9377
9381
  sequence: [],
9378
9382
  ordinals: [],
9379
9383
  result_count: 0,
9380
9384
  click_total: 0
9381
9385
  };
9382
- const value = Number(match[1]);
9383
- const clickCountValue = numberValue3(item.click_count);
9384
- const clickCount = clickCountValue === void 0 ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
9385
- for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
9386
- const ordinal = numberValue3(item.ordinal);
9386
+ if (match) {
9387
+ const value = Number(match[1]);
9388
+ for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
9389
+ }
9387
9390
  if (ordinal !== void 0) group.ordinals.push(ordinal);
9388
9391
  group.result_count += 1;
9389
9392
  group.click_total += clickCount;
@@ -13070,25 +13073,29 @@ function profileSetupClickSequenceReceipts(clickedItems) {
13070
13073
  for (const item of clickedItems || []) {
13071
13074
  const selector = typeof item.selector === "string" && item.selector.trim() ? item.selector.trim() : undefined;
13072
13075
  if (!selector) continue;
13073
- const match = nthChildPattern.exec(selector);
13074
- if (!match) continue;
13075
13076
  const frameSelector = typeof item.frame_selector === "string" && item.frame_selector.trim() ? item.frame_selector.trim() : undefined;
13076
- const selectorTemplate = selector.replace(nthChildTemplatePattern, ":nth-child(*)");
13077
- const key = String(frameSelector || "") + "\\n" + selectorTemplate;
13077
+ const clickCountValue = typeof item.click_count === "number" && Number.isFinite(item.click_count) ? item.click_count : undefined;
13078
+ const clickCount = clickCountValue === undefined ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
13079
+ const ordinal = typeof item.ordinal === "number" && Number.isFinite(item.ordinal) ? item.ordinal : undefined;
13080
+ const match = nthChildPattern.exec(selector);
13081
+ const selectorTemplate = match
13082
+ ? selector.replace(nthChildTemplatePattern, ":nth-child(*)")
13083
+ : selector;
13084
+ const valueSource = match ? "nth-child" : "same-selector";
13085
+ const key = valueSource + "\\n" + String(frameSelector || "") + "\\n" + selectorTemplate;
13078
13086
  const group = groups.get(key) || {
13079
13087
  selector_template: selectorTemplate,
13080
13088
  frame_selector: frameSelector,
13081
- value_source: "nth-child",
13089
+ value_source: valueSource,
13082
13090
  sequence: [],
13083
13091
  ordinals: [],
13084
13092
  result_count: 0,
13085
13093
  click_total: 0,
13086
13094
  };
13087
- const value = Number(match[1]);
13088
- const clickCountValue = typeof item.click_count === "number" && Number.isFinite(item.click_count) ? item.click_count : undefined;
13089
- const clickCount = clickCountValue === undefined ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
13090
- for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
13091
- const ordinal = typeof item.ordinal === "number" && Number.isFinite(item.ordinal) ? item.ordinal : undefined;
13095
+ if (match) {
13096
+ const value = Number(match[1]);
13097
+ for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
13098
+ }
13092
13099
  if (ordinal !== undefined) group.ordinals.push(ordinal);
13093
13100
  group.result_count += 1;
13094
13101
  group.click_total += clickCount;
package/dist/index.js CHANGED
@@ -62,7 +62,7 @@ import {
62
62
  resolveRiddleProofProfileTimeoutSec,
63
63
  slugifyRiddleProofProfileName,
64
64
  summarizeRiddleProofProfileResult
65
- } from "./chunk-U56YGC5K.js";
65
+ } from "./chunk-25XFUIIC.js";
66
66
  import {
67
67
  DEFAULT_RIDDLE_API_BASE_URL,
68
68
  DEFAULT_RIDDLE_API_KEY_FILE,
package/dist/profile.cjs CHANGED
@@ -678,26 +678,29 @@ function profileSetupClickSequenceReceipts(clickedItems) {
678
678
  for (const item of clickedItems) {
679
679
  const selector = stringValue(item.selector);
680
680
  if (!selector) continue;
681
- const match = nthChildPattern.exec(selector);
682
- if (!match) continue;
683
681
  const frameSelector = stringValue(item.frame_selector);
684
- const selectorTemplate = selector.replace(nthChildTemplatePattern, ":nth-child(*)");
685
- const key = `${frameSelector || ""}
682
+ const clickCountValue = numberValue(item.click_count);
683
+ const clickCount = clickCountValue === void 0 ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
684
+ const ordinal = numberValue(item.ordinal);
685
+ const match = nthChildPattern.exec(selector);
686
+ const selectorTemplate = match ? selector.replace(nthChildTemplatePattern, ":nth-child(*)") : selector;
687
+ const valueSource = match ? "nth-child" : "same-selector";
688
+ const key = `${valueSource}
689
+ ${frameSelector || ""}
686
690
  ${selectorTemplate}`;
687
691
  const group = groups.get(key) || {
688
692
  selector_template: selectorTemplate,
689
693
  frame_selector: frameSelector,
690
- value_source: "nth-child",
694
+ value_source: valueSource,
691
695
  sequence: [],
692
696
  ordinals: [],
693
697
  result_count: 0,
694
698
  click_total: 0
695
699
  };
696
- const value = Number(match[1]);
697
- const clickCountValue = numberValue(item.click_count);
698
- const clickCount = clickCountValue === void 0 ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
699
- for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
700
- const ordinal = numberValue(item.ordinal);
700
+ if (match) {
701
+ const value = Number(match[1]);
702
+ for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
703
+ }
701
704
  if (ordinal !== void 0) group.ordinals.push(ordinal);
702
705
  group.result_count += 1;
703
706
  group.click_total += clickCount;
@@ -4384,25 +4387,29 @@ function profileSetupClickSequenceReceipts(clickedItems) {
4384
4387
  for (const item of clickedItems || []) {
4385
4388
  const selector = typeof item.selector === "string" && item.selector.trim() ? item.selector.trim() : undefined;
4386
4389
  if (!selector) continue;
4387
- const match = nthChildPattern.exec(selector);
4388
- if (!match) continue;
4389
4390
  const frameSelector = typeof item.frame_selector === "string" && item.frame_selector.trim() ? item.frame_selector.trim() : undefined;
4390
- const selectorTemplate = selector.replace(nthChildTemplatePattern, ":nth-child(*)");
4391
- const key = String(frameSelector || "") + "\\n" + selectorTemplate;
4391
+ const clickCountValue = typeof item.click_count === "number" && Number.isFinite(item.click_count) ? item.click_count : undefined;
4392
+ const clickCount = clickCountValue === undefined ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
4393
+ const ordinal = typeof item.ordinal === "number" && Number.isFinite(item.ordinal) ? item.ordinal : undefined;
4394
+ const match = nthChildPattern.exec(selector);
4395
+ const selectorTemplate = match
4396
+ ? selector.replace(nthChildTemplatePattern, ":nth-child(*)")
4397
+ : selector;
4398
+ const valueSource = match ? "nth-child" : "same-selector";
4399
+ const key = valueSource + "\\n" + String(frameSelector || "") + "\\n" + selectorTemplate;
4392
4400
  const group = groups.get(key) || {
4393
4401
  selector_template: selectorTemplate,
4394
4402
  frame_selector: frameSelector,
4395
- value_source: "nth-child",
4403
+ value_source: valueSource,
4396
4404
  sequence: [],
4397
4405
  ordinals: [],
4398
4406
  result_count: 0,
4399
4407
  click_total: 0,
4400
4408
  };
4401
- const value = Number(match[1]);
4402
- const clickCountValue = typeof item.click_count === "number" && Number.isFinite(item.click_count) ? item.click_count : undefined;
4403
- const clickCount = clickCountValue === undefined ? 1 : Math.max(1, Math.min(100, Math.floor(clickCountValue)));
4404
- for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
4405
- const ordinal = typeof item.ordinal === "number" && Number.isFinite(item.ordinal) ? item.ordinal : undefined;
4409
+ if (match) {
4410
+ const value = Number(match[1]);
4411
+ for (let index = 0; index < clickCount; index += 1) group.sequence.push(value);
4412
+ }
4406
4413
  if (ordinal !== undefined) group.ordinals.push(ordinal);
4407
4414
  group.result_count += 1;
4408
4415
  group.click_total += clickCount;
package/dist/profile.js CHANGED
@@ -23,7 +23,7 @@ import {
23
23
  resolveRiddleProofProfileTimeoutSec,
24
24
  slugifyRiddleProofProfileName,
25
25
  summarizeRiddleProofProfileResult
26
- } from "./chunk-U56YGC5K.js";
26
+ } from "./chunk-25XFUIIC.js";
27
27
  export {
28
28
  RIDDLE_PROOF_PROFILE_CHECK_TYPES,
29
29
  RIDDLE_PROOF_PROFILE_EVIDENCE_VERSION,
@@ -292,7 +292,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
292
292
  blocking?: boolean;
293
293
  details?: Record<string, unknown>;
294
294
  ok: boolean;
295
- action: "author" | "recon" | "ship" | "implement" | "verify" | "setup" | "run";
295
+ action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
296
296
  state_path: string;
297
297
  stage: any;
298
298
  summary: string;
@@ -382,7 +382,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
382
382
  continueWithStage?: WorkflowStage | null;
383
383
  blocking?: boolean;
384
384
  details?: Record<string, unknown>;
385
- action: "author" | "recon" | "ship" | "implement" | "verify" | "setup" | "run";
385
+ action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
386
386
  state_path: string;
387
387
  stage: any;
388
388
  checkpoint: string;
@@ -659,7 +659,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
659
659
  error?: undefined;
660
660
  } | {
661
661
  ok: boolean;
662
- action: "author" | "recon" | "ship" | "implement" | "verify" | "setup" | "run";
662
+ action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
663
663
  state_path: string;
664
664
  stage: any;
665
665
  summary: string;
@@ -292,7 +292,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
292
292
  blocking?: boolean;
293
293
  details?: Record<string, unknown>;
294
294
  ok: boolean;
295
- action: "author" | "recon" | "ship" | "implement" | "verify" | "setup" | "run";
295
+ action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
296
296
  state_path: string;
297
297
  stage: any;
298
298
  summary: string;
@@ -382,7 +382,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
382
382
  continueWithStage?: WorkflowStage | null;
383
383
  blocking?: boolean;
384
384
  details?: Record<string, unknown>;
385
- action: "author" | "recon" | "ship" | "implement" | "verify" | "setup" | "run";
385
+ action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
386
386
  state_path: string;
387
387
  stage: any;
388
388
  checkpoint: string;
@@ -659,7 +659,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
659
659
  error?: undefined;
660
660
  } | {
661
661
  ok: boolean;
662
- action: "author" | "recon" | "ship" | "implement" | "verify" | "setup" | "run";
662
+ action: "setup" | "recon" | "author" | "implement" | "verify" | "ship" | "run";
663
663
  state_path: string;
664
664
  stage: any;
665
665
  summary: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riddledc/riddle-proof",
3
- "version": "0.7.168",
3
+ "version": "0.7.169",
4
4
  "description": "Reusable Riddle Proof contracts and helpers for evidence-backed agent changes.",
5
5
  "license": "MIT",
6
6
  "author": "RiddleDC",