@koda-sl/baker-cli 0.99.0-dev.40c99be71 → 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/{chunk-FOK2JPRW.js → chunk-3JVYU72O.js} +4 -6
- package/dist/chunk-3JVYU72O.js.map +1 -0
- package/dist/cli.js +664 -636
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.js +1 -1
- package/package.json +5 -3
- package/dist/chunk-FOK2JPRW.js.map +0 -1
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)
|
|
@@ -24,9 +24,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
24
24
|
mod
|
|
25
25
|
));
|
|
26
26
|
|
|
27
|
-
//
|
|
27
|
+
// ../../node_modules/.pnpm/safe-stable-stringify@2.5.0/node_modules/safe-stable-stringify/index.js
|
|
28
28
|
var require_safe_stable_stringify = __commonJS({
|
|
29
|
-
"
|
|
29
|
+
"../../node_modules/.pnpm/safe-stable-stringify@2.5.0/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
|
+
// ../../node_modules/.pnpm/safe-stable-stringify@2.5.0/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;
|
|
@@ -6242,8 +6242,6 @@ export {
|
|
|
6242
6242
|
ELEVENLABS_MAX_MUSIC_LENGTH_MS,
|
|
6243
6243
|
IMAGE_GENERATE_MODELS,
|
|
6244
6244
|
MODEL_REGISTRY,
|
|
6245
|
-
extForMime,
|
|
6246
|
-
AssetRef,
|
|
6247
6245
|
BackendClient2 as BackendClient,
|
|
6248
6246
|
Engine2 as Engine,
|
|
6249
6247
|
LocalAssetStore2 as LocalAssetStore,
|
|
@@ -6254,4 +6252,4 @@ export {
|
|
|
6254
6252
|
defaultRegistry,
|
|
6255
6253
|
createEngineFromEnv
|
|
6256
6254
|
};
|
|
6257
|
-
//# sourceMappingURL=chunk-
|
|
6255
|
+
//# sourceMappingURL=chunk-3JVYU72O.js.map
|