# 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.* ---