@koda-sl/baker-cli 0.95.0 → 0.96.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 CHANGED
@@ -1608,6 +1608,7 @@ Each external source is its own subcommand. Pick the verb that matches the sourc
1608
1608
  | `baker images upscale <imageId>` | Real-ESRGAN super-resolution via backend ($0.05/image, cost-tracked) | n/a (operates on library image) |
1609
1609
  | `baker images crop <file>` | Coordinate-based rectangular extract — local file or URL | n/a |
1610
1610
  | `baker images dimensions <file\|url>` | Read width / height / aspect / format without decoding | n/a |
1611
+ | `baker images tags` | List available image tag names (defaults + company custom tags) | n/a |
1611
1612
 
1612
1613
  **Auto-ingest** runs the full `processImage` pipeline (Gemini describe + Voyage multimodal embed + OpenRouter text embed) on every hit. Override with `--auto-ingest N` (turn on) or `--no-auto-ingest` (turn off where default is on). When auto-ingest succeeds, the matching returned hit uses the Baker-owned URL and keeps the original provider URL as `sourceUrl`. After auto-ingest the next `baker images library` query for the same concept hits the local row.
1613
1614
 
@@ -2198,6 +2199,14 @@ Supported extensions: `.mp4`, `.mov`, `.webm`, `.avi`, `.mkv`
2198
2199
 
2199
2200
  Delete a video by ID.
2200
2201
 
2202
+ ### `baker videos tags`
2203
+
2204
+ List the available video tag names — built-in defaults plus the company's custom tags — straight from the backend. Use it before filtering with `--tags`. Defaults to a markdown list (`--output json` for the `{ ok, data }` envelope).
2205
+
2206
+ ```bash
2207
+ baker videos tags
2208
+ ```
2209
+
2201
2210
  ### `baker testimonials search <query>`
2202
2211
 
2203
2212
  Semantic search testimonials. For landing pages, query the product/offer and USP before filtering by rating so selected quotes match what the landing sells.
@@ -2221,6 +2230,14 @@ List testimonials with optional filters.
2221
2230
  baker testimonials list --source google --sentiment positive --limit 20
2222
2231
  ```
2223
2232
 
2233
+ ### `baker testimonials tags`
2234
+
2235
+ List the available testimonial tag names — built-in defaults plus the company's custom tags. Use it before filtering with `--tags`. Defaults to a markdown list (`--output json` for the `{ ok, data }` envelope).
2236
+
2237
+ ```bash
2238
+ baker testimonials tags
2239
+ ```
2240
+
2224
2241
  ---
2225
2242
 
2226
2243
  ### Winning Ads (`baker winning-ads`)
@@ -2316,7 +2333,10 @@ Manage action items for the current chat. Most write operations stage on the cha
2316
2333
 
2317
2334
  ```bash
2318
2335
  baker actions list # default: bucketed (claimable, myClaims, blocked, claimedByOthers, completed, discarded, draftCreates)
2336
+ # Each bucket is ordered "do first": blockers before blocked, then highest-leverage (unblocks the most),
2337
+ # then most recent. The `blocked` bucket is ordered closest-to-ready first.
2319
2338
  baker actions list --bucketed=false --status pending
2339
+ baker actions list --bucketed=false --sort priority # flat list, do-first order (default); use --sort recent for newest-first
2320
2340
  # With BAKER_CHAT_ID, the bucketed list folds in THIS chat's draft: staged creates appear in
2321
2341
  # `draftCreates`; published actions being completed/discarded/updated carry a `draftStatus` marker.
2322
2342
  # Only the caller's own chat draft is reflected — never another chat's staged work.
@@ -2327,14 +2347,20 @@ baker actions status temp_hero jx123 # batch resolve real IDs and temp_* r
2327
2347
  baker actions claim <action-id> # live — returns action details + skill-loading hints
2328
2348
  baker actions release <action-id>
2329
2349
 
2330
- baker actions create --name "Build hero" --description "..."
2331
- # → returns { ok, data: { tempId }, hints: [...] } — check hints for dependencies/description reminders
2350
+ baker actions create --name "Build hero" --tags landing,creative --description "..."
2351
+ # → returns { ok, data: { tempId }, hints: [...] } — check hints for tags/dependencies/description reminders
2332
2352
  # If the name/description reads as recurring or future-dated (e.g. "weekly", "every Monday", "schedule"),
2333
2353
  # create emits a hint to use `baker scheduled-actions create` instead of a Work Action.
2334
- baker actions update <action-id> --name "Better name"
2354
+ # If no --tags are passed, create emits a hint to add them so the action is filterable.
2355
+ baker actions update <action-id> --name "Better name" --tags google-ads,strategy # --tags REPLACES the set; '' clears
2335
2356
  baker actions complete <action-id-or-tempId> --note "What was done" # stages — applies on chat publish
2336
2357
  baker actions discard <action-id> --reason "obsolete"
2337
2358
 
2359
+ # Tags — taxonomy is built-in defaults + company custom tags; --tags is STRICT (unknown slugs are rejected)
2360
+ baker actions tags list # available tags (defaults + company custom); errors → stderr (inline-safe)
2361
+ baker actions tags create --slug pmax --description "Performance Max work" # mint a custom tag
2362
+ baker actions tags delete --slug pmax # remove a custom tag (default tags can't be deleted)
2363
+
2338
2364
  baker actions link --blocker <id-or-tempId> --blocked <id-or-tempId>
2339
2365
  baker actions unlink --blocker <id> --blocked <id>
2340
2366