# AI Marketing Skills **Open-source Claude Code skills for marketing and sales teams.** Built by the team at [Single Brain](https://singlebrain.com/?utm_source=github&utm_medium=skill_repo&utm_campaign=ai_marketing_skills) โ€” battle-tested on real pipelines generating millions in revenue. These aren't prompts. They're complete workflows โ€” scripts, scoring algorithms, expert panels, and automation pipelines you can plug into Claude Code (or any AI coding agent) and run today. --- ## ๐Ÿ—‚๏ธ Skills | Category | What It Does | Key Skills | |----------|-------------|------------| | [**Growth Engine**](./growth-engine/) | Autonomous marketing experiments that run, measure, and optimize themselves | Experiment Engine, Pacing Alerts, Weekly Scorecard | | [**Sales Pipeline**](./sales-pipeline/) | Turn anonymous website visitors into qualified pipeline | RB2B Router, Deal Resurrector, Trigger Prospector, ICP Learner | | [**Content Ops**](./content-ops/) | Ship content that scores 90+ every time | Expert Panel, Quality Gate, Editorial Brain, Quote Miner | | [**Outbound Engine**](./outbound-engine/) | ICP definition to emails in inbox โ€” fully automated | Cold Outbound Optimizer, Lead Pipeline, Competitive Monitor | | [**SEO Ops**](./seo-ops/) | Find the keywords your competitors missed | Content Attack Briefs, GSC Optimizer, Trend Scout | | [**Finance Ops**](./finance-ops/) | Your AI CFO that finds hidden costs in 30 minutes | CFO Briefing, Cost Estimate, Scenario Modeler | | [**Revenue Intelligence**](./revenue-intelligence/) | Prove content ROI and turn sales calls into strategy | Gong Insight Pipeline, Revenue Attribution, Client Report Generator | | [**Conversion Ops**](./conversion-ops/) | Score any landing page and turn survey data into lead magnets | CRO Audit, Survey-to-Lead-Magnet Engine | | [**Podcast Ops**](./podcast-ops/) | One episode โ†’ 20+ content pieces across every platform | Podcast-to-Everything Pipeline, Content Calendar | | [**Team Ops**](./team-ops/) | Ruthless performance audits and meeting intelligence | Elon Algorithm, Meeting-to-Action Extractor | | [**Sales Playbook**](./sales-playbook/) | Value-based pricing framework that turns $10K deals into $100K deals | Pre-Call Briefing, Tiered Packager, Call Analyzer, Pattern Library | | [**Autoresearch**](./autoresearch/) | Karpathy-inspired optimization loops for conversion content โ€” 50+ variants, expert scoring, evolved winners | Variant Generator, Expert Panel Scorer, Evolution Engine | | [**Deck Generator**](./deck-generator/) | AI-generated slide decks with consistent visual styles in minutes | Image Generator, Google Slides Builder, Style Presets | | [**YT Competitive Analysis**](./yt-competitive-analysis/) | Find outlier videos and packaging patterns across any YouTube channels | Outlier Detector, Title Pattern Extractor, Channel Benchmarker | | [**X Long-Form + Humanizer**](./x-longform-post/) | Write X articles that sound human โ€” with a 24-pattern AI slop detector | Post Writer, Humanizer Checklist, ASCII Diagram Builder | --- ## ๐Ÿš€ Quick Start Each skill category has its own README with setup instructions. The general pattern: ```bash # 1. Clone the repo git clone https://github.com/singlegrain/ai-marketing-skills.git cd ai-marketing-skills # 2. Pick a category cd growth-engine # or sales-pipeline, content-ops, etc. # 3. Install dependencies pip install -r requirements.txt # 4. Set up environment variables cp .env.example .env # Edit .env with your API keys # 5. Run python experiment-engine.py create \ --hypothesis "Thread posts get 2x engagement vs single posts" \ --variable format \ --variants '["thread", "single"]' \ --metric impressions ``` --- ## ๐Ÿง  How These Work with Claude Code Every category includes a `SKILL.md` file. Drop it into your Claude Code project and the AI agent knows how to use the tools: ``` # In your project directory cp ai-marketing-skills/growth-engine/SKILL.md .claude/skills/growth-engine.md ``` Then ask Claude Code: *"Run an experiment testing carousel vs. static posts on LinkedIn"* โ€” it handles the rest. --- ## ๐Ÿ“Š What Makes These Different **These aren't toy demos.** Each skill was built to run real business operations: - **Growth Engine** uses bootstrap confidence intervals and Mann-Whitney U tests โ€” real statistics, not vibes - **Deal Resurrector** has three intelligence layers including "follow the champion" โ€” tracking departed contacts to their new companies - **ICP Learner** rewrites your ideal customer profile based on actual win/loss data โ€” your targeting improves automatically - **Expert Panel** recursively scores content with domain-specific expert personas until quality hits 90+ - **RB2B Router** does intent scoring, seniority-based company dedup, and agency classification before routing to outbound sequences --- ## ๐Ÿ“ Repository Structure ``` ai-marketing-skills/ โ”œโ”€โ”€ README.md โ† You are here โ”œโ”€โ”€ growth-engine/ โ† Autonomous experiments โ”‚ โ”œโ”€โ”€ SKILL.md โ”‚ โ”œโ”€โ”€ experiment-engine.py โ”‚ โ”œโ”€โ”€ pacing-alert.py โ”‚ โ”œโ”€โ”€ autogrowth-weekly-scorecard.py โ”‚ โ””โ”€โ”€ ... โ”œโ”€โ”€ sales-pipeline/ โ† Visitor โ†’ pipeline automation โ”‚ โ”œโ”€โ”€ SKILL.md โ”‚ โ”œโ”€โ”€ rb2b_instantly_router.py โ”‚ โ”œโ”€โ”€ deal_resurrector.py โ”‚ โ”œโ”€โ”€ trigger_prospector.py โ”‚ โ”œโ”€โ”€ icp_learning_analyzer.py โ”‚ โ””โ”€โ”€ ... โ”œโ”€โ”€ content-ops/ โ† Quality scoring & production โ”‚ โ”œโ”€โ”€ SKILL.md โ”‚ โ”œโ”€โ”€ scripts/ โ”‚ โ”œโ”€โ”€ experts/ โ† 9 expert panel definitions โ”‚ โ”œโ”€โ”€ scoring-rubrics/ โ† 5 scoring rubric templates โ”‚ โ””โ”€โ”€ ... โ”œโ”€โ”€ outbound-engine/ โ† Cold outbound automation โ”‚ โ”œโ”€โ”€ SKILL.md โ”‚ โ”œโ”€โ”€ scripts/ โ”‚ โ”œโ”€โ”€ references/ โ† ICP template, copy rules โ”‚ โ””โ”€โ”€ ... โ”œโ”€โ”€ seo-ops/ โ† SEO intelligence โ”‚ โ”œโ”€โ”€ SKILL.md โ”‚ โ”œโ”€โ”€ content_attack_brief.py โ”‚ โ”œโ”€โ”€ gsc_client.py โ”‚ โ”œโ”€โ”€ trend_scout.py โ”‚ โ””โ”€โ”€ ... โ”œโ”€โ”€ finance-ops/ โ† Financial analysis โ”‚ โ”œโ”€โ”€ SKILL.md โ”‚ โ”œโ”€โ”€ scripts/ โ”‚ โ”œโ”€โ”€ references/ โ† Metrics, rates, ROI models โ”‚ โ””โ”€โ”€ ... โ”œโ”€โ”€ revenue-intelligence/ โ† Sales call insights + attribution โ”‚ โ”œโ”€โ”€ SKILL.md โ”‚ โ”œโ”€โ”€ gong_insight_pipeline.py โ”‚ โ”œโ”€โ”€ revenue_attribution.py โ”‚ โ””โ”€โ”€ client_report_generator.py โ”œโ”€โ”€ conversion-ops/ โ† CRO + lead magnet generation โ”‚ โ”œโ”€โ”€ SKILL.md โ”‚ โ”œโ”€โ”€ cro_audit.py โ”‚ โ””โ”€โ”€ survey_lead_magnet.py โ”œโ”€โ”€ podcast-ops/ โ† Podcast โ†’ content factory โ”‚ โ”œโ”€โ”€ SKILL.md โ”‚ โ””โ”€โ”€ podcast_pipeline.py โ”œโ”€โ”€ team-ops/ โ† Performance audits + meeting intel โ”‚ โ”œโ”€โ”€ SKILL.md โ”‚ โ”œโ”€โ”€ team_performance_audit.py โ”‚ โ””โ”€โ”€ meeting_action_extractor.py โ””โ”€โ”€ sales-playbook/ โ† Value-based pricing framework โ”œโ”€โ”€ SKILL.md โ”œโ”€โ”€ value_pricing_briefing.py โ”œโ”€โ”€ value_pricing_packager.py โ”œโ”€โ”€ call_analyzer.py โ””โ”€โ”€ pricing_pattern_library.py ``` --- ## ๐Ÿ”’ Privacy & Security Every skill is built with data privacy in mind: - **PII Sanitizer** scans code and data for sensitive information before commits (`security/sanitizer.py`) - **Pre-commit hook** blocks commits containing detected PII patterns - **Configurable blocklists** for company names, person names, and custom patterns - See [`security/README.md`](./security/README.md) for setup ```bash # Scan for sensitive data python3 security/sanitizer.py --scan --dir . --recursive # Install the pre-commit hook cp security/pre-commit-hook.sh .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit ``` --- ## ๐Ÿ“ก Telemetry (Opt-In) Anonymous usage telemetry helps us understand which skills people actually use. Fully opt-in, privacy-first: - **Local logging always** โ€” see your own usage stats in `~/.ai-marketing-skills/analytics/` - **Remote reporting optional** โ€” only if you explicitly opt in on first run - **Data collected:** skill name, duration, success/fail, version, OS. Nothing else. No code, no file paths, no repo content. - **Version checks** โ€” get notified when new skills are available ```bash # View your local usage stats python3 telemetry/telemetry_report.py # Check for updates python3 telemetry/version_check.py ``` See [`telemetry/README.md`](./telemetry/README.md) for details. --- ## ๐Ÿค Contributing Found a bug? Have an improvement? PRs welcome. Read [`CONTRIBUTING.md`](./CONTRIBUTING.md) for guidelines. 1. Fork the repo 2. Create your feature branch (`git checkout -b feature/better-scoring`) 3. Run `python3 security/sanitizer.py --scan` before committing 4. Commit your changes 5. Push to the branch 6. Open a Pull Request --- ## ๐Ÿ“„ License MIT License. Use these however you want. --- *Star this repo if you find it useful. It helps others discover these tools.* ---
**๐Ÿง  [Want these built and managed for you? โ†’](https://singlebrain.com/?utm_source=github&utm_medium=skill_repo&utm_campaign=ai_marketing_skills)** *This is how we build agents at [Single Brain](https://singlebrain.com/?utm_source=github&utm_medium=skill_repo&utm_campaign=ai_marketing_skills) for our clients.* [Single Grain](https://www.singlegrain.com/?utm_source=github&utm_medium=skill_repo&utm_campaign=ai_marketing_skills) ยท our marketing agency ๐Ÿ“ฌ **[Level up your marketing with 14,000+ marketers and founders โ†’](https://levelingup.beehiiv.com/subscribe)** *(free)*