@koda-sl/baker-cli 0.136.2 → 0.137.0-dev.529af4675
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 +23 -0
- package/dist/{chunk-TAGQCU36.js → chunk-TXNOPO6P.js} +4 -4
- package/dist/chunk-TXNOPO6P.js.map +1 -0
- package/dist/cli.js +1743 -1295
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-TAGQCU36.js.map +0 -1
package/README.md
CHANGED
|
@@ -2574,6 +2574,29 @@ baker history list --category ads --full # ad writes with raw metadata
|
|
|
2574
2574
|
|
|
2575
2575
|
---
|
|
2576
2576
|
|
|
2577
|
+
### `baker chats list | view | transcript | diff`
|
|
2578
|
+
|
|
2579
|
+
Read-only inspection of **other Sessions (chats) on the same account** — so an agent can reuse prior work ("like we did in that other chat, but for X"). Same-account only; never crosses a company boundary and has no write surface.
|
|
2580
|
+
|
|
2581
|
+
```bash
|
|
2582
|
+
baker chats list # other Sessions, newest first (all statuses)
|
|
2583
|
+
baker chats list --status active # only running Sessions
|
|
2584
|
+
baker chats view <id> # kickoff, outputs (changes), threads, commits
|
|
2585
|
+
baker chats transcript <id> --full # read the conversation, verbatim
|
|
2586
|
+
baker chats diff <id> --surface landings # real file-level changes, landings only
|
|
2587
|
+
baker chats diff <id> --full # include the unified-diff patch text
|
|
2588
|
+
baker chats diff <id> --live # in-progress Session: read from its live workspace
|
|
2589
|
+
```
|
|
2590
|
+
|
|
2591
|
+
**`list` flags:** `--status active|archived|all` (default `all`), `--limit` (1-100, default 20), `--full` (include each Session's full change list).
|
|
2592
|
+
**`view`:** returns the unified `effects` — git content (`content`, `creatives`) AND DB-only effects that never touch the repo (`actions`, `scheduledActions`, `tags`, `ads.{google,meta,linkedin}`), each resolved to real detail and flagged `staged` (in-progress draft) vs applied. Plus `kickoff`, `outputs` counts, `threads`, `commits`, `diffAvailable`.
|
|
2593
|
+
**`transcript` flags:** `--limit` (1-1000, default 100, most recent), `--full` (untruncated text). Returns `entries` (`role` + `text`) and `truncated`.
|
|
2594
|
+
**`diff` flags:** `--surface knowledge|company|brand|landings|flows|creatives`, `--full` (patch text per file), `--live` (read an in-progress Session's changes from its live workspace). Returns `available`, `source` (`published`|`live`), `files` (`path`, `surface`, `status`, `additions`, `deletions`, `patch`), and `truncated` when a large live diff was capped.
|
|
2595
|
+
|
|
2596
|
+
A Session's effects live in two places: **git content** (files — landings, creatives, flows, brand, knowledge) and **DB-only effects** (Actions, Tags, ad-platform writes — never in the repo). `view` unifies BOTH. `diff` covers the git content (the actual file patches): a **published** Session reads from the commit merged to `main` (durable); an **in-progress** Session has no commit yet, so pass **`--live`** to read its changes straight from the running workspace (it wakes the Session's Runtime; only works while it still exists — a discarded Session's workspace is gone). Use `view` for the complete picture, `diff` (or `diff --live`) to read the real file content.
|
|
2597
|
+
|
|
2598
|
+
---
|
|
2599
|
+
|
|
2577
2600
|
### `baker schema [command]`
|
|
2578
2601
|
|
|
2579
2602
|
Inspect command argument schemas for AI agent introspection.
|
|
@@ -7,9 +7,9 @@ import {
|
|
|
7
7
|
__toESM
|
|
8
8
|
} from "./chunk-RK67WL4O.js";
|
|
9
9
|
|
|
10
|
-
//
|
|
10
|
+
// ../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/index.js
|
|
11
11
|
var require_safe_stable_stringify = __commonJS({
|
|
12
|
-
"
|
|
12
|
+
"../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/index.js"(exports, module) {
|
|
13
13
|
"use strict";
|
|
14
14
|
var { hasOwnProperty } = Object.prototype;
|
|
15
15
|
var stringify = configure2();
|
|
@@ -1070,7 +1070,7 @@ function resolveAdaptFormats(params) {
|
|
|
1070
1070
|
return params.formats ?? [];
|
|
1071
1071
|
}
|
|
1072
1072
|
|
|
1073
|
-
//
|
|
1073
|
+
// ../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/esm/wrapper.js
|
|
1074
1074
|
var import__ = __toESM(require_safe_stable_stringify(), 1);
|
|
1075
1075
|
var configure = import__.default.configure;
|
|
1076
1076
|
var wrapper_default = import__.default;
|
|
@@ -7837,4 +7837,4 @@ export {
|
|
|
7837
7837
|
defaultRegistry,
|
|
7838
7838
|
createEngineFromEnv
|
|
7839
7839
|
};
|
|
7840
|
-
//# sourceMappingURL=chunk-
|
|
7840
|
+
//# sourceMappingURL=chunk-TXNOPO6P.js.map
|