@koda-sl/baker-cli 0.99.1-dev.5b1957cc → 0.100.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 +2 -2
- package/dist/{chunk-26K7V346.js → chunk-3JVYU72O.js} +4 -4
- package/dist/chunk-3JVYU72O.js.map +1 -0
- package/dist/cli.js +224 -254
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-26K7V346.js.map +0 -1
package/README.md
CHANGED
|
@@ -2354,7 +2354,7 @@ baker actions log --from 2026-06-01 --to 2026-06-15 # explicit ISO window (ove
|
|
|
2354
2354
|
baker actions get <action-id>
|
|
2355
2355
|
baker actions status temp_hero jx123 # batch resolve real IDs and temp_* refs
|
|
2356
2356
|
|
|
2357
|
-
baker actions claim <action-id> # live — returns action details +
|
|
2357
|
+
baker actions claim <action-id> # live — returns action details + a fast-model list of skills to load (recommendedSkills)
|
|
2358
2358
|
baker actions release <action-id>
|
|
2359
2359
|
|
|
2360
2360
|
baker actions create --name "Build hero" --priority high --tags landing,creative --description "..."
|
|
@@ -2417,7 +2417,7 @@ baker actions draft clear # drop everything staged in this cha
|
|
|
2417
2417
|
Permissions enforced server-side:
|
|
2418
2418
|
|
|
2419
2419
|
- Only `claim`/`release` mutate live state.
|
|
2420
|
-
- `claim` returns action details (`id`, `name`, `description`)
|
|
2420
|
+
- `claim` returns action details (`id`, `name`, `description`) plus `recommendedSkills` — a fast model reads the action's name/description/tags against the local `.claude/skills/` catalog and returns the skills (`{ name, reason }`) most worth loading for the work, echoed as `/skill — reason` lines in `hints`. It is best-effort: if the catalog is absent or the model call fails, the claim still succeeds and falls back to the generic "review and load relevant skills" hint.
|
|
2421
2421
|
- `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.
|
|
2422
2422
|
- Claiming an action already claimed by another chat returns `CONFLICT` with the other chat's title — pick a different action.
|
|
2423
2423
|
- All staged ops are reverted automatically when the chat is discarded.
|
|
@@ -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;
|
|
@@ -6252,4 +6252,4 @@ export {
|
|
|
6252
6252
|
defaultRegistry,
|
|
6253
6253
|
createEngineFromEnv
|
|
6254
6254
|
};
|
|
6255
|
-
//# sourceMappingURL=chunk-
|
|
6255
|
+
//# sourceMappingURL=chunk-3JVYU72O.js.map
|