@cleocode/adapters 2026.8.1 → 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 +42 -0
- package/dist/index.js.map +2 -2
- package/package.json +5 -5
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
|
},
|
|
@@ -15992,6 +16013,25 @@ var init_service_provider = __esm({
|
|
|
15992
16013
|
}
|
|
15993
16014
|
});
|
|
15994
16015
|
|
|
16016
|
+
// packages/contracts/src/caamp-markers.ts
|
|
16017
|
+
var H, damagedMarkerSource, CAAMP_DAMAGED_START_PATTERN_SOURCE, CAAMP_DAMAGED_END_PATTERN_SOURCE;
|
|
16018
|
+
var init_caamp_markers = __esm({
|
|
16019
|
+
"packages/contracts/src/caamp-markers.ts"() {
|
|
16020
|
+
"use strict";
|
|
16021
|
+
H = "[ \\t\\r]";
|
|
16022
|
+
damagedMarkerSource = (keyword) => `^${H}*[<!-]{1,4}${H}*CAAMP${H}*:${H}*${keyword}${H}*[->]{1,3}${H}*$`;
|
|
16023
|
+
CAAMP_DAMAGED_START_PATTERN_SOURCE = damagedMarkerSource("START");
|
|
16024
|
+
CAAMP_DAMAGED_END_PATTERN_SOURCE = damagedMarkerSource("END");
|
|
16025
|
+
}
|
|
16026
|
+
});
|
|
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
|
+
|
|
15995
16035
|
// packages/contracts/src/index.ts
|
|
15996
16036
|
var init_src = __esm({
|
|
15997
16037
|
"packages/contracts/src/index.ts"() {
|
|
@@ -16059,6 +16099,8 @@ var init_src = __esm({
|
|
|
16059
16099
|
init_validator();
|
|
16060
16100
|
init_service_provider();
|
|
16061
16101
|
init_workgraph();
|
|
16102
|
+
init_caamp_markers();
|
|
16103
|
+
init_collection_keys();
|
|
16062
16104
|
}
|
|
16063
16105
|
});
|
|
16064
16106
|
|