@koda-sl/baker-cli 0.136.0-dev.46c403ad4 → 0.136.0-dev.7c36fe3f1

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 CHANGED
@@ -2154,11 +2154,13 @@ baker videos tags
2154
2154
 
2155
2155
  Semantic search testimonials. For landing pages, query the product/offer and USP before filtering by rating so selected quotes match what the landing sells.
2156
2156
 
2157
+ Search reranks over the whole corpus with no language preference, so a corpus dominated by one language returns that language even for another-language query. Pass `--language <code>` to scope to a market. When results skew to one language and none was requested, the command emits a hint (in the `hints` array for `--output json`, on stderr for `--output md`/`files`).
2158
+
2157
2159
  ```bash
2158
2160
  baker testimonials search "great service"
2159
2161
  baker testimonials search "fast delivery" --rating-min 4 --tags quality
2160
2162
  baker testimonials search "competitor support" --source trustpilot --sentiment negative --rating-max 2
2161
- baker testimonials search "[product/offer] for [persona] that delivers [USP/outcome]" --rating-min 4 --output md --full --limit 12
2163
+ baker testimonials search "[product/offer] for [persona] that delivers [USP/outcome]" --rating-min 4 --language en --output md --full --limit 12
2162
2164
  ```
2163
2165
 
2164
2166
  ### `baker testimonials get <id>`
@@ -2572,28 +2574,6 @@ baker history list --category ads --full # ad writes with raw metadata
2572
2574
 
2573
2575
  ---
2574
2576
 
2575
- ### `baker chats list | view | transcript | diff`
2576
-
2577
- 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.
2578
-
2579
- ```bash
2580
- baker chats list # other Sessions, newest first (all statuses)
2581
- baker chats list --status active # only running Sessions
2582
- baker chats view <id> # kickoff, outputs (changes), threads, commits
2583
- baker chats transcript <id> --full # read the conversation, verbatim
2584
- baker chats diff <id> --surface landings # real file-level changes, landings only
2585
- baker chats diff <id> --full # include the unified-diff patch text
2586
- ```
2587
-
2588
- **`list` flags:** `--status active|archived|all` (default `all`), `--limit` (1-100, default 20), `--full` (include each Session's full change list).
2589
- **`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`.
2590
- **`transcript` flags:** `--limit` (1-1000, default 100, most recent), `--full` (untruncated text). Returns `entries` (`role` + `text`) and `truncated`.
2591
- **`diff` flags:** `--surface knowledge|company|brand|landings|flows|creatives`, `--full` (patch text per file). Returns `available`, `files` (`path`, `surface`, `status`, `additions`, `deletions`, `patch`).
2592
-
2593
- 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` only covers the git content (the actual file patches) and only for a published Session; in-progress Sessions have no reachable file diff (`available: false`) — but `view` still shows their staged DB effects. Use `view` for the complete picture, `diff` to read the real file content.
2594
-
2595
- ---
2596
-
2597
2577
  ### `baker schema [command]`
2598
2578
 
2599
2579
  Inspect command argument schemas for AI agent introspection.
@@ -4080,6 +4060,8 @@ It then scaffolds a canvas that ingests `prompt.json`, wires **one `[TODO]` inge
4080
4060
 
4081
4061
  **Automatic placement fan-out.** By default the canvas doesn't stop at one ratio: the hero renders once at the platform's primary ratio, then an `image_aspect_adapt` node recomposes it into that platform's full placement set, and the canvas `output` points at the adapted images. The placement set is derived from `--platform` (`meta` → 4:5 + 9:16, `google` → 1:1 + 4:5 + 16:9, `linkedin` → 1:1, `tiktok` → 9:16, `youtube` → 16:9); override it with `--placements <preset>` or disable it with `--placements none` for a single base ad. The hero ratio passes through the adapt node **free**; each other ratio is a billed recomposition — and because adaptation re-generates, every ratio should be eyeballed for text and brand-color fidelity before publish (`ad-formats.md` in the scaffold skill covers this).
4082
4062
 
4063
+ The checklist `note` reminds you to fill **logo** slots from the company's committed brand logo in `src/brand/logos/` (per `BRAND.md`) — **not** from `baker images logo <domain>`, whose Brandfetch CDN often serves an outdated mark (a common cause of an old logo shipping on a live ad).
4064
+
4083
4065
  The generation prompt is **model-aware and typography-hardened** (a static ad is the only path that bakes text *into* the image — video frames are clean plates). It resolves the image model's profile, so for **gpt-image** the exclusions (no invented badges/watermark) are hoisted to the very *end* of the prompt where the model reads them as pure exclusions rather than composition, and it quotes every blueprint string with an instruction to render each **once, verbatim**, lock brand names letter-by-letter, and keep type crisp and legible — the fix for the #1 static-ad defect (garbled/duplicated/dropped copy). Run `baker canvas critique` on the scaffolded canvas for an advisory read on text-legibility risk, identity grounding, and brand-type fidelity before you spend.
4084
4066
 
4085
4067
  ```bash