@koda-sl/baker-cli 0.154.0 → 0.155.0
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 +8 -1
- package/dist/cli.js +686 -77
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2495,9 +2495,16 @@ baker actions claim <action-id> # live — returns action details + r
|
|
|
2495
2495
|
baker actions release <action-id>
|
|
2496
2496
|
|
|
2497
2497
|
baker actions create --name "Build hero" --priority high --tags landing,creative --description "..."
|
|
2498
|
-
# → returns { ok, data: { tempId }, hints: [...] } — check hints for tags/priority/dependencies/description reminders
|
|
2498
|
+
# → returns { ok, data: { tempId, draftCreateCount }, hints: [...] } — check hints for tags/priority/dependencies/description reminders
|
|
2499
2499
|
# If the name/description reads as recurring or future-dated (e.g. "weekly", "every Monday", "schedule"),
|
|
2500
2500
|
# create emits a hint to use `baker scheduled-actions create` instead of a Work Action.
|
|
2501
|
+
# If it instead names work a surface executes in-chat (a GTM container change, a site tag, an ad-platform
|
|
2502
|
+
# write, a page or form edit, or a value only the user has), create emits a do-it-now hint naming that
|
|
2503
|
+
# surface — doing the work is the default, an action is the exception. One advisory hint per call: the
|
|
2504
|
+
# scheduled redirect wins when both match.
|
|
2505
|
+
# `draftCreateCount` is how many creates this chat has staged (counted after this op, so it drops again
|
|
2506
|
+
# after `draft remove`). At 3 or more, create emits a fan-out hint: re-read the draft and merge actions
|
|
2507
|
+
# that touch the same system into one.
|
|
2501
2508
|
# If no --tags are passed, create emits a MISSING --tags hint — the action is invisible to the backlog's tag filter.
|
|
2502
2509
|
# If no --priority is passed, create emits a MISSING --priority hint — the action ranks as normal/medium in the do-first order.
|
|
2503
2510
|
baker actions update <action-id> --name "Better name" --tags google-ads,strategy # --tags REPLACES the set; '' clears
|