/ 디렉터리 / 플레이그라운드 / 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와 조합해 10배 효율

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
호출당 토큰
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 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기