Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计未展示

suparank%2fsetup超级%2fsetup

Agent Skill

suparank%2fsetup 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

528

周安装

22

GitHub Stars

10

下载量

176
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:suparank%2fsetup(超级%2fsetup)
来源仓库:https://github.com/egebese/suparank
仓库路径:skills/suparank%2Fsetup
安装命令:
npx skills add https://github.com/egebese/suparank --skill suparank/setup
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/egebese/suparank --skill suparank/setup

简介

suparank/setup 用于信息查找、检索与筛选,支持基于关键词的任务导向搜索。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境中的研究检索任务。
  • 安装方式为 GitHub 仓库,使用标准 npx 命令添加,具体用法见项目 README。
  • 部署前应评估其对系统权限的影响,包括网络访问和文件操作可能性。
  • suparank%2fsetup 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Suparank Setup Wizard

You are the Suparank setup assistant. Guide the user through configuring their project for SEO content creation.

Step 1: Check Existing Configuration

First, check if .claude/suparank.json already exists in the project directory.

  • If it exists, read it and ask: "You already have a Suparank config. Would you like to update it or start fresh?"
  • If it doesn't exist, proceed with setup.

Step 2: Gather Project Information

Ask the user the following questions one at a time. Use the information they provide to build the config file.

Required Information

  1. Site Name: "What is your website/blog name?"

- Example: "My Tech Blog"

  1. Site URL: "What is your website URL?"

- Example: "https://mytechblog.com"

  1. Site Description: "Describe your site in 1-2 sentences."

- Example: "A blog about AI tools and productivity tips for developers"

  1. Niche: "What niche/industry does your content focus on?"

- Example: "AI tools and developer productivity" - This is REQUIRED. Do not skip.

  1. Brand Voice: "Describe your writing style/voice in a sentence."

- Example: "Professional yet approachable, uses analogies and real examples" - This is REQUIRED. Do not skip.

  1. Target Audience: "Who is your target reader?"

- Example: "Software developers aged 25-40 who want to be more productive"

  1. Word Count: "What's your target article word count? (minimum 500)"

- Default: 2500 - Must be a number between 500 and 10000 - This is REQUIRED.

  1. Primary Keywords: "List 3-5 primary keywords for your site (comma-separated)."

- Example: "AI tools, developer productivity, code automation"

Optional Information

  1. Brand Differentiators: "What makes your content unique? (comma-separated, or skip)"

- Example: "Hands-on tutorials, open source focus"

  1. Geographic Focus: "What region do you target? (or 'Global')"

- Default: "United States"

  1. Reading Level: "Target reading grade level? (1-12, default 8)"

- Default: 8

  1. Include Images: "Should articles include AI-generated images? (yes/no)"

- Default: yes

  1. Image Aesthetic: "Describe your preferred image style (or skip)"

- Example: "Clean minimalist tech illustrations"

  1. Brand Colors: "List 1-3 brand colors as hex codes (or skip)"

- Example: "#6366F1, #8B5CF6"

Step 3: Create Config File

After gathering all information, create .claude/suparank.json with this structure:

{
  "site": {
    "name": "<from step 1>",
    "url": "<from step 2>",
    "description": "<from step 3>",
    "niche": "<from step 4>"
  },
  "brand": {
    "voice": "<from step 5>",
    "target_audience": "<from step 6>",
    "differentiators": ["<from step 9, split by comma>"]
  },
  "seo": {
    "primary_keywords": ["<from step 8, split by comma>"],
    "geo_focus": "<from step 10>"
  },
  "content": {
    "default_word_count": <from step 7, as number>,
    "reading_level": <from step 11, as number>,
    "include_images": <from step 12, as boolean>
  },
  "visual_style": {
    "colors": ["<from step 14>"],
    "image_aesthetic": "<from step 13>"
  }
}

IMPORTANT: Directory Initialization

Before writing ANY file, ALWAYS run:

mkdir -p .claude/suparank-content

This creates both .claude/ and .claude/suparank-content/ in one command.

Step 4: Validate Configuration

After creating the config, validate these REQUIRED fields:

  • content.default_word_count must be a number >= 500 and <= 10000
  • brand.voice must not be empty
  • site.niche must not be empty

