jpskill.com
📦 その他 コミュニティ

affiliate-check

affitor.comのデータに基づき、アフィリエイトプログラムの検索、報酬比較、Cookie期間の確認、トップパフォーマーの発見など、プログラムの詳細調査を効率的に行うSkill。

📜 元の英語説明(参考)

Live affiliate program data from list.affitor.com. Search programs, compare commissions, check cookie days, find top performers. Use when researching affiliate programs, comparing options, or checking program details. Persistent daemon with cache — first call starts server (~2s), subsequent calls ~100ms.

🇯🇵 日本人クリエイター向け解説

一言でいうと

affitor.comのデータに基づき、アフィリエイトプログラムの検索、報酬比較、Cookie期間の確認、トップパフォーマーの発見など、プログラムの詳細調査を効率的に行うSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o affiliate-check.zip https://jpskill.com/download/10031.zip && unzip -o affiliate-check.zip && rm affiliate-check.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/10031.zip -OutFile "$d\affiliate-check.zip"; Expand-Archive "$d\affiliate-check.zip" -DestinationPath $d -Force; ri "$d\affiliate-check.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して affiliate-check.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → affiliate-check フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

affiliate-check: ライブアフィリエイトプログラムデータ

list.affitor.com からリアルタイムでアフィリエイトプログラムデータをクエリします。永続的なデーモンで、インメモリキャッシュを使用します。最初の呼び出しでサーバーが自動的に起動し、以降の呼び出しは瞬時に行われます。

セットアップ(affiliate-check コマンドの前にこのチェックを実行してください)

コマンドを使用する前に、スキルを見つけて、バイナリが存在するかどうかを確認してください。

# まずプロジェクトレベル、次にユーザーレベルを確認
if test -x .claude/skills/affiliate-skills/tools/dist/affiliate-check; then
  A=.claude/skills/affiliate-skills/tools/dist/affiliate-check
elif test -x ~/.claude/skills/affiliate-skills/tools/dist/affiliate-check; then
  A=~/.claude/skills/affiliate-skills/tools/dist/affiliate-check
else
  echo "NEEDS_SETUP"
fi

A を存在するパスに設定し、すべてのコマンドで使用します。

NEEDS_SETUP の場合:

  1. ユーザーに「affiliate-check は一度だけビルドする必要があります(〜10秒)。続行してもよろしいですか?」と伝えます。
  2. 承認された場合は、cd <SKILL_DIR> && ./setup を実行します。
  3. bun がインストールされていない場合は、curl -fsSL https://bun.sh/install | bash を実行します。

クイックリファレンス

A=~/.claude/skills/affiliate-skills/tools/dist/affiliate-check

# プログラムを検索
$A search "AI video tools"
$A search --recurring --tags ai

# トッププログラム
$A top
$A top --sort trending

# プログラムの詳細
$A info heygen

# プログラムを並べて比較
$A compare heygen synthesia

# サーバー管理
$A status
$A stop

コマンド

Search

affiliate-check search <query>                    名前/キーワードで検索
affiliate-check search --recurring                継続的なコミッションをフィルタリング
affiliate-check search --tags ai,video            タグでフィルタリング
affiliate-check search --min-cookie 30            最小クッキー日数
affiliate-check search --sort new                 ソート:trending | new | top
affiliate-check search --limit 20                 結果の制限

Discovery

affiliate-check top                               スターによるトッププログラム
affiliate-check top --sort trending               トレンドのプログラム
affiliate-check top --sort new                    最新のプログラム

Details

affiliate-check info <name>                       詳細なプログラムカード
affiliate-check compare <name1> <name2> [name3]   並べて比較

Server

affiliate-check status                            稼働時間、キャッシュ、APIキーのステータス
affiliate-check stop                              デーモンをシャットダウン
affiliate-check help                              完全なヘルプ

環境

AFFITOR_API_KEY    オプション。list.affitor.com からの API キー
                   なし:無料ティア(クエリあたり最大5件の結果)
                   あり:無制限アクセス
                   取得:list.affitor.com/settings → API Keys (無料)

アーキテクチャ

  • localhost 上の永続的な Bun デーモン(ポート 9500-9510)
  • 5分間の TTL を持つインメモリキャッシュ
  • 状態ファイル:/tmp/affiliate-check.json
  • 30分間アイドル状態の後に自動シャットダウン
  • サーバークラッシュ → 次のコマンドで自動再起動
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

affiliate-check: Live Affiliate Program Data

Query affiliate program data from list.affitor.com in real-time. Persistent daemon with in-memory cache — first call auto-starts the server, every subsequent call is instant.

SETUP (run this check BEFORE any affiliate-check command)

Before using any command, find the skill and check if the binary exists:

# Check project-level first, then user-level
if test -x .claude/skills/affiliate-skills/tools/dist/affiliate-check; then
  A=.claude/skills/affiliate-skills/tools/dist/affiliate-check
elif test -x ~/.claude/skills/affiliate-skills/tools/dist/affiliate-check; then
  A=~/.claude/skills/affiliate-skills/tools/dist/affiliate-check
else
  echo "NEEDS_SETUP"
fi

Set A to whichever path exists and use it for all commands.

If NEEDS_SETUP:

  1. Tell the user: "affiliate-check needs a one-time build (~10 seconds). OK to proceed?"
  2. If approved, run: cd <SKILL_DIR> && ./setup
  3. If bun is not installed: curl -fsSL https://bun.sh/install | bash

Quick Reference

A=~/.claude/skills/affiliate-skills/tools/dist/affiliate-check

# Search programs
$A search "AI video tools"
$A search --recurring --tags ai

# Top programs
$A top
$A top --sort trending

# Program details
$A info heygen

# Compare programs side-by-side
$A compare heygen synthesia

# Server management
$A status
$A stop

Commands

Search

affiliate-check search <query>                    Search by name/keyword
affiliate-check search --recurring                Filter recurring commissions
affiliate-check search --tags ai,video            Filter by tags
affiliate-check search --min-cookie 30            Min cookie days
affiliate-check search --sort new                 Sort: trending | new | top
affiliate-check search --limit 20                 Result limit

Discovery

affiliate-check top                               Top programs by stars
affiliate-check top --sort trending               Trending programs
affiliate-check top --sort new                    Newest programs

Details

affiliate-check info <name>                       Detailed program card
affiliate-check compare <name1> <name2> [name3]   Side-by-side comparison

Server

affiliate-check status                            Uptime, cache, API key status
affiliate-check stop                              Shutdown daemon
affiliate-check help                              Full help

Environment

AFFITOR_API_KEY    Optional. API key from list.affitor.com
                   Without: free tier (max 5 results per query)
                   With: unlimited access
                   Get one: list.affitor.com/settings → API Keys (free)

Architecture

  • Persistent Bun daemon on localhost (port 9500-9510)
  • In-memory cache with 5-minute TTL
  • State file: /tmp/affiliate-check.json
  • Auto-shutdown after 30 min idle
  • Server crash → auto-restarts on next command