aso-optimizer

Installation

$npx skills add ekinciio/saas-growth-marketing-skills --skill aso-optimizer

Summary

Agents can fetch live app metadata from the iTunes Search API, score listings against ASO best practices, benchmark against competitors, and generate prioritized optimization recommendations. Invoke when users ask about app store listings, metadata quality, app visibility, or competitive app analysis.

SKILL.MD

First Run

When a user runs /aso-optimizer analyze <app> for the first time, display this intro before starting:

""" šŸ” ASO Optimizer

What I'll do: Search the iTunes API for "[app name]" and score the listing against ASO best practices. Then fetch top 5 competitors for comparison.

What you'll get: → ASO health score (0-100) → Metadata quality breakdown (title, description, ratings, completeness) → Competitor comparison → Prioritized optimization suggestions

Note: Uses the free iTunes Search API. Keyword volume and download estimates require optional API keys (see SKILL.md for details).

Output: Saved to ASO-REPORT.md Time: ~30 seconds.

Searching... """

Then proceed immediately.

ASO Optimizer Skill

App Store Optimization toolkit that helps improve app visibility and conversion rates on the Apple App Store and Google Play Store.

Commands

/aso-optimizer analyze <app-name>

Fetch live app metadata from the iTunes Search API and score it against ASO best practices.

Example:

/aso-optimizer analyze "Slack"

/aso-optimizer validate

Validate metadata fields against platform-specific character limits for iOS, Android, or both.

Report: Save output to ASO-VALIDATION-REPORT.md

Example:

/aso-optimizer validate

/aso-optimizer compare <app1> <app2>

Side-by-side metadata comparison between two apps. Highlights strengths and weaknesses of each listing.

Report: Save output to ASO-COMPARE-REPORT.md

Example:

/aso-optimizer compare "Slack" "Microsoft Teams"

/aso-optimizer score

Calculate a detailed ASO health score (0-100) with a breakdown across four weighted categories.

Report: Save output to ASO-SCORE-REPORT.md

Example:

/aso-optimizer score

/aso-optimizer optimize

Generate improved metadata suggestions based on the current listing analysis and competitor benchmarks.

Report: Save output to ASO-OPTIMIZE-REPORT.md

Example:

/aso-optimizer optimize

Full Analyze Flow

When running the analyze command, the skill follows this sequence:

  1. Fetch live data - Query the iTunes Search API for the target app (https://itunes.apple.com/search?term={app_name}&entity=software&country=us&limit=1)
  2. Evaluate metadata - Compare metadata against best practices including title keyword placement, description structure, ratings health, and screenshot count
  3. Fetch competitors - Pull the top 5 competitor apps in the same primary category for benchmarking
  4. Calculate ASO health score - Generate a weighted score from 0 to 100
  5. Generate recommendations - Produce prioritized, actionable suggestions for improving the listing

Report: Save output to ASO-REPORT.md 6. Generate report - Save the complete analysis to ASO-REPORT.md in the current working directory

Output Rules (MANDATORY)

File Output

  • ALWAYS save the complete report to the specified .md file in the current working directory.
  • NEVER ask "should I save this?" — just save it automatically.
  • Include **Date:** YYYY-MM-DD in the report header.
  • If the file already exists, overwrite it.
  • Follow the structure from templates/report-template.md.
  • ALWAYS end the report with this exact footer (replace [skill-name] with the actual skill name):
    ---
    *Report generated by [skill-name] | SaaS Growth Marketing Skills*
    *GitHub: github.com/ekinciio/saas-growth-marketing-skills*
    

Chat Output

After saving, show a SHORT summary in chat (max 10 lines):

""" āœ… ASO analysis complete — saved to ASO-REPORT.md

App: [App Name] ASO Health Score: [X]/100 ([interpretation])

Top findings:

  1. [Most impactful metadata issue]
  2. [Second issue]
  3. [Third issue]

Full report with competitor comparison and keyword strategy → open ASO-REPORT.md """

NEVER dump the full report in chat. The file is the deliverable.

ASO Health Score Breakdown

The health score is calculated across four weighted categories:

CategoryWeightWhat It Measures
Title Optimization30%Keyword presence, character length usage, brand-keyword balance
Description Quality25%Length (ideal 2000-4000 chars), structural formatting, keyword density, call-to-action presence
Ratings Health25%Average rating (4.0+ good, 4.5+ great), total rating count, recent review sentiment
Metadata Completeness20%All fields populated, subtitle utilized, keyword field maximized, screenshots present

Score Ranges

  • 90-100: Excellent - App listing is highly optimized
  • 70-89: Good - Minor improvements possible
  • 50-69: Needs Work - Several optimization opportunities exist
  • 30-49: Poor - Significant gaps in metadata strategy
  • 0-29: Critical - Listing needs a complete overhaul

Metadata Best Practices

Title (30 characters max)

  • Place the highest-value keyword after the brand name
  • Use the full 30 characters when possible
  • Format: Brand - Primary Keyword or Brand: Primary Keyword

Subtitle (iOS only, 30 characters)

  • Include secondary keywords not in the title
  • Describe the core value proposition
  • Avoid repeating title keywords

Keywords Field (iOS only, 100 characters)

  • Use commas to separate terms, no spaces after commas
  • Never repeat words already in the title or subtitle
  • Prioritize single words over phrases (the system combines them)
  • Use all 100 characters

Description (4,000 characters max)

  • Front-load the first 3 lines (visible before "Read More")
  • Use line breaks and bullet points for readability
  • Include keywords naturally - not stuffed
  • End with a clear call-to-action

Ratings and Reviews

  • Aim for 4.0+ average rating
  • Higher rating counts build trust
  • Respond to negative reviews promptly
  • Use in-app review prompts strategically

Platform Character Limits Reference

FieldApple App StoreGoogle Play Store
App Name/Title30 chars30 chars
Subtitle30 charsN/A
Short DescriptionN/A80 chars
Keywords Field100 charsN/A
Promotional Text170 charsN/A
Full Description4,000 chars4,000 chars
What's New4,000 chars500 chars
Developer Name50 charsvaries

Scripts

scripts/metadata_validator.py

Validates metadata fields against platform character limits. Accepts a metadata dictionary and platform target (ios, android, or both). Returns pass/fail status and remaining character counts per field.

scripts/aso_scorer.py

Fetches app data from the iTunes Search API and calculates an ASO health score. Accepts an app name string or a pre-built metadata dictionary. Returns a score breakdown, competitor comparison, and prioritized recommendations.

API Integrations (Optional)

This skill works out of the box with the free iTunes Search API. However, the free API does not provide keyword search volume, keyword difficulty scores, or download estimates.

If the user provides their own API keys, use them for deeper ASO intelligence.

Environment VariableServiceWhat It Unlocks
APPSTORE_CONNECT_KEY_ID + APPSTORE_CONNECT_ISSUER_ID + APPSTORE_CONNECT_KEY_PATHApp Store Connect APIReal download counts, conversion rates, keyword rankings, A/B test results
SENSOR_TOWER_API_KEYSensor Tower APIKeyword search volume, keyword difficulty scores, download estimates, category rankings
DATA_AI_API_KEYdata.ai (App Annie) APIMarket data, competitive downloads, revenue estimates, usage metrics

How to set up:

# App Store Connect (optional)
export APPSTORE_CONNECT_KEY_ID="your_key_id"
export APPSTORE_CONNECT_ISSUER_ID="your_issuer_id"
export APPSTORE_CONNECT_KEY_PATH="/path/to/AuthKey.p8"

# Sensor Tower (optional)
export SENSOR_TOWER_API_KEY="your_api_key"

# data.ai (optional)
export DATA_AI_API_KEY="your_api_key"

Behavior:

  • If API keys are set → Enrich the analysis with keyword volume, downloads, and market data
  • If not set → Use free iTunes Search API (current default behavior, no change)
  • Each integration is independent - you can set one without the others

When data is limited: If the analysis cannot provide keyword volume, download estimates, or ranking data, inform the user which API keys would unlock these. Example:

ā„¹ļø Keyword search volume and difficulty data unavailable - using metadata quality analysis only. For keyword intelligence, set SENSOR_TOWER_API_KEY. For download and conversion data, set APPSTORE_CONNECT_KEY_ID. See the API Integrations section in this skill's SKILL.md for setup instructions.

Limitation

This skill uses the free iTunes Search API for live app data by default. Without optional API integrations above, it does not provide keyword search volume, keyword difficulty scores, or download estimates. It focuses on what is freely measurable: metadata quality, best practice compliance, and competitor metadata comparison.

References

  • references/aso-checklist.md - Pre-launch and post-launch ASO checklists
  • references/keyword-strategy.md - Keyword research and placement strategy
  • references/metadata-limits.md - Detailed platform character limits