Skip to main content

Quick Install

# Settings (Cmd+Shift+J) → Rules → Add Rule → Remote Rule (Github)
# Paste: https://github.com/eronred/aso-skills
ASO Skills follows the Agent Skills open standard. Works with .cursor/skills/, .agents/skills/, .claude/skills/, .codex/skills/ directories.

Cursor Installation

1

Open Cursor Settings

Press Cmd+Shift+J (Mac) or Ctrl+Shift+J (Windows/Linux)
2

Navigate to Rules

Click RulesAdd RuleRemote Rule (Github)
3

Paste Repository URL

Enter: https://github.com/eronred/aso-skills
4

Verify Installation

Skills are now available. Test with:
"Run an ASO audit for Headspace"

Method 2: Project-Level Installation

Install skills for a specific project:
cd your-project
git clone https://github.com/eronred/aso-skills.git
cp -r aso-skills/skills/* .cursor/skills/
Skills will only be available in this project.

Method 3: Global Installation

Install skills for all Cursor projects:
git clone https://github.com/eronred/aso-skills.git
cp -r aso-skills/skills/* ~/.cursor/skills/
Global installation makes skills available across all projects. Use project-level installation for better isolation.

Claude Code Installation

Install all skills:
npx skills add eronred/aso-skills

Method 2: Selective Installation

Install specific skills only:
npx skills add eronred/aso-skills --skill aso-audit keyword-research metadata-optimization

Method 3: Manual Installation

git clone https://github.com/eronred/aso-skills.git
cp -r aso-skills/skills/* .claude/skills/
Use selective installation if you only need specific ASO capabilities (e.g., keyword research for content teams).

Manual Installation (Any Agent)

For any tool that supports the Agent Skills standard:

Git Submodule

git submodule add https://github.com/eronred/aso-skills.git .agents/aso-skills

Direct Clone

git clone https://github.com/eronred/aso-skills.git
Then copy skills to your agent’s directory:
cp -r aso-skills/skills/* .cursor/skills/

Verify Installation

After installation, test with these commands:
"Run an ASO audit for my app"
"Find the best keywords for a meditation app"
"Optimize my App Store title and subtitle"
Your AI agent should recognize the skills and respond with the appropriate framework.

Appeeky Integration (Optional)

Skills work standalone with general ASO knowledge. For real-time App Store data, connect Appeeky:
1

Get API Key

Sign up at appeeky.com and grab your API key
2

Configure MCP Server

Add to your agent’s MCP config:
{
  "mcpServers": {
    "appeeky": {
      "url": "https://mcp.appeeky.com/mcp",
      "headers": { 
        "Authorization": "Bearer apk_your_key_here" 
      }
    }
  }
}
3

Test Connection

Ask your agent:
"What are the top keywords for Headspace?"
With Appeeky connected, skills can pull:
  • Live keyword rankings and search volume
  • Competitor metadata and positioning
  • Download estimates and trending keywords
  • Featured apps and category benchmarks

Appeeky MCP Setup Guide

Full integration guide with examples

Update Skills

Keep skills up to date with the latest ASO frameworks:
# Settings → Rules → Update Rule
Skills are versioned. Check CHANGELOG.md for updates.

Troubleshooting

Check installation path:
ls .cursor/skills/  # or .claude/skills/, .agents/skills/
You should see directories: aso-audit, keyword-research, metadata-optimization, etc.Restart your IDE after installation.
Skills are installed but agent isn’t loading them. Try:
  1. Use trigger phrases: “Run an ASO audit”, “Find keywords for…”
  2. Direct invocation: /aso-audit, /keyword-research
  3. Check skill descriptions: Agent reads descriptions to decide which skill to load
If you see API errors:
  1. Verify API key: Check your Appeeky dashboard
  2. Check MCP config: Ensure Authorization header is correct
  3. Test connection: curl https://mcp.appeeky.com/health
Skills work without Appeeky (using general ASO knowledge), but won’t have real-time data.
If you get permission errors:
sudo chown -R $USER .cursor/skills/
# or
sudo chown -R $USER ~/.cursor/skills/

Next Steps

Quick Start Guide

Run your first ASO audit in 60 seconds

Skill Reference

Explore all 15 ASO skills

Build docs developers (and LLMs) love