- 📄 __init__.py
- 📄 adrecs_skill.py
- 📄 example.py
Query the ADReCS (Adverse Drug Reaction Classification System) v3.3 database. Use whenever the user asks about adverse drug reactions, drug safety profiles, ADR classification, ADR severity/frequency, or wants to look up any entity (drug name, BADD Drug ID, DrugBank ID, ATC code, CAS RN, PubChem CID, KEGG ID, ADR term, ADReCS ID, MedDRA code, MeSH ID) in ADReCS. --- # ADReCS Query Skill Search ADReCS v3.3 records by any entity. Auto-detects type by prefix: | Input Pattern | Detected As | Example | |---|---|---| | `BADD_D00142` | BADD Drug ID | exact on drug_id column | | `DB00945` | DrugBank ID | resolved via Drug_information | | `A02BC01` | ATC code | resolved via Drug_information | | `50-78-2` | CAS RN | resolved via Drug_information | | `CID2244` or bare digits | PubChem CID | resolved via Drug_information | | `D00109` (5-digit) | KEGG ID | resolved via Drug_information | | `08.06.02.001` | ADReCS ID | substring on ADReCS_ID column | | `10003781` (8-digit) | MedDRA code | resolved via ADR_ontology | | `D######` (6+ digit) | MeSH ID | resolved via ADR_ontology | | anything else | free text | substring on drug_name OR ADR_term | ## API | Function | Input | Returns | |---|---|---| | `load_drug_adr(path)` | txt path | DataFrame (Drug–ADR pairs) | | `load_drug_info(path)` | xlsx path | DataFrame (drug metadata) | | `load_adr_ontology(path)` | xlsx path | DataFrame (ADR hierarchy) | | `search(entity)` | single entity string | DataFrame of matching Drug–ADR rows | | `search_batch(entities)` | list of entity strings | dict[str, DataFrame] | | `summarize(hits, entity)` | DataFrame + label | compact LLM-readable text | | `to_json(hits)` | DataFrame | list[dict] | ## Usage See `if __name__ == "__main__"` block in `62_ADReCS.py` for runnable examples covering: drug name lookup, BADD Drug ID, DrugBank ID, ADR term, ADReCS ID prefix, batch search, and JSON output. ## Data - **Source**: ADReCS v3.3 — [https://www.bio-add.org/ADReCS/](https://www.bio-add.org/ADReCS/) - **Primary
- 📁 evals/
- 📁 references/
- 📄 SKILL.md
Google Ads account audit and business context setup. Run this first — it gathers business information, analyzes account health, and saves context that all other ads skills reuse. Trigger on "audit my ads", "ads audit", "set up my ads", "onboard", "account overview", "how's my account", "ads health check", "what should I fix in my ads", or when the user is new to AdsAgent and hasn't run an audit before. Also trigger proactively when other ads skills detect that business-context.json is missing.
Manage ad campaigns across Google Ads, Meta Ads, LinkedIn Ads, and TikTok Ads. Use when the user wants to analyze campaign performance, research keywords, create campaigns, optimize budgets, or manage ad accounts via the Adspirer MCP server.
Full multi-platform paid advertising audit with parallel subagent delegation. Analyzes Google Ads, Meta Ads, LinkedIn Ads, TikTok Ads, and Microsoft Ads accounts. Generates health score per platform and aggregate score. Use when user says "audit", "full ad check", "analyze my ads", "account health check", or "PPC audit". --- # Full Multi-Platform Ads Audit ## Process 1. **Collect account data** — request exports, screenshots, or API access 2. **Detect business type** — analyze account signals per ads orchestrator 3. **Identify active platforms** — determine which platforms are in use 4. **Delegate to subagents** (if available, otherwise run inline sequentially): - `audit-google` — Conversion tracking, wasted spend, structure, keywords, ads, settings (G01-G74) - `audit-meta` — Pixel/CAPI health, creative fatigue, structure, audience (M01-M46) - `audit-creative` — LinkedIn, TikTok, Microsoft creative checks + cross-platform synthesis - `audit-tracking` — LinkedIn, TikTok, Microsoft tracking + cross-platform tracking health - `audit-budget` — LinkedIn, TikTok, Microsoft budget/bidding + cross-platform allocation - `audit-compliance` — All-platform compliance, settings, performance benchmarks 5. **Score** — calculate per-platform and aggregate Ads Health Score (0-100) 6. **Report** — generate prioritized action plan with Quick Wins ## Data Collection Ask the user for available data. Accept any combination: - Google Ads: account export, Change History, Search Terms Report - Meta Ads: Ads Manager export, Events Manager screenshot, EMQ scores - LinkedIn Ads: Campaign Manager export, Insight Tag status - TikTok Ads: Ads Manager export, Pixel/Events API status - Microsoft Ads: account export, UET tag status, import validation results If no exports available, audit from screenshots or manual data entry. ## Scoring Read `ads/references/scoring-system.md` for full algorithm. ### Per-Platform Weights | Platform | Category Weights | |----------|-----------------| | Google | Conve
Design static ad creatives for social media and display advertising campaigns.