@koda-sl/baker-cli 0.67.0-dev.3a23b0e68 → 0.68.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 +6 -14
- package/dist/{chunk-5L2X6KDP.js → chunk-K6LHXCKD.js} +4 -4
- package/dist/chunk-K6LHXCKD.js.map +1 -0
- package/dist/cli.js +285 -589
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-5L2X6KDP.js.map +0 -1
package/README.md
CHANGED
|
@@ -2162,7 +2162,7 @@ Manage company-scoped scheduled recipes that spawn Work Actions later or on a ca
|
|
|
2162
2162
|
baker scheduled-actions list
|
|
2163
2163
|
baker scheduled-actions get <id-or-temp_sched_id>
|
|
2164
2164
|
|
|
2165
|
-
baker scheduled-actions create --name "Weekly report" --description "Prepare report" --cron "0 9 * * MON" --timezone Europe/Madrid
|
|
2165
|
+
baker scheduled-actions create --name "Weekly report" --description "Prepare report" --cron "0 9 * * MON" --timezone Europe/Madrid
|
|
2166
2166
|
baker scheduled-actions create --name "Launch reminder" --description "Check launch" --run-at "2026-09-01T07:00:00Z" --disabled --no-spawn-agent --prompt "Focus on blockers"
|
|
2167
2167
|
|
|
2168
2168
|
baker scheduled-actions update <id-or-temp_sched_id> --enabled false
|
|
@@ -2182,7 +2182,6 @@ Rules:
|
|
|
2182
2182
|
- Company Timezone is the default; `--timezone` is an explicit IANA override.
|
|
2183
2183
|
- Scheduled actions spawn agents by default; create with `--no-spawn-agent` or update with `--spawn-agent false` to disable it.
|
|
2184
2184
|
- `--prompt` maps to the scheduled action's additional spawned-agent instructions (`agentPrompt`), not a replacement for Baker's automatic spawned Work Action reference.
|
|
2185
|
-
- `--tag` accepts comma-separated Work Action tag slugs; unknown tag slugs conflict on publish.
|
|
2186
2185
|
|
|
2187
2186
|
---
|
|
2188
2187
|
|
|
@@ -2194,7 +2193,7 @@ Manage action items for the current chat. Most write operations stage on the cha
|
|
|
2194
2193
|
|
|
2195
2194
|
```bash
|
|
2196
2195
|
baker actions list # default: bucketed (claimable, myClaims, blocked, claimedByOthers, completed, discarded)
|
|
2197
|
-
baker actions list --bucketed=false --status pending
|
|
2196
|
+
baker actions list --bucketed=false --status pending
|
|
2198
2197
|
|
|
2199
2198
|
baker actions get <action-id>
|
|
2200
2199
|
baker actions status temp_hero jx123 # batch resolve real IDs and temp_* refs
|
|
@@ -2202,21 +2201,14 @@ baker actions status temp_hero jx123 # batch resolve real IDs and temp_* r
|
|
|
2202
2201
|
baker actions claim <action-id> # live — returns action details + skill-loading hints
|
|
2203
2202
|
baker actions release <action-id>
|
|
2204
2203
|
|
|
2205
|
-
baker actions create --name "Build hero" --description "..."
|
|
2206
|
-
# → returns { ok, data: { tempId }, hints: [...] } — check hints for dependencies/
|
|
2204
|
+
baker actions create --name "Build hero" --description "..."
|
|
2205
|
+
# → returns { ok, data: { tempId }, hints: [...] } — check hints for dependencies/description reminders
|
|
2207
2206
|
baker actions update <action-id> --name "Better name"
|
|
2208
2207
|
baker actions complete <action-id-or-tempId> --note "What was done" # stages — applies on chat publish
|
|
2209
2208
|
baker actions discard <action-id> --reason "obsolete"
|
|
2210
2209
|
|
|
2211
2210
|
baker actions link --blocker <id-or-tempId> --blocked <id-or-tempId>
|
|
2212
2211
|
baker actions unlink --blocker <id> --blocked <id>
|
|
2213
|
-
|
|
2214
|
-
baker actions tag list
|
|
2215
|
-
baker actions tag create --slug copy --label Copy --color "#f59e0b"
|
|
2216
|
-
baker actions tag update <tag-id> --label "Copywriting"
|
|
2217
|
-
baker actions tag delete <tag-id>
|
|
2218
|
-
baker actions tag add <action-id-or-tempId> --slug copy
|
|
2219
|
-
baker actions tag remove <action-id> --slug copy
|
|
2220
2212
|
```
|
|
2221
2213
|
|
|
2222
2214
|
`baker actions status <ref...>` reads live Work Action status without requiring `BAKER_CHAT_ID`. It sends all refs in one request to `/api/actions/status` and preserves the backend JSON envelope:
|
|
@@ -2243,8 +2235,8 @@ baker actions tag remove <action-id> --slug copy
|
|
|
2243
2235
|
Permissions enforced server-side:
|
|
2244
2236
|
|
|
2245
2237
|
- Only `claim`/`release` mutate live state.
|
|
2246
|
-
- `claim` returns action details (`id`, `name`, `description
|
|
2247
|
-
- `update`, `complete`, `discard`, `
|
|
2238
|
+
- `claim` returns action details (`id`, `name`, `description`) and a `hints` array recommending you review the action context and load relevant skills.
|
|
2239
|
+
- `update`, `complete`, `discard`, `unlink` require the action to be claimed by the current chat — otherwise the API returns `FORBIDDEN` with a hint to claim first.
|
|
2248
2240
|
- Claiming an action already claimed by another chat returns `CONFLICT` with the other chat's title — pick a different action.
|
|
2249
2241
|
- All staged ops are reverted automatically when the chat is discarded.
|
|
2250
2242
|
|
|
@@ -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();
|
|
@@ -855,7 +855,7 @@ function describeCause(c) {
|
|
|
855
855
|
}
|
|
856
856
|
}
|
|
857
857
|
|
|
858
|
-
//
|
|
858
|
+
// ../../node_modules/.pnpm/safe-stable-stringify@2.5.0/node_modules/safe-stable-stringify/esm/wrapper.js
|
|
859
859
|
var import__ = __toESM(require_safe_stable_stringify(), 1);
|
|
860
860
|
var configure = import__.default.configure;
|
|
861
861
|
var wrapper_default = import__.default;
|
|
@@ -5659,4 +5659,4 @@ export {
|
|
|
5659
5659
|
defaultRegistry,
|
|
5660
5660
|
createEngineFromEnv
|
|
5661
5661
|
};
|
|
5662
|
-
//# sourceMappingURL=chunk-
|
|
5662
|
+
//# sourceMappingURL=chunk-K6LHXCKD.js.map
|