/ Verzeichnis / Playground / aso-skill
● Community furkancingoz ⚡ Sofort

aso-skill

von 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.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

aso-skill.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

~/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
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.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 nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

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
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "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
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

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

Continue nutzt ein Array von Serverobjekten statt einer Map.

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

In context_servers hinzufügen. Zed lädt beim Speichern neu.

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

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: aso-skill

Optimize an existing App Store listing in one session

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

Wann einsetzen: Conversion rate on your product page is flat and you want a data-driven refresh.

Voraussetzungen
  • 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
Ablauf
  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.✓ Kopiert
    → 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.✓ Kopiert
    → 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.✓ Kopiert
    → Version draft created; ready for manual review

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

Fallstricke
  • Keyword stuffing beyond the 100-char field — Skill validates, but double-check — stuffing kills relevance
Kombinieren mit: github

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

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

Wann einsetzen: You have an IPA ready and want everything else automated.

Voraussetzungen
  • IPA uploaded to App Store Connect — xcode or Transporter
Ablauf
  1. Generate metadata + legal
    Generate metadata and auto-draft privacy policy + terms for a meditation app targeting EN/DE/FR.✓ Kopiert
    → 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.✓ Kopiert
    → PNG set at correct resolutions
  3. Submit for review
    Attach the build, upload screenshots, submit for review with a phased 7-day rollout.✓ Kopiert
    → Version status: Waiting For Review

Ergebnis: App in review without opening ASC manually.

Fallstricke
  • 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

Wann einsetzen: Every quarter or when competitors shift their keyword strategy.

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

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

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

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.✓ Kopiert
aso-skill + github

Commit the metadata and screenshots to repo for version control

Write metadata to fastlane/metadata and commit with the version tag.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
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

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
iTunes Search API: free, lightly rate-limited. App Store Connect: per-account quota.
Tokens pro Aufruf
Large for screenshot generation; moderate otherwise
Kosten in €
Free skill; Gemini usage is separate
Tipp
Cache competitor data locally for a quarter — it doesn't change hourly

Sicherheit

Rechte, Secrets, Reichweite

Minimale Scopes: App Store Connect: App Manager on one app (prefer) over admin
Credential-Speicherung: JWT .p8 key stored locally; reference via path in env, never check into git
Datenabfluss: iTunes API (public), Apple ASC API, Gemini MCP if screenshots enabled
Niemals gewähren: Account Holder role to the key used by the skill

Fehlerbehebung

Häufige Fehler und Lösungen

ASC 401

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

Prüfen: 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

Alternativen

aso-skill vs. andere

AlternativeWann stattdessenKompromiss
claude-code-aso-skillYou want the agent-based ASO reporting frameworkLess direct ASC integration
Fastlane deliverYou already have a Fastlane pipelineNo AI metadata drafting

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen