/ 디렉터리 / 플레이그라운드 / aso-skill
● 커뮤니티 furkancingoz ⚡ 바로 사용

aso-skill

제작: furkancingoz · furkancingoz/aso-skill

End-to-end App Store Optimization from Claude Code: metadata + competitor analysis + screenshots + direct App Store Connect submission via JWT.

Six commands covering ASO lifecycle: metadata generation with character validation, competitor analysis via iTunes API, AI-generated screenshots (Gemini MCP), App Store Connect API submission (JWT), version management, and auto-generated legal (privacy, terms). Eliminates web interface clicking for iOS submissions.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

aso-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

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

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

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

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

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

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

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

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

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

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

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

context_servers에 추가. 저장 시 Zed가 핫 리로드.

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

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: aso-skill

Optimize an existing App Store listing in one session

👤 Indie iOS devs whose install rate stalled ⏱ ~60 min intermediate

언제 쓸까: Conversion rate on your product page is flat and you want a data-driven refresh.

사전 조건
  • App Store Connect API key (JWT) — App Store Connect -> Users and Access -> Integrations -> create key; download .p8
  • Skill installed — git clone https://github.com/furkancingoz/aso-skill ~/.claude/skills/aso-skill
흐름
  1. Run competitor analysis
    Use aso-skill to pull the top 10 competitors for 'habit tracker' in the US store. Compare their subtitles and keywords.✓ 복사됨
    → Comparison table with frequency-weighted keyword clusters
  2. Generate optimized metadata
    Now generate a new title, subtitle, keyword list, and promotional text for my app. Validate character limits.✓ 복사됨
    → Fields under limit, ranked by estimated impact
  3. Submit via ASC API
    Push the new metadata to App Store Connect as a new version pending submission.✓ 복사됨
    → Version draft created; ready for manual review

결과: A refreshed listing with a data-grounded story, submitted without clicking through ASC.

함정
  • Keyword stuffing beyond the 100-char field — Skill validates, but double-check — stuffing kills relevance
함께 쓰기: github

Submit a brand-new iOS app end-to-end

👤 Solo devs shipping for the first time ⏱ ~180 min advanced

언제 쓸까: You have an IPA ready and want everything else automated.

사전 조건
  • IPA uploaded to App Store Connect — xcode or Transporter
흐름
  1. Generate metadata + legal
    Generate metadata and auto-draft privacy policy + terms for a meditation app targeting EN/DE/FR.✓ 복사됨
    → Localized metadata + hosted legal URLs
  2. Generate screenshots
    Use aso-skill + Gemini MCP to generate 5 App Store screenshots per locale matching the app's visual identity.✓ 복사됨
    → PNG set at correct resolutions
  3. Submit for review
    Attach the build, upload screenshots, submit for review with a phased 7-day rollout.✓ 복사됨
    → Version status: Waiting For Review

결과: App in review without opening ASC manually.

함정
  • Screenshot text violates store guidelines — Ask the skill to keep screenshot text minimal and within safe areas

Quarterly keyword refresh based on competitor drift

👤 Growth marketers on live apps ⏱ ~30 min intermediate

언제 쓸까: Every quarter or when competitors shift their keyword strategy.

흐름
  1. Diff keyword sets vs last quarter
    Compare this quarter's competitor keyword cluster against last quarter's. What's new?✓ 복사됨
    → Added / dropped keywords
  2. Propose updates
    Propose a keyword update — keep my wins, capture 2–3 new opportunities.✓ 복사됨
    → Revised 100-char keyword field

결과: Live keyword edit that reflects reality, not 6-month-old research.

조합

다른 MCP와 조합해 10배 효율

Use the other ASO skill's reporting layer over this one's execution layer

After aso-skill submits, use claude-code-aso-skill reporting to summarize the changes.✓ 복사됨
aso-skill + github

Commit the metadata and screenshots to repo for version control

Write metadata to fastlane/metadata and commit with the version tag.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
competitor_analysis search term, country Research phase 0 (iTunes API free)
generate_metadata app profile, target keywords Drafting 0
generate_screenshots app identity, device sizes Asset prep Gemini MCP quota
generate_legal app profile, jurisdictions Before submission 0
asc_submit version, metadata, screenshots, build Final submission ASC API calls

비용 및 제한

운영 비용

API 쿼터
iTunes Search API: free, lightly rate-limited. App Store Connect: per-account quota.
호출당 토큰
Large for screenshot generation; moderate otherwise
금액
Free skill; Gemini usage is separate
Cache competitor data locally for a quarter — it doesn't change hourly

보안

권한, 시크릿, 파급범위

최소 스코프: App Store Connect: App Manager on one app (prefer) over admin
자격 증명 저장: JWT .p8 key stored locally; reference via path in env, never check into git
데이터 외부 송신: iTunes API (public), Apple ASC API, Gemini MCP if screenshots enabled
절대 부여 금지: Account Holder role to the key used by the skill

문제 해결

자주 발생하는 오류와 해결

ASC 401

JWT expired (max 20min) — regenerate; check issuer id and key id are correct

확인: curl with the JWT against https://api.appstoreconnect.apple.com/v1/apps
Metadata field rejected for character limit

Skill validation missed localization — validate per-locale

Screenshots wrong resolution

Specify device list explicitly; Apple's required sizes change

대안

aso-skill 다른 것과 비교

대안언제 쓰나단점/장점
claude-code-aso-skillYou want the agent-based ASO reporting frameworkLess direct ASC integration
Fastlane deliverYou already have a Fastlane pipelineNo AI metadata drafting

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

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