/affiliate-program-search
Research and evaluate affiliate programs to find the best ones to promote. Use this skill when the user asks anything about finding affiliate programs, comparing commission rates, evaluating affiliate opportunities, searching for products to promote, picking a niche, or mentions
$ npx -y skills add Affitor/affiliate-skills --skill affiliate-program-search --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/affiliate-program-search
Context preview
The summary Claude sees to decide when to auto-load this skill.
Research and evaluate affiliate programs to find the best ones to promote. Use this skill when the user asks anything about finding affiliate programs, comparing commission rates, evaluating affiliate opportunities, searching for products to promote, picking a niche, or mentions
SKILL.md
affiliate-program-search.SKILL.mdname: affiliate-program-search
description: >
Research and evaluate affiliate programs to find the best ones to promote.
Use this skill when the user asks anything about finding affiliate programs,
comparing commission rates, evaluating affiliate opportunities, searching for
products to promote, picking a niche, or mentions openaffiliate.dev.
Also trigger for: "which SaaS should I promote", "best affiliate programs for X",
"high commission programs", "recurring commission affiliate", "compare these
affiliate programs", "is X affiliate program worth it", "find me something to promote",
"what pays the most", "affiliate programs with long cookie duration".
license: MIT
version: "1.0.0"
tags: ["affiliate-marketing", "research", "niche-analysis", "program-discovery", "saas", "commission"]
compatibility: "Claude Code, ChatGPT, Gemini CLI, Cursor, Windsurf, OpenClaw, any AI agent"
metadata:
author: affitor
version: "1.0"
stage: S1-Research
Affiliate Program Search
Help affiliate marketers research, evaluate, and pick winning programs to promote. Data source: [openaffiliate.dev](https://openaffiliate.dev) — open affiliate program directory. Public API, no key required.
Stage
This skill belongs to Stage S1: Research
When to Use
- User wants to find affiliate programs to promote
- User wants to compare two or more affiliate programs
- User asks about commission rates, cookie duration, or earning potential
- User mentions openaffiliate.dev
- User is new to affiliate marketing and needs a starting point
Input Schema
{
niche: string # (optional, default: "AI/SaaS tools") Category or niche interest
commission_pref: string # (optional, default: "recurring, 20%+") Commission preference
audience: string # (optional, default: "content creators") Target audience type
platform: string # (optional, default: "any") Platform they'll promote on
compare: string[] # (optional) Specific programs to compare head-to-head
}Workflow
Step 1: Understand What the User Wants
Ask (if not clear from context):
- Niche/category interest? (AI tools, SEO, video, writing, automation...)
- Commission preference? (recurring vs one-time, minimum %)
- Audience type? (developers, marketers, beginners, enterprise...)
- Platform they'll promote on? (blog, LinkedIn, YouTube, X...)
If user says "just find me something good" → default to: AI/SaaS tools, recurring commission, 20%+, content creator audience.
Step 2: Search openaffiliate.dev
See `references/openaffiliate-api.md` for integration methods.
Two methods available:
- **API (preferred):** `GET https://openaffiliate.dev/api/programs?q=<term>` — public, no auth needed, structured data
- **Web fetch (fallback):** `web_search "site:openaffiliate.dev [category]"` then `web_fetch` the page
Extract for each program: `name`, `reward_value`, `reward_type`, `cookie_days`, `stars_count`, `tags`, `description`.
Step 3: Score Programs
Apply the scoring framework from `references/scoring-criteria.md`.
Score each program on 5 dimensions (1-10 scale): 1. **Earning Potential** (30%) — commission %, recurring vs one-time, product price 2. **Content Potential** (25%) — visual demo, free tier, content angles 3. **Market Demand** (20%) — search volume, trend direction, market size 4. **Competition Level** (15%) — fewer affiliates promoting = higher score 5. **Trust Factor** (10%) — product quality, reputation, stars on openaffiliate.dev
Overall = weighted average. Verdict: 7.5+ "Strong Pick" / 5.5-7.4 "Worth Testing" / <5.5 "Skip".
For dimensions that require external data (Market Demand, Competition Level), use `web_search` to check Google results count for "[product] review" and "[product] affiliate" queries.
Step 4: Present Recommendation
Step 5: Self-Validation
Before presenting output, verify:
- [ ] All scored programs have `reward_value` from API data, not hallucinated
- [ ] `cookie_days` is numeric and from API response
- [ ] Top Pick verdict matches score threshold (≥7.5 = Strong Pick, ≥6 = Worth Considering)
- [ ] Market Demand and Competition scores cite the search query used
- [ ] Stale data (>6 months) is flagged with warning
If any check fails, fix the output before delivering. Do not flag the checklist to the user — just ensure the output passes.
Output Schema
Other skills (viral-post-writer, affiliate-blog-builder, etc.) consume these fields from conversation context:
{
output_schema_version: "1.0.0" # Semver — bump major on breaking changes
recommended_program: {
name: string # "HeyGen"
slug: string # "heygen"
reward_value: string # "30%"
reward_type: string # "cps_recurring"
reward_duration: string # "12 months"
cookie_days: number # 60
description: string # Short product description
tags: string[] # ["ai", "video"]
url: string # Product website
}
score: {
overall: number # 8.2
verdict: string # "Strong Pick"
reasoning: string # Why this is the top pick
}
runner_up: Program | null # Same structure, second choice
all_scored: ProgramScore[] # Full list of scored programs
}Output Format
## Programs Found
| Program | Commission | Type | Cookie | Stars | Score |
|---------|-----------|------|--------|-------|-------|
| HeyGen | 30% | Recurring | 60d | ⭐ 42 | 8.2/10 |
| ... | ... | ... | ... | ... | .../10 |
## Top Pick: [Program Name]
**Why:** [2-3 sentences explaining why this is the best fit]
| Dimension | Score | Note |
|-----------|-------|------|
| Earning Potential | 8/10 | 30% recurring on $24-48/mo |
| Content Potential | 9/10 | Visual AI video, easy to demo |
| Market Demand | 8/10 | AI video trending, high search volume |
| Competition | 6/10 | Growing number of affiliates |
| Trust Factor | 8/10 | Strong brand, 42 st
Read more
name: affiliate-program-search description: > Research and evaluate affiliate programs to find the best ones to promote. Use this skill when the user asks anything about finding affiliate programs, comparing commission rates, evaluating affiliate opportunities, searching for products to promote, picking a niche, or mentions openaffiliate.dev. Also trigger for: "which SaaS should I promote", "best affiliate programs for X", "high commission programs", "recurring commission affiliate", "compare these affiliate programs", "is X affiliate program worth it", "find me something to promote", "what pays the most", "affiliate programs with long cookie duration". license: MIT version: "1.0.0" tags: ["affiliate-marketing", "research", "niche-analysis", "program-discovery", "saas", "commission"] compatibility: "Claude Code, ChatGPT, Gemini CLI, Cursor, Windsurf, OpenClaw, any AI agent" metadata: author: affitor version: "1.0" stage: S1-Research
Affiliate Program Search
Help affiliate marketers research, evaluate, and pick winning programs to promote. Data source: [openaffiliate.dev](https://openaffiliate.dev) — open affiliate program directory. Public API, no key required.
Stage
This skill belongs to Stage S1: Research
When to Use
- User wants to find affiliate programs to promote
- User wants to compare two or more affiliate programs
- User asks about commission rates, cookie duration, or earning potential
- User mentions openaffiliate.dev
- User is new to affiliate marketing and needs a starting point
Input Schema
{
niche: string # (optional, default: "AI/SaaS tools") Category or niche interest
commission_pref: string # (optional, default: "recurring, 20%+") Commission preference
audience: string # (optional, default: "content creators") Target audience type
platform: string # (optional, default: "any") Platform they'll promote on
compare: string[] # (optional) Specific programs to compare head-to-head
}Workflow
Step 1: Understand What the User Wants
Ask (if not clear from context):
- Niche/category interest? (AI tools, SEO, video, writing, automation...)
- Commission preference? (recurring vs one-time, minimum %)
- Audience type? (developers, marketers, beginners, enterprise...)
- Platform they'll promote on? (blog, LinkedIn, YouTube, X...)
If user says "just find me something good" → default to: AI/SaaS tools, recurring commission, 20%+, content creator audience.
Step 2: Search openaffiliate.dev
See `references/openaffiliate-api.md` for integration methods.
Two methods available:
- **API (preferred):** `GET https://openaffiliate.dev/api/programs?q=<term>` — public, no auth needed, structured data
- **Web fetch (fallback):** `web_search "site:openaffiliate.dev [category]"` then `web_fetch` the page
Extract for each program: `name`, `reward_value`, `reward_type`, `cookie_days`, `stars_count`, `tags`, `description`.
Step 3: Score Programs
Apply the scoring framework from `references/scoring-criteria.md`.
Score each program on 5 dimensions (1-10 scale): 1. **Earning Potential** (30%) — commission %, recurring vs one-time, product price 2. **Content Potential** (25%) — visual demo, free tier, content angles 3. **Market Demand** (20%) — search volume, trend direction, market size 4. **Competition Level** (15%) — fewer affiliates promoting = higher score 5. **Trust Factor** (10%) — product quality, reputation, stars on openaffiliate.dev
Overall = weighted average. Verdict: 7.5+ "Strong Pick" / 5.5-7.4 "Worth Testing" / <5.5 "Skip".
For dimensions that require external data (Market Demand, Competition Level), use `web_search` to check Google results count for "[product] review" and "[product] affiliate" queries.
Step 4: Present Recommendation
Step 5: Self-Validation
Before presenting output, verify:
- [ ] All scored programs have `reward_value` from API data, not hallucinated
- [ ] `cookie_days` is numeric and from API response
- [ ] Top Pick verdict matches score threshold (≥7.5 = Strong Pick, ≥6 = Worth Considering)
- [ ] Market Demand and Competition scores cite the search query used
- [ ] Stale data (>6 months) is flagged with warning
If any check fails, fix the output before delivering. Do not flag the checklist to the user — just ensure the output passes.
Output Schema
Other skills (viral-post-writer, affiliate-blog-builder, etc.) consume these fields from conversation context:
{
output_schema_version: "1.0.0" # Semver — bump major on breaking changes
recommended_program: {
name: string # "HeyGen"
slug: string # "heygen"
reward_value: string # "30%"
reward_type: string # "cps_recurring"
reward_duration: string # "12 months"
cookie_days: number # 60
description: string # Short product description
tags: string[] # ["ai", "video"]
url: string # Product website
}
score: {
overall: number # 8.2
verdict: string # "Strong Pick"
reasoning: string # Why this is the top pick
}
runner_up: Program | null # Same structure, second choice
all_scored: ProgramScore[] # Full list of scored programs
}Output Format
## Programs Found | Program | Commission | Type | Cookie | Stars | Score | |---------|-----------|------|--------|-------|-------| | HeyGen | 30% | Recurring | 60d | ⭐ 42 | 8.2/10 | | ... | ... | ... | ... | ... | .../10 | ## Top Pick: [Program Name] **Why:** [2-3 sentences explaining why this is the best fit] | Dimension | Score | Note | |-----------|-------|------| | Earning Potential | 8/10 | 30% recurring on $24-48/mo | | Content Potential | 9/10 | Visual AI video, easy to demo | | Market Demand | 8/10 | AI video trending, high search volume | | Competition | 6/10 | Growing number of affiliates | | Trust Factor | 8/10 | Strong brand, 42 st
Turn any AI into your affiliate marketing team. 52 AI-powered skills across 8 stages with a closed-loop flywheel.
Other skills on affiliate-skills.
- /ab-test-generator
Generate A/B test variants for affiliate content. Triggers on: "create A/B test", "test my headline", "optimize my CTA", "generate variants", "split test ideas", "improve click-through rate", "test my landing page copy", "headline alternatives", "CTA variations", "which version
Open skill - /conversion-tracker
Set up affiliate conversion tracking with UTM parameters and link tagging. Triggers on: "set up tracking", "create UTM links", "track my affiliate links", "tracking pixels", "click attribution", "organize my links", "UTM parameters", "tag my links", "campaign tracking", "link
Open skill - /internal-linking-optimizer
Analyze site's internal link structure and optimize for hub-and-spoke SEO architecture. Triggers on: "optimize internal links", "internal linking", "link structure", "hub and spoke links", "orphan pages", "link equity", "internal link audit", "fix my internal links", "link
Open skill - /performance-report
Generate affiliate performance reports with KPIs and recommendations. Triggers on: "show my affiliate report", "how are my programs doing", "performance review", "earnings report", "monthly affiliate report", "weekly report", "analyze my affiliate earnings", "which program is
Open skill - /seo-audit
Audit affiliate blog posts and landing pages for SEO issues. Triggers on: "audit my blog post for SEO", "check my SEO", "SEO review", "improve my rankings", "SEO checklist", "on-page SEO audit", "keyword optimization check", "why isn't my page ranking", "SEO score", "content
Open skill - /content-repurposer
Repurpose one piece of affiliate content into multiple formats. Triggers on: "repurpose my content", "turn my blog into tweets", "cross-post this", "content recycling", "convert to newsletter", "make a tweet thread from this", "adapt for TikTok", "omnichannel content", "scale my
Open skill

