@koda-sl/baker-cli 0.98.1 → 0.99.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 +10 -0
- package/dist/cli.js +594 -342
- package/dist/cli.js.map +1 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -2341,6 +2341,14 @@ baker actions list --bucketed=false --sort priority # flat list, do-first orde
|
|
|
2341
2341
|
# `draftCreates`; published actions being completed/discarded/updated carry a `draftStatus` marker.
|
|
2342
2342
|
# Only the caller's own chat draft is reflected — never another chat's staged work.
|
|
2343
2343
|
|
|
2344
|
+
baker actions log # actions COMPLETED today, newest first, each with its completion note
|
|
2345
|
+
baker actions log --since 7d # completed in the last 7 days (today | yesterday | <N>d; default today)
|
|
2346
|
+
baker actions log --from 2026-06-01 --to 2026-06-15 # explicit ISO window (overrides --since; --to defaults to now)
|
|
2347
|
+
# Use this to report to the client what was done. `data` is an array of { action, assignee } —
|
|
2348
|
+
# the note and metadata live on `action` (e.g. data[].action.completedNote — the mandatory
|
|
2349
|
+
# description from `complete` — plus action.completedAt, action.tags, action.priority). Windows are local time.
|
|
2350
|
+
# Only PUBLISHED completions appear — ops staged in an unpublished chat are not included.
|
|
2351
|
+
|
|
2344
2352
|
baker actions get <action-id>
|
|
2345
2353
|
baker actions status temp_hero jx123 # batch resolve real IDs and temp_* refs
|
|
2346
2354
|
|
|
@@ -2356,6 +2364,8 @@ baker actions create --name "Build hero" --priority high --tags landing,creative
|
|
|
2356
2364
|
baker actions update <action-id> --name "Better name" --tags google-ads,strategy # --tags REPLACES the set; '' clears
|
|
2357
2365
|
baker actions update <action-id> --priority urgent # urgent|high|medium|low; 'none' clears
|
|
2358
2366
|
baker actions complete <action-id-or-tempId> --note "What was done" # stages — applies on chat publish
|
|
2367
|
+
# --note is REQUIRED (≥20 chars): what changed, where, and the outcome. It is the durable, client-facing
|
|
2368
|
+
# record surfaced by `baker actions log`. A missing/too-short note is rejected with a VALIDATION_ERROR.
|
|
2359
2369
|
baker actions discard <action-id> --reason "obsolete"
|
|
2360
2370
|
|
|
2361
2371
|
# Tags — taxonomy is built-in defaults + company custom tags; --tags is STRICT (unknown slugs are rejected)
|