@cleocode/adapters 2026.8.2 → 2026.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -10513,6 +10513,27 @@ var init_operations_registry = __esm({
10513
10513
  type: "boolean",
10514
10514
  required: false,
10515
10515
  description: "Commit plan file before dispatching"
10516
+ },
10517
+ // T12089: the plan SCOPE. The workflow regenerates the plan when no
10518
+ // committed plan is supplied, and `cleo release plan` requires
10519
+ // `--saga | --epic | --tasks` — so without one of these the dispatched
10520
+ // run dies at "Prepare bump-PR" after a fully green preflight.
10521
+ //
10522
+ // A param absent from this registry is STRIPPED before the domain handler
10523
+ // sees it, silently. `--tasks` was accepted by the CLI, forwarded by the
10524
+ // handler and by `releaseOpen`, and still arrived empty at the workflow
10525
+ // because this declaration was the fourth hop in the chain.
10526
+ {
10527
+ name: "epic",
10528
+ type: "string",
10529
+ required: false,
10530
+ description: "Epic task ID forwarded as the plan scope (e.g. T9999)"
10531
+ },
10532
+ {
10533
+ name: "tasks",
10534
+ type: "string",
10535
+ required: false,
10536
+ description: "Comma-separated task IDs forwarded as the plan scope for a task-scoped release"
10516
10537
  }
10517
10538
  ]
10518
10539
  },
@@ -16004,6 +16025,13 @@ var init_caamp_markers = __esm({
16004
16025
  }
16005
16026
  });
16006
16027
 
16028
+ // packages/contracts/src/collection-keys.ts
16029
+ var init_collection_keys = __esm({
16030
+ "packages/contracts/src/collection-keys.ts"() {
16031
+ "use strict";
16032
+ }
16033
+ });
16034
+
16007
16035
  // packages/contracts/src/index.ts
16008
16036
  var init_src = __esm({
16009
16037
  "packages/contracts/src/index.ts"() {
@@ -16072,6 +16100,7 @@ var init_src = __esm({
16072
16100
  init_service_provider();
16073
16101
  init_workgraph();
16074
16102
  init_caamp_markers();
16103
+ init_collection_keys();
16075
16104
  }
16076
16105
  });
16077
16106