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