@koda-sl/baker-cli 0.99.0-dev.40c99be71 → 0.99.1
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 +13 -1
- package/dist/{chunk-FOK2JPRW.js → chunk-3JVYU72O.js} +4 -6
- package/dist/chunk-3JVYU72O.js.map +1 -0
- package/dist/cli.js +676 -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
|
@@ -2303,7 +2303,8 @@ baker scheduled-actions list
|
|
|
2303
2303
|
baker scheduled-actions get <id-or-temp_sched_id>
|
|
2304
2304
|
|
|
2305
2305
|
baker scheduled-actions create --name "Weekly report" --description "Prepare report" --cron "0 9 * * MON" --timezone Europe/Madrid
|
|
2306
|
-
baker scheduled-actions create --name "Launch reminder" --description "Check launch" --run-at "2026-09-01T07:00:00Z" --disabled --no-spawn-agent
|
|
2306
|
+
baker scheduled-actions create --name "Launch reminder" --description "Check launch" --run-at "2026-09-01T07:00:00Z" --disabled --no-spawn-agent
|
|
2307
|
+
baker scheduled-actions create --name "Spend review" --description "Review spend anomalies" --cron "0 9 * * MON" --prompt "Focus on blockers"
|
|
2307
2308
|
|
|
2308
2309
|
baker scheduled-actions update <id-or-temp_sched_id> --enabled false
|
|
2309
2310
|
baker scheduled-actions update <id-or-temp_sched_id> --run-at "2026-09-02T07:00:00Z" --spawn-agent true --prompt "Use the launch checklist"
|
|
@@ -2322,6 +2323,7 @@ Rules:
|
|
|
2322
2323
|
- Company Timezone is the default; `--timezone` is an explicit IANA override.
|
|
2323
2324
|
- Scheduled actions spawn agents by default; create with `--no-spawn-agent` or update with `--spawn-agent false` to disable it.
|
|
2324
2325
|
- `--prompt` maps to the scheduled action's additional spawned-agent instructions (`agentPrompt`), not a replacement for Baker's automatic spawned Work Action reference.
|
|
2326
|
+
- `--prompt` requires an agent: it is rejected alongside `--no-spawn-agent` (create) or `--spawn-agent false` (update), since a bypassed agent never reads it.
|
|
2325
2327
|
|
|
2326
2328
|
---
|
|
2327
2329
|
|
|
@@ -2341,6 +2343,14 @@ baker actions list --bucketed=false --sort priority # flat list, do-first orde
|
|
|
2341
2343
|
# `draftCreates`; published actions being completed/discarded/updated carry a `draftStatus` marker.
|
|
2342
2344
|
# Only the caller's own chat draft is reflected — never another chat's staged work.
|
|
2343
2345
|
|
|
2346
|
+
baker actions log # actions COMPLETED today, newest first, each with its completion note
|
|
2347
|
+
baker actions log --since 7d # completed in the last 7 days (today | yesterday | <N>d; default today)
|
|
2348
|
+
baker actions log --from 2026-06-01 --to 2026-06-15 # explicit ISO window (overrides --since; --to defaults to now)
|
|
2349
|
+
# Use this to report to the client what was done. `data` is an array of { action, assignee } —
|
|
2350
|
+
# the note and metadata live on `action` (e.g. data[].action.completedNote — the mandatory
|
|
2351
|
+
# description from `complete` — plus action.completedAt, action.tags, action.priority). Windows are local time.
|
|
2352
|
+
# Only PUBLISHED completions appear — ops staged in an unpublished chat are not included.
|
|
2353
|
+
|
|
2344
2354
|
baker actions get <action-id>
|
|
2345
2355
|
baker actions status temp_hero jx123 # batch resolve real IDs and temp_* refs
|
|
2346
2356
|
|
|
@@ -2356,6 +2366,8 @@ baker actions create --name "Build hero" --priority high --tags landing,creative
|
|
|
2356
2366
|
baker actions update <action-id> --name "Better name" --tags google-ads,strategy # --tags REPLACES the set; '' clears
|
|
2357
2367
|
baker actions update <action-id> --priority urgent # urgent|high|medium|low; 'none' clears
|
|
2358
2368
|
baker actions complete <action-id-or-tempId> --note "What was done" # stages — applies on chat publish
|
|
2369
|
+
# --note is REQUIRED (≥20 chars): what changed, where, and the outcome. It is the durable, client-facing
|
|
2370
|
+
# record surfaced by `baker actions log`. A missing/too-short note is rejected with a VALIDATION_ERROR.
|
|
2359
2371
|
baker actions discard <action-id> --reason "obsolete"
|
|
2360
2372
|
|
|
2361
2373
|
# 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
|