@koda-sl/baker-cli 0.193.0 → 0.194.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 +13 -2
- package/dist/cli.js +717 -372
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -777,6 +777,12 @@ baker ads meta ads --account-id act_123 --all-statuses # widen to
|
|
|
777
777
|
baker ads meta creatives --creative-id 9988
|
|
778
778
|
baker ads meta preview --creative-id 9988 --ad-format MOBILE_FEED_STANDARD --out-file /tmp/p.html
|
|
779
779
|
|
|
780
|
+
# "Why does it show as a still image in one placement?"
|
|
781
|
+
baker ads meta insights --object 9988 --level ad --intent video \
|
|
782
|
+
--breakdowns publisher_platform,platform_position --date-preset last_30d # one ad only: hints flag placements playing far below the ad's own rate
|
|
783
|
+
baker ads meta preview --creative-id 9988 --placement facebook_reels_overlay --platform facebook
|
|
784
|
+
baker ads meta preview --list-formats # ad_format values + placement mappings
|
|
785
|
+
|
|
780
786
|
# "What audience is this targeting?"
|
|
781
787
|
baker ads meta audiences --account-id act_123
|
|
782
788
|
|
|
@@ -847,10 +853,15 @@ creatives # list per account, or fetch single via --creative-id
|
|
|
847
853
|
audiences # custom audiences (incl. lookalikes)
|
|
848
854
|
pixels # list, or --stats for one --pixel-id (see "Restricted pixel fields")
|
|
849
855
|
activities # account audit log, ~90d retention
|
|
850
|
-
insights # see "Smart defaults" above
|
|
851
|
-
|
|
856
|
+
insights # see "Smart defaults" above; a single-ad placement breakdown returns hints
|
|
857
|
+
# naming placements playing far below that ad's own play rate — or saying
|
|
858
|
+
# none is, which it never leaves unsaid
|
|
859
|
+
preview # iframe HTML for a creative or ad in a given ad_format, or in the
|
|
860
|
+
# placement an insights breakdown reported (--placement, --list-formats)
|
|
852
861
|
```
|
|
853
862
|
|
|
863
|
+
Placement diagnostics deliberately stop at evidence. `insights` names a suspect placement with its share of delivery, `preview` shows what Meta renders there, and neither asserts *why* — Meta documents an eligibility error for a video creative in a video-incompatible placement, not a silent fallback to the cover frame. Ad-set writes that pin placements warn about the learning-phase reset, and a placement set missing the `feed` Meta requires alongside `marketplace`/`search`/`profile_feed`/`notification` is rejected at stage time.
|
|
864
|
+
|
|
854
865
|
The HTTP backend exposes more endpoints (catalogs, ad-studies, ad-images, labels, high-demand-periods, raw currency lookup). They're intentionally not surfaced as CLI commands because AI agents rarely need them. Hit them via curl against `/api/ads/meta/*` if needed.
|
|
855
866
|
|
|
856
867
|
#### Auth + caching
|