@koda-sl/baker-cli 0.95.1 → 0.97.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 +11 -3
- package/dist/cli.js +497 -295
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2347,14 +2347,22 @@ 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" --description "..."
|
|
2351
|
-
# → returns { ok, data: { tempId }, hints: [...] } — check hints for 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
|
-
|
|
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.
|
|
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
|
|
2355
2358
|
baker actions complete <action-id-or-tempId> --note "What was done" # stages — applies on chat publish
|
|
2356
2359
|
baker actions discard <action-id> --reason "obsolete"
|
|
2357
2360
|
|
|
2361
|
+
# Tags — taxonomy is built-in defaults + company custom tags; --tags is STRICT (unknown slugs are rejected)
|
|
2362
|
+
baker actions tags list # available tags (defaults + company custom); errors → stderr (inline-safe)
|
|
2363
|
+
baker actions tags create --slug pmax --description "Performance Max work" # mint a custom tag
|
|
2364
|
+
baker actions tags delete --slug pmax # remove a custom tag (default tags can't be deleted)
|
|
2365
|
+
|
|
2358
2366
|
baker actions link --blocker <id-or-tempId> --blocked <id-or-tempId>
|
|
2359
2367
|
baker actions unlink --blocker <id> --blocked <id>
|
|
2360
2368
|
|