mcpbeat Sign in

Algo Ad Bidding Agent Skill

Implement and select ad bidding strategies from manual CPC to automated target-CPA and target-ROAS. Use this skill when the user needs to choose a bidding strategy, set up automated bidding, or optimize bid parameters — even if they say 'what bidding strategy should I use', 'target CPA setup', or 'smart bidding configuration'.

8k tokens
context cost
the whole folder, loaded on every use
4
files
instructions only
0
copies elsewhere
how many repositories repackaged it
223
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/asgard-ai-platform/skills --skill algo-ad-bidding

What comes with it

26 236 bytes besides the instruction
examples/sample_scenario.md
references/learning-period.md
references/migration-playbook.md

The instruction itself

14 sections, as written by the author

Ad Bidding Strategies

Overview

Bidding strategies determine how much an advertiser pays per auction. Range from manual CPC (full control) to automated strategies (Target CPA, Target ROAS, Maximize Conversions) that use ML to optimize bids in real-time based on contextual signals.

When to Use

Trigger conditions:

  • Choosing between manual and automated bidding strategies
  • Setting up or troubleshooting Target CPA / Target ROAS campaigns
  • Analyzing bid strategy performance and making adjustments

When NOT to use:

  • When designing the auction mechanism itself (use GSP/VCG)
  • When building a CTR prediction model (use CTR prediction skill)

Algorithm

IRON LAW: Automated Bidding Requires SUFFICIENT Conversion Data
Below ~30 conversions/month, the algorithm lacks signal and performs
WORSE than manual bidding. Strategy selection depends on data volume:
- < 30 conv/month: Manual CPC or Maximize Clicks
- 30-50 conv/month: Maximize Conversions
- 50+ conv/month: Target CPA
- 50+ conv/month + revenue data: Target ROAS

Phase 1: Input Validation

Assess: monthly conversion volume, conversion tracking accuracy, campaign budget, business goal (volume vs efficiency vs revenue).

Gate: Conversion tracking verified, sufficient data for chosen strategy.

Phase 2: Core Algorithm

Manual CPC: Set bid per keyword. Adjust based on: device, time, location, audience performance data.

Target CPA: 1. Set target cost-per-acquisition. 2. Algorithm predicts conversion probability per auction using contextual signals. 3. Bids up for high-probability conversions, down for low. 4. Aims to average at target CPA over time.

Target ROAS: Same as CPA but optimizes for return on ad spend = conversion_value / cost.

Phase 3: Verification

Monitor: actual CPA vs target, conversion volume stability, impression share changes, budget utilization.

Gate: Actual CPA within 20% of target after learning period (2-4 weeks).

Phase 4: Output

Return strategy recommendation with expected performance ranges.

Output Format

{
  "recommendation": {"strategy": "target_cpa", "target": 500, "currency": "TWD", "confidence": "high"},
  "expected_performance": {"cpa_range": [400, 600], "volume_change": "-10% to +15%"},
  "metadata": {"monthly_conversions": 85, "current_cpa": 550, "learning_period_days": 14}
}

Examples

Sample I/O

Input: E-commerce campaign, 120 conversions/month, current CPA=NT$450, goal: maintain CPA, increase volume

Expected: Target CPA at NT$450. Expected: volume +10-20% as algorithm finds efficient auctions.

Edge Cases

| Input | Expected | Why |

|-------|----------|-----|

| 10 conversions/month | Manual CPC | Insufficient data for automation |

| Target CPA too aggressive | Volume drops to near zero | Algorithm can't find profitable auctions |

| Conversion tracking broken | All strategies fail | Garbage data → garbage optimization |

Gotchas

  • Learning period volatility: First 2 weeks after switching strategies show unstable performance. Don't change targets during this period.
  • Conversion delay: If conversions take days to attribute (e.g., B2B), the algorithm optimizes on stale data. Use conversion modeling or extend the attribution window.
  • Budget as a constraint: Target CPA won't spend if it can't hit the target. Setting an aggressive CPA with a large budget doesn't increase spend — it just saves money.
  • Micro-conversions: If training on a proxy conversion (add to cart) instead of final purchase, the algorithm optimizes for the proxy. Ensure the tracked conversion aligns with business value.
  • Seasonality shocks: Automated bidding learns from recent data. Black Friday, holidays, or competitive events can throw it off. Use seasonality adjustments.

References

  • For bid strategy migration playbook, see references/migration-playbook.md
  • For learning period best practices, see references/learning-period.md

Other skills for the same job

different authors, same section of the catalogue
Protocolsio Integration
by christophacham
×4

Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.

16k tokens
Tailored Resume Generator
by frostant
×4

Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances

3k tokens
Excalidraw Diagram Generator
by github
vendor ×3

Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.

36k tokens scripts
Expo Dev Client
by openai
vendor ×3

Build and distribute Expo development clients locally or via TestFlight

961 tokens
Executing Plans
by ZhanlinCui
×3

Use when you have a written implementation plan to execute in a separate session with review checkpoints

542 tokens
Anndata
by christophacham
×3

Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.

16k tokens
Benchling Integration
by christophacham
×3

Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.

14k tokens
Biopython
by christophacham
×3

Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.

24k tokens

How to use it

Copy the folder

Take asgard-ai-platform/algo-ad-bidding from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.