/ Annuaire / Playground / claude-code-aso-skill
● Communauté wsbs20 ⚡ Instantané

claude-code-aso-skill

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

Pourquoi l'utiliser

Fonctionnalités clés

Démo en direct

Aperçu en pratique

claude-code-aso-skill-2.replay ▶ prêt
0/0

Installer

Choisissez votre client

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

Ouvrez Claude Desktop → Settings → Developer → Edit Config. Redémarrez après avoir enregistré.

~/.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 utilise le même schéma mcpServers que Claude Desktop. La config projet l'emporte sur la globale.

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

Cliquez sur l'icône MCP Servers dans la barre latérale Cline, puis "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
    }
  }
}

Même format que Claude Desktop. Redémarrez Windsurf pour appliquer.

~/.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 utilise un tableau d'objets serveur plutôt qu'une map.

~/.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"
        ]
      }
    }
  }
}

Ajoutez dans context_servers. Zed recharge à chaud à la sauvegarde.

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

Une seule ligne. Vérifiez avec claude mcp list. Supprimez avec claude mcp remove.

Cas d'usage

Usages concrets : 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

Quand l'utiliser : Every week or two, you want a snapshot of where your listing stands.

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

Résultat : A report you can read in 5 minutes with ordered next steps.

Pièges
  • Treating the action items as done when they're just suggested — Mark status explicitly; the skill tracks state
Combiner avec : aso-skill

Pre-launch ASO check across iOS and Android

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

Quand l'utiliser : 2–3 weeks before a dual-platform launch.

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

Résultat : You walk in to launch day with nothing to chase.

Combinaisons

Associez-le à d'autres MCPs pour un effet X10

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.✓ Copié

Outils

Ce que ce MCP expose

OutilEntréesQuand appelerCoût
/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

Coût et limites

Coût d'exécution

Quota d'API
None
Tokens par appel
Moderate — multi-agent runs burn more than single-shot
Monétaire
Free
Astuce
Run /aso-report weekly, not daily — the agents overlap

Sécurité

Permissions, secrets, portée

Stockage des identifiants : None by itself; pair with aso-skill for actual ASC auth
Sortie de données : Public store data

Dépannage

Erreurs courantes et correctifs

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

Alternatives

claude-code-aso-skill vs autres

AlternativeQuand l'utiliserCompromis
aso-skillYou want direct ASC submission, not just reportsLess meta-planning

Plus

Ressources

📖 Lire le README officiel sur GitHub

🐙 Voir les issues ouvertes

🔍 Parcourir les 400+ serveurs MCP et Skills