name: pp-stackadapt
description: "The first agent-native StackAdapt CLI: pacing, delivery drift Trigger phrases: check my stackadapt campaigns, which campaigns are underpacing, are my stackadapt campaigns on budget, where is my ad budget being wasted, stackadapt campaign performance, use stackadapt, run stackadapt."
author: "Dhilip Subramanian"
license: "Apache-2.0"
argument-hint: "
StackAdapt — Printing Press CLI
Prerequisites: Install the CLI
This skill drives the stackadapt-pp-cli binary. You must verify the CLI is installed before invoking any command from this skill. If it is missing, install it first:
- Install via the Printing Press installer. It defaults binaries to
$HOME/.local/binon macOS/Linux and%LOCALAPPDATA%\Programs\PrintingPress\binon Windows:npx -y @mvanhorn/printing-press-library install stackadapt --cli-only - Verify:
stackadapt-pp-cli --version - Ensure the reported install directory is on
$PATHfor the agent/runtime that will invoke this skill.
If the npx install fails (no Node, offline, etc.), fall back to a direct Go install (requires Go 1.26.3 or newer):
go install github.com/mvanhorn/printing-press-library/library/marketing/stackadapt/cmd/stackadapt-pp-cli@latest
If --version reports "command not found" after install, the runtime cannot see the binary directory on $PATH. Do not proceed with skill commands until verification succeeds.
When to Use This CLI
Use this CLI to analyze StackAdapt campaigns you already run: check pacing against budget, find under-performing or non-delivering campaigns, spot CTR/spend drift, and pull delivery reports. It is the right tool for read-only reporting and analysis, especially for agents and scripts that want JSON output.
Anti-triggers
Do not use this CLI for:
- Creating, editing, pausing, or deleting campaigns, ads, or segments — this CLI is read-only; use the StackAdapt UI or the official SDK.
- Uploading audiences or creatives — out of scope.
- Real-time bidding or pixel firing — not what this CLI does.
Unique Capabilities
These capabilities aren't available in any other tool for this API.
Pacing & delivery observatory
pacing— See which campaigns are under- or over-pacing against their budget, not just current spend.Reach for this to catch campaigns that will overspend or underdeliver before the budget cycle ends.
stackadapt-pp-cli pacing --advertiser adv_123 --agentdelivery-drift— Track CTR, CPM, and spend drift week-over-week for a campaign and flag when performance degrades.Reach for this to catch a slowly degrading campaign before it wastes budget.
stackadapt-pp-cli delivery-drift --advertiser adv_123 --days 7 --agent
Audience & efficiency
bottleneck— Rank the highest-spend campaigns by worst ROAS or CPA, with a reason column.Reach for this to find where ad budget is being wasted.
stackadapt-pp-cli bottleneck --advertiser adv_123 --agentstale-campaigns— Find active campaigns with zero delivery in the last N days.Reach for this to find live-but-not-delivering campaigns.
stackadapt-pp-cli stale-campaigns --days 14 --agent
Command Reference
graphql — Raw GraphQL query passthrough (advanced; prefer the typed commands)
stackadapt-pp-cli graphql— Execute a raw GraphQL query against the StackAdapt API
Offline store — mirror objects locally, then search and query without API calls
stackadapt-pp-cli sync— Pull advertisers, campaigns, campaign-groups, ads, and segments into a local SQLite store (--resources a,bto scope,--limit Nper resource).stackadapt-pp-cli search "<term>"— Substring-search synced objects by name or any field offline (--type <resource>to scope).stackadapt-pp-cli sql "<SELECT ...>"— Run a read-only SQL query against the store'sresourcestable (resource_type, id, name, data JSON, synced_at). Mutating statements are rejected.- Any list command accepts
--data-source local(store only) or--data-source auto(live, store fallback when the API is unreachable).
Finding the right command
When you know what you want to do but not which command does it, ask the CLI directly:
stackadapt-pp-cli which "<capability in your own words>"
which resolves a natural-language capability query to the best matching command from this CLI's curated feature index. Exit code 0 means at least one match; exit code 2 means no confident match — fall back to --help or use a narrower query.
Recipes
Find under-pacing campaigns
stackadapt-pp-cli pacing --advertiser adv_123 --agent
Returns each campaign's pace (actual vs expected spend) so you can fix budget delivery before the cycle ends.
Catch a degrading campaign
stackadapt-pp-cli delivery-drift --advertiser adv_123 --days 7 --agent
Shows CTR/CPM/spend drift week-over-week and flags when performance slips.
Trim a verbose report for an agent
stackadapt-pp-cli report campaign-delivery --days 30 --agent --select records.campaign_name,records.metrics.cost,records.metrics.ctr
Delivery reports are large; --select with dotted paths returns only the fields an agent needs, saving context.
Find where budget is wasted
stackadapt-pp-cli bottleneck --advertiser adv_123 --agent
Ranks high-spend campaigns by worst ROAS/CPA with a reason column.
Auth Setup
This CLI uses the StackAdapt GraphQL API, which needs a GraphQL API token (the legacy REST key will not work). To get set up:
- Ask your StackAdapt account manager for a GraphQL API token if you do not have one.
- Export it so the CLI can read it:
export STACKADAPT_API_TOKEN=your-token - Run
stackadapt-pp-cli doctorto confirm it connects.
The token is sent as Authorization: Bearer <token>. The CLI is read-only and never modifies your campaigns.
Agent Mode
Add --agent to any command. Expands to: --json --compact --no-input --no-color --yes.
Pipeable — JSON on stdout, errors on stderr
Filterable —
--selectkeeps a subset of fields. Dotted paths descend into nested structures; arrays traverse element-wise. Critical for keeping context small on verbose APIs:stackadapt-pp-cli graphql --query example-value --agent --select id,name,statusPreviewable —
--dry-runshows the request without sendingNon-interactive — never prompts, every input is a flag
Read-only — do not use this CLI for create, update, delete, publish, comment, upvote, invite, order, send, or other mutating requests
Agent Feedback
When you (or the agent) notice something off about this CLI, record it:
stackadapt-pp-cli feedback "the --since flag is inclusive but docs say exclusive"
stackadapt-pp-cli feedback --stdin < notes.txt
stackadapt-pp-cli feedback list --json --limit 10
Entries are stored locally at ~/.local/share/stackadapt-pp-cli/feedback.jsonl. They are never POSTed unless STACKADAPT_FEEDBACK_ENDPOINT is set AND either --send is passed or STACKADAPT_FEEDBACK_AUTO_SEND=true. Default behavior is local-only.
Write what surprised you, not a bug report. Short, specific, one line: that is the part that compounds.
Output Delivery
Every command accepts --deliver <sink>. The output goes to the named sink in addition to (or instead of) stdout, so agents can route command results without hand-piping. Three sinks are supported:
| Sink | Effect |
|---|---|
stdout |
Default; write to stdout only |
file:<path> |
Atomically write output to <path> (tmp + rename) |
webhook:<url> |
POST the output body to the URL (application/json or application/x-ndjson when --compact) |
Unknown schemes are refused with a structured error naming the supported set. Webhook failures return non-zero and log the URL + HTTP status on stderr.
Named Profiles
A profile is a saved set of flag values, reused across invocations. Use it when a scheduled agent calls the same command every run with the same configuration - HeyGen's "Beacon" pattern.
stackadapt-pp-cli profile save briefing --json
stackadapt-pp-cli --profile briefing graphql --query example-value
stackadapt-pp-cli profile list --json
stackadapt-pp-cli profile show briefing
stackadapt-pp-cli profile delete briefing --yes
Explicit flags always win over profile values; profile values win over defaults. agent-context lists all available profiles under available_profiles so introspecting agents discover them at runtime.
Exit Codes
| Code | Meaning |
|---|---|
| 0 | Success |
| 2 | Usage error (wrong arguments) |
| 3 | Resource not found |
| 4 | Authentication required |
| 5 | API error (upstream issue) |
| 7 | Rate limited (wait and retry) |
| 10 | Config error |
Argument Parsing
Parse $ARGUMENTS:
- Empty,
help, or--help→ showstackadapt-pp-cli --helpoutput - Starts with
install→ ends withmcp→ MCP installation; otherwise → see Prerequisites above - Anything else → Direct Use (execute as CLI command with
--agent)
MCP Server Installation
- Install the MCP server:
go install github.com/mvanhorn/printing-press-library/library/marketing/stackadapt/cmd/stackadapt-pp-mcp@latest - Register with Claude Code:
claude mcp add stackadapt-pp-mcp -- stackadapt-pp-mcp - Verify:
claude mcp list
Direct Use
- Check if installed:
which stackadapt-pp-cliIf not found, offer to install (see Prerequisites at the top of this skill). - Match the user query to the best command from the Unique Capabilities and Command Reference above.
- Execute with the
--agentflag:stackadapt-pp-cli <command> [subcommand] [args] --agent - If ambiguous, drill into subcommand help:
stackadapt-pp-cli <command> --help.