/ 目录 / 演练场 / claude-code-aso-skill
● 社区 wsbs20 ⚡ 即开即用

claude-code-aso-skill

作者 wsbs20 · wsbs20/claude-code-aso-skill

Agent-based ASO framework for Claude Code: a fleet of sub-agents for planning, execution, reports, action items, and executive summaries — slash-command driven.

A multi-agent take on App Store Optimization. Rather than one monolith, it spins up specialized AEO sub-agents — planners, executors, reporters, action-item managers, summarizers — triggered by slash commands. Produces structured reports after each run and lets you customize the action list. Aimed at beginners who want iOS + Android ASO without separate tools per platform.

为什么要用

核心特性

实时演示

实际使用效果

claude-code-aso-skill-2.replay ▶ 就绪
0/0

安装

选择你的客户端

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "claude-code-aso-skill-2": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/wsbs20/claude-code-aso-skill",
        "~/.claude/skills/claude-code-aso-skill"
      ],
      "_inferred": true
    }
  }
}

打开 Claude Desktop → Settings → Developer → Edit Config。保存后重启应用。

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "claude-code-aso-skill-2": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/wsbs20/claude-code-aso-skill",
        "~/.claude/skills/claude-code-aso-skill"
      ],
      "_inferred": true
    }
  }
}

Cursor 使用与 Claude Desktop 相同的 mcpServers 格式。项目级配置优先于全局。

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "claude-code-aso-skill-2": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/wsbs20/claude-code-aso-skill",
        "~/.claude/skills/claude-code-aso-skill"
      ],
      "_inferred": true
    }
  }
}

点击 Cline 侧栏中的 MCP Servers 图标,然后选 "Edit Configuration"。

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "claude-code-aso-skill-2": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/wsbs20/claude-code-aso-skill",
        "~/.claude/skills/claude-code-aso-skill"
      ],
      "_inferred": true
    }
  }
}

格式与 Claude Desktop 相同。重启 Windsurf 生效。

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "claude-code-aso-skill-2",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/wsbs20/claude-code-aso-skill",
        "~/.claude/skills/claude-code-aso-skill"
      ]
    }
  ]
}

Continue 使用服务器对象数组,而非映射。

~/.config/zed/settings.json
{
  "context_servers": {
    "claude-code-aso-skill-2": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/wsbs20/claude-code-aso-skill",
          "~/.claude/skills/claude-code-aso-skill"
        ]
      }
    }
  }
}

加入 context_servers。Zed 保存后热重载。

claude mcp add claude-code-aso-skill-2 -- git clone https://github.com/wsbs20/claude-code-aso-skill ~/.claude/skills/claude-code-aso-skill

一行命令搞定。用 claude mcp list 验证,claude mcp remove 卸载。

使用场景

实战用法: claude-code-aso-skill

Generate an ASO report with action items in one command

👤 Indie devs who want a weekly ASO sanity check ⏱ ~20 min beginner

何时使用: Every week or two, you want a snapshot of where your listing stands.

前置条件
  • Skill installed — git clone https://github.com/wsbs20/claude-code-aso-skill ~/.claude/skills/claude-code-aso-skill
步骤
  1. Fire the slash command
    /aso-report my app: com.acme.habit — cover metadata, competitors, screenshots.✓ 已复制
    → Planning agent kicks off, execution follows, summary lands
  2. Review action items
    Show the action items; let me customize the list.✓ 已复制
    → Editable list; you remove / promote as needed

结果: A report you can read in 5 minutes with ordered next steps.

注意事项
  • Treating the action items as done when they're just suggested — Mark status explicitly; the skill tracks state
搭配使用: aso-skill

Pre-launch ASO check across iOS and Android

👤 Small teams launching on both platforms ⏱ ~90 min intermediate

何时使用: 2–3 weeks before a dual-platform launch.

步骤
  1. Run planning agent
    /aso-plan launch for iOS + Android. Target markets: US, UK, DE.✓ 已复制
    → Per-platform per-market checklist
  2. Execute
    /aso-execute — run the checks.✓ 已复制
    → Reports per platform with gaps highlighted

结果: You walk in to launch day with nothing to chase.

组合

与其他 MCP 搭配,撬动十倍杠杆

claude-code-aso-skill-2 + aso-skill

Use this skill for reporting/coordination; aso-skill for App Store Connect submission

After /aso-report, hand the action items to aso-skill to actually submit metadata changes.✓ 已复制

工具

此 MCP 暴露的能力

工具输入参数何时调用成本
/aso-plan app id + scope Start of any ASO session 0
/aso-execute plan id After plan approved 0
/aso-report app id End-of-session snapshot 0

成本与限制

运行它的成本

API 配额
None
每次调用 Token 数
Moderate — multi-agent runs burn more than single-shot
费用
Free
提示
Run /aso-report weekly, not daily — the agents overlap

安全

权限、密钥、影响范围

凭据存储: None by itself; pair with aso-skill for actual ASC auth
数据出站: Public store data

故障排查

常见错误与修复

Agents produce contradictory suggestions

Tighten the plan scope; broad scopes cause disagreement

Reports feel generic

Supply explicit competitor list and target keywords in the plan step

替代方案

claude-code-aso-skill 对比其他方案

替代方案何时用它替代权衡
aso-skillYou want direct ASC submission, not just reportsLess meta-planning

更多

资源

📖 阅读 GitHub 上的官方 README

🐙 查看未解决的 issue

🔍 浏览全部 400+ MCP 服务器和 Skills