Star 历史趋势
数据来源: GitHub API · 生成自 Stargazers.cn
README.md

AI Marketing Skills

Open-source Claude Code skills for marketing and sales teams. Built by the team at Single Brain — 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

CategoryWhat It DoesKey Skills
Growth EngineAutonomous marketing experiments that run, measure, and optimize themselvesExperiment Engine, Pacing Alerts, Weekly Scorecard
Sales PipelineTurn anonymous website visitors into qualified pipelineRB2B Router, Deal Resurrector, Trigger Prospector, ICP Learner
Content OpsShip content that scores 90+ every timeExpert Panel, Quality Gate, Editorial Brain, Quote Miner
Growth Signal ChartsTurn original content and measured audience signals into cited social chartsContent Spikes, Recent Research, Desk Edition, PNG/PDF Exports
Content OS Portable StarterBootstrap a vendor-neutral, draft-first content control loopConfig Schema, Approval Gates, Connector Matrix, Readback Templates
Personal Strategic Signal IntelligenceTurn private reading, bookmarks, notes, and applied work into source-grounded decision intelligenceAttention Drift, Decision Court, Bookmark-to-Build, Content Negative-Space
Outbound EngineICP definition to emails in inbox — fully automatedCold Outbound Optimizer, Lead Pipeline, Competitive Monitor
SEO OpsFind the keywords your competitors missedContent Attack Briefs, GSC Optimizer, Trend Scout
Finance OpsYour AI CFO that finds hidden costs in 30 minutesCFO Briefing, Cost Estimate, Scenario Modeler
Revenue IntelligenceProve content ROI and turn sales calls into strategyGong Insight Pipeline, Revenue Attribution, Client Report Generator
Conversion OpsScore any landing page and turn survey data into lead magnetsCRO Audit, Survey-to-Lead-Magnet Engine
Podcast OpsOne episode → 20+ content pieces across every platformPodcast-to-Everything Pipeline, Content Calendar
Team OpsRuthless performance audits and meeting intelligenceElon Algorithm, Meeting-to-Action Extractor
Sidebar PrioritizerReset Codex sidebar priorities and label tasks by work category and inactivityP0–P4 Priorities, B7 Age Markers, Follow-up Evidence, Verified Labels
Sales PlaybookValue-based pricing framework that turns $10K deals into $100K dealsPre-Call Briefing, Tiered Packager, Call Analyzer, Pattern Library
AutoresearchKarpathy-inspired optimization loops for conversion content — 50+ variants, expert scoring, evolved winnersVariant Generator, Expert Panel Scorer, Evolution Engine
Deck GeneratorAI-generated slide decks with consistent visual styles in minutesImage Generator, Google Slides Builder, Style Presets
YT Competitive AnalysisFind outlier videos and packaging patterns across any YouTube channelsOutlier Detector, Title Pattern Extractor, Channel Benchmarker
YouTube PackagingCreate, render, revise, and learn from evidence-backed title-thumbnail packagesChannel Profiles, Package Scoring, Visual QA, Performance Learning
Video Content EngineDiagnose any video and route it into the strongest justified content portfolioLong-form Optimizer, Shorts Engine, Tutorial, Case Study, Paid Creative
Video AnalysisRead transcripts first and inspect video silently when visuals or timing matterTranscript Review, Demo Verification, Clip Boundaries
Agentic Video UnderstandingGoal-directed moment extraction from long video/audio via Gemini (cheaper than fixed-FPS ingest)Moment Finder, Hook Hunt, Call Mining, Loom Bar Evidence
Show-and-Tell Video SlateTurn real builds and first-party proof into ranked 15-minute video episodes before productionEvidence Inventory, Episode Scoring, Packaging Gates, Shoot Order
Shortform ProductionProduce readable shorts and deliver approved clips through the APIV5 Style, Hook Previews, Editorial Review, Metricool Delivery
Shortform Idea GrillInterview, score, and rank proof-led short-form video ideasFive-Second Hooks, Three-Second Scores, Talking Bullets, CTA Mapping
Shortform Format LibraryMaintain visual format references and match content ideas to recording outlinesContent Spikes, Creator Discovery, Freshness, Edit Briefs, Lead-Magnet Handoff
Net-New Video EditorTurn fresh talking-head recordings into reversible, review-ready vertical draftsJSON Edit Plans, FFmpeg Rendering, Captions, Hook Cards, Visual QA
X Long-Form + HumanizerWrite X articles that sound human — with a 24-pattern AI slop detectorPost Writer, Humanizer Checklist, ASCII Diagram Builder

🚀 Quick Start

Each skill category has its own README with setup instructions. The general pattern:

# 1. Clone the repo
git clone https://github.com/ericosiu/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. Copy the complete skill directory when it also contains scripts/, references/, agents/, or other bundled files. Copying only SKILL.md will leave those workflows incomplete.

# In your project directory
cp ai-marketing-skills/growth-engine/SKILL.md .claude/skills/growth-engine.md

For a bundled skill such as YouTube Packaging, install the full directory:

cp -R ai-marketing-skills/packaging-youtube-thumbnails \
  .claude/skills/packaging-youtube-thumbnails

Other agent harnesses should import the same complete directory and use its SKILL.md as the entry point. OpenAI-compatible harnesses can also read agents/openai.yaml for display metadata and the default prompt.

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
│   └── ...
├── personal-strategic-signal-intelligence/  ← Private signals → decision intelligence
│   ├── SKILL.md
│   └── README.md
├── 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 for setup
# 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
# View your local usage stats
python3 telemetry/telemetry_report.py

# Check for updates
python3 telemetry/version_check.py

See telemetry/README.md for details.


🤝 Contributing

Found a bug? Have an improvement? PRs welcome. Read 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? →

This is how we build agents at Single Brain for our clients.

Single Grain · our marketing agency

📬 Level up your marketing with 14,000+ marketers and founders → (free)

关于 About

Open-source AI marketing skills — growth experiments, sales pipeline, content ops, outbound, SEO, and finance automation

语言 Languages

Python98.6%
TypeScript1.3%
Shell0.1%
Makefile0.0%

提交活跃度 Commit Activity

代码提交热力图
过去 52 周的开发活跃度
35
Total Commits
峰值: 8次/周
Less
More

核心贡献者 Contributors