AI Navigate

ゼロから最初のアフィリエイト報酬までを実現する32のAIスキルをオープンソース化

Dev.to / 2026/3/16

📰 ニュースTools & Practical Usage

要点

  • 著者は Claude Code 用の32のAI搭載スキルをオープンソース化し、リサーチ、コンテンツ、ブログ、ランディングページ、流通、分析、自動化、コンプライアンスを含む、全体のアフィリエイトファネルを自動化します。
  • スキルは8つの段階に整理され、出力が互いに連携して S1 リサーチから S8 メタまでのパイプラインを形成します。
  • 各スキルは単一の Markdown ファイル(SKILL.md)として提供され、MITライセンスの下で公開され、1回の貼り付けインストール方式で利用可能です。
  • このプロジェクトは、アフィリエイトマーケティングの推測をデータ主導・AI支援のワークフローへ置換し、マーケターの効率と転換成果の向上を目指します。

ほとんどのアフィリエイトマーケターは、雰囲気でプログラムを選び、推測でコンテンツを作成し、実際に何が成約につながるのか全く理解していない。

私はそれを変えるシステムを作った――完全なアフィリエイトファネルを処理する、Claude Code のための32のAI搭載スキルが、研究、コンテンツ、ブログ、ランディングページ、配布、分析、自動化、コンプライアンスを扱います。

オープンソース。MITライセンス。インストールは1回のペーストで完了します。

問題

アフィリエイトマーケティングを試したことがあるなら、これはお馴染みのはずです:

  • あなたは「best affiliate programs」を Google で検索し、役立つのではなく、ランキングのためのSEOスパムが表示される。
  • ブログのレビューを書き、CTA、見出し、または開示情報が良いかどうかを推測する。
  • どのコンテンツが実際にクリックを生むのか全く見当がつかず、ただ祈るだけ。
  • 0.2%のコンバージョン率のランディングページに4時間を費やす。
  • データではなく雰囲気でプログラムを選ぶ。

解決策: 8段階、32のスキル

各スキルは単一のMarkdownファイル(SKILL.md)で、Claude に特定のアフィリエイトマーケティングタスクについてどう考えるべきかを正確に示します。スキルは連結され—あるスキルの出力が自動的に次のスキルへ渡されます。

S1 RESEARCH ──▶ S2 CONTENT ──▶ S3 BLOG ──▶ S4 LANDING
     │                                         │
     ▼                                         ▼
S6 ANALYTICS ◀──────── S5 DISTRIBUTION ◀──────┘
     │
     ▼
S7 AUTOMATION ──▶ SCALE
     │
S8 META (plan, comply, improve) ── across all stages

各段階の役割

段階 スキル 機能
S1: Research affiliate-program-search, niche-opportunity-finder, competitor-spy, commission-calculator 宣伝する最適なプログラムを見つけて評価する
S2: Content viral-post-writer, twitter-thread-writer, reddit-post-writer, tiktok-script-writer クリックを生み出すバイラルなソーシャルメディアコンテンツを作成する
S3: Blog affiliate-blog-builder, comparison-post-writer, listicle-generator, how-to-tutorial-writer 長文のSEO最適化記事を作成してランキングとコンバージョンを狙う
S4: Landing landing-page-creator, product-showcase-page, squeeze-page-builder, webinar-registration-page 純粋なHTML/CSSで高い転換率のページを作成
S5: Distribution bio-link-deployer, email-drip-sequence, social-media-scheduler, github-pages-deployer コンテンツを公開・配布する
S6: Analytics conversion-tracker, ab-test-generator, performance-report, seo-audit 追跡・測定・最適化
S7: Automation email-automation-builder, content-repurposer, multi-program-manager, paid-ad-copy-writer 機能しているものを拡大・スケールさせる
S8: Meta skill-finder, funnel-planner, compliance-checker, self-improver 計画立案、FTCコンプライアンス、振り返り

The CLI: affiliate-check

このリポジトリには、list.affitor.com から最新のプログラムデータを照会する CLI ツールも同梱されています:

$ affiliate-check search "AI video"

Name                      Commission           Cookie     Stars
─────────────────────────────────────────────────────────────────
HeyGen                    20% recurring        60 days    ★ 127
Synthesia                 25% one-time         30 days    ★ 84
Fliki                     30% recurring        30 days    ★ 52

One command. Real-time data. No SEO spam.

Other commands:

affiliate-check top                         # Top programs by stars
affiliate-check info heygen                 # Detailed program card
affiliate-check compare heygen synthesia    # Side-by-side comparison
affiliate-check status                      # Server status

It runs as a persistent daemon (Bun) — first call starts it, subsequent calls are instant. Free tier works without an API key (max 5 results). Get unlimited access at list.affitor.com/settings.

Demo: Zero to First Commission

You:   I want to promote AI video tools. What's the best program?

       affiliate-check search "AI video"

Claude: HeyGen is the clear winner: highest commission, recurring,
        longest cookie. Let me research it in depth.

You:   Write a blog review of HeyGen for content creators.

Claude: [runs affiliate-blog-builder skill]
        [2,000-word SEO review with pros/cons, comparison table,
         FTC disclosure, and affiliate CTA]

You:   Create a landing page for this.

Claude: [runs landing-page-creator skill]
        [single-file HTML/CSS page, AIDA framework, mobile-responsive,
         ready to deploy]

You:   Plan my full funnel — I have 5 hours/week.

Claude: [runs funnel-planner skill]

        Week 1: Research → select 2-3 programs
        Week 2: Content → 5 LinkedIn + Twitter posts
        Week 3: Blog → 1 review article
        Week 4: Deploy → bio link page live
        Week 5: Analytics → fix SEO issues
        Week 6: Optimize → test headlines

How it works

Each skill defines:

  • When to trigger — natural language patterns that activate the skill
  • Input/Output schemas — structured data for agent interop
  • Workflow — step-by-step procedure with decision points
  • Chaining — how outputs from one skill feed into the next

Skills pass data through conversation context, not files. Run S1 to find a program, then S2 uses that program's data automatically — no copy-pasting.

Entry points

You don't have to start from S1. Jump in wherever you are:

  • New to affiliate marketing: S8 funnel-planner → it plans everything
  • Have a product already: S2 (write content) or S3 (write a review)
  • Have content, need pages: S4 (landing page) or S5 (bio link)
  • Want to optimize: S6 (analytics + SEO audit)
  • Ready to scale: S7 (automation + paid ads)
  • Not sure which skill: S8 skill-finder

Install

Requirements: Claude Code, Git, Bun v1.0+ (for CLI).

Open Claude Code and paste this:

Install affiliate-skills: run git clone https://github.com/Affitor/affiliate-skills.git ~/.claude/skills/affiliate-skills && cd ~/.claude/skills/affiliate-skills && ./setup then add an "affiliate-skills" section to CLAUDE.md listing the 32 available skills across 8 stages.

Inspiration

This project is inspired by @garrytan's gstack (14K+ stars) — same pattern: skills + CLI tool + manifesto README.

gstack gave Claude Code dev superpowers. affiliate-skills gives it marketing superpowers.

Links

MITライセンス。寄稿歓迎。

Affitor によって作成。もし役に立つと感じたら、GitHub でスターをお願いします ⭐