@koda-sl/baker-cli 0.96.0 → 0.97.0-dev.e4727e68
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 +5 -3
- package/dist/{chunk-RCPMJKI7.js → chunk-7HSLFPZI.js} +4 -4
- package/dist/chunk-7HSLFPZI.js.map +1 -0
- package/dist/cli.js +350 -151
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-RCPMJKI7.js.map +0 -1
package/README.md
CHANGED
|
@@ -2347,12 +2347,14 @@ baker actions status temp_hero jx123 # batch resolve real IDs and temp_* r
|
|
|
2347
2347
|
baker actions claim <action-id> # live — returns action details + skill-loading hints
|
|
2348
2348
|
baker actions release <action-id>
|
|
2349
2349
|
|
|
2350
|
-
baker actions create --name "Build hero" --tags landing,creative --description "..."
|
|
2351
|
-
# → returns { ok, data: { tempId }, hints: [...] } — check hints for tags/dependencies/description reminders
|
|
2350
|
+
baker actions create --name "Build hero" --priority high --tags landing,creative --description "..."
|
|
2351
|
+
# → returns { ok, data: { tempId }, hints: [...] } — check hints for tags/priority/dependencies/description reminders
|
|
2352
2352
|
# If the name/description reads as recurring or future-dated (e.g. "weekly", "every Monday", "schedule"),
|
|
2353
2353
|
# create emits a hint to use `baker scheduled-actions create` instead of a Work Action.
|
|
2354
|
-
# If no --tags are passed, create emits a
|
|
2354
|
+
# If no --tags are passed, create emits a MISSING --tags hint — the action is invisible to the backlog's tag filter.
|
|
2355
|
+
# If no --priority is passed, create emits a MISSING --priority hint — the action ranks as normal/medium in the do-first order.
|
|
2355
2356
|
baker actions update <action-id> --name "Better name" --tags google-ads,strategy # --tags REPLACES the set; '' clears
|
|
2357
|
+
baker actions update <action-id> --priority urgent # urgent|high|medium|low; 'none' clears
|
|
2356
2358
|
baker actions complete <action-id-or-tempId> --note "What was done" # stages — applies on chat publish
|
|
2357
2359
|
baker actions discard <action-id> --reason "obsolete"
|
|
2358
2360
|
|
|
@@ -24,9 +24,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
24
24
|
mod
|
|
25
25
|
));
|
|
26
26
|
|
|
27
|
-
//
|
|
27
|
+
// ../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/index.js
|
|
28
28
|
var require_safe_stable_stringify = __commonJS({
|
|
29
|
-
"
|
|
29
|
+
"../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/index.js"(exports, module) {
|
|
30
30
|
"use strict";
|
|
31
31
|
var { hasOwnProperty } = Object.prototype;
|
|
32
32
|
var stringify = configure2();
|
|
@@ -890,7 +890,7 @@ function describeCause(c) {
|
|
|
890
890
|
}
|
|
891
891
|
}
|
|
892
892
|
|
|
893
|
-
//
|
|
893
|
+
// ../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/esm/wrapper.js
|
|
894
894
|
var import__ = __toESM(require_safe_stable_stringify(), 1);
|
|
895
895
|
var configure = import__.default.configure;
|
|
896
896
|
var wrapper_default = import__.default;
|
|
@@ -6146,4 +6146,4 @@ export {
|
|
|
6146
6146
|
defaultRegistry,
|
|
6147
6147
|
createEngineFromEnv
|
|
6148
6148
|
};
|
|
6149
|
-
//# sourceMappingURL=chunk-
|
|
6149
|
+
//# sourceMappingURL=chunk-7HSLFPZI.js.map
|