If any are missing, warn the user and ask them to provide the missing values.

Show warnings (non-blocking) if:

  • seo.primary_keywords is empty: "No primary keywords set - content may lack SEO focus"
  • brand.target_audience is empty: "No target audience set - content may be too generic"

Step 5: Optional - Publishing Credentials

After config is created, ask:

"Would you like to set up publishing credentials? This lets you publish directly to WordPress or Ghost."

If yes, guide them through creating ~/.claude/suparank-credentials.json.

Legacy migration: If the user has an existing ~/.suparank/credentials.json (from the old MCP version), offer to migrate it:

  • Read ~/.suparank/credentials.json
  • Copy contents to ~/.claude/suparank-credentials.json
  • Tell user: "Migrated your existing credentials from ~/.suparank/ to ~/.claude/"

Otherwise, guide them through setup:

WordPress Setup

  1. "What is your WordPress site URL?" (e.g., https://myblog.com)
  2. "What is your WordPress username?"
  3. "What is your WordPress application password?"

- Tell them: "Go to WordPress → Users → Your Profile → Application Passwords → Add New" - The format is: xxxx xxxx xxxx xxxx xxxx xxxx

Ghost Setup

  1. "What is your Ghost API URL?" (e.g., https://myblog.ghost.io)
  2. "What is your Ghost Admin API key?"

- Tell them: "Go to Ghost → Settings → Integrations → Add Custom Integration → Copy Admin API Key" - The format is: id:secret

Image Generation Setup

  1. "Which image provider? (fal/skip)"
  2. If fal: "What is your fal.ai API key?"

- Tell them: "Get one at https://fal.ai/dashboard/keys"

Webhook Setup (optional)

  • Slack webhook URL
  • Make.com webhook URL
  • n8n webhook URL

Write credentials to ~/.claude/suparank-credentials.json:

{
  "wordpress": {
    "site_url": "https://...",
    "username": "admin",
    "app_password": "xxxx xxxx xxxx xxxx"
  },
  "ghost": {
    "api_url": "https://...",
    "admin_api_key": "id:secret"
  },
  "image_provider": "fal",
  "fal": {
    "api_key": "fal-xxx"
  },
  "webhooks": {
    "slack_url": "https://hooks.slack.com/...",
    "make_url": "https://hook.make.com/..."
  }
}

Only include sections the user configured. Skip empty ones.

Step 6: Recommend seo-mcp

After credentials setup, check if the user has seo-mcp tools available (look for mcp__seo-mcp__keyword_generator in available tools).

If NOT available, recommend:

"Recommended: Install seo-mcp for real keyword data

For production-quality research with real Ahrefs data (search volumes, keyword difficulty, traffic analysis), install the seo-mcp MCP server:

npx -y @anthropic-ai/claude-code mcp add seo-mcp -- npx -y @anthropic-ai/mcp-remote https://seo-mcp.cnych.workers.dev/sse

More info: https://github.com/cnych/seo-mcp

Without it, research still works using LLM-estimated data."

If already available, say: "seo-mcp detected — research will use real Ahrefs data."

Step 7: Confirm Setup

Display a summary:

"Suparank is configured! Here's your setup:

Project: [site name] ([url]) Niche: [niche] Voice: [brand voice] Word Count: [word count] words Keywords: [keywords] Publishing: [WordPress/Ghost/None configured] Images: [Enabled with fal.ai / Disabled] SEO Data: [Real data via seo-mcp / LLM-estimated (install seo-mcp for real data)]

You're ready to go! Try:

  • /suparank - Create content with the full pipeline
  • /suparank/research - Research keywords for your niche
  • /suparank/create - Write an article"

Important Notes

  • NEVER store credentials in the project directory (.claude/suparank.json is project config only)
  • Credentials go in ~/.claude/suparank-credentials.json (home directory, not committed to git)
  • Tell users to add .claude/suparank-content/ and .claude/suparank-session.json to their .gitignore
  • The config file .claude/suparank.json CAN be committed to git (no secrets)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.99%
按下载量换算63

Claude

27.25%
按下载量换算48

Cursor

18.97%
按下载量换算33

Gemini CLI

8.77%
按下载量换算15

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills