
Asc Aso Audit
- 2.1k installs
- 934 repo stars
- Updated July 21, 2026
- rorkai/app-store-connect-cli-skills
A structured ASO audit report identifying keyword waste, field underutilization, missing metadata, formatting errors, cross-locale gaps, and competitor keyword opportunities.
About
This skill runs a two-phase offline and online ASO audit against canonical App Store metadata pulled locally. Phase 1 performs 5 offline checks: keyword waste (duplicates in subtitle/name/keywords), field utilization (keywords >90 chars, subtitle >20 chars), missing required fields (subtitle/keywords/description/whatsNew), bad separators (spaces/semicolons/pipes in keywords), and cross-locale localization gaps. Phase 2 integrates Astro MCP to extract competitor keywords, get suggestions, and rank keyword gaps by popularity. Developers use this after `asc metadata pull` to identify indexing inefficiencies and high-value keyword additions before version release. Output includes a structured audit report with field utilization table, offline check results, keyword gap rankings, and prioritized recommendations.
- Five offline ASO checks: keyword waste, field utilization, missing fields, bad separators, cross-locale gaps
- Tokenization handles Latin, Cyrillic, CJK (Chinese/Japanese/Korean), and Arabic (with prefix-stripping for definite arti
- Astro MCP integration extracts competitor keywords and surfaces gaps ranked by popularity score per store/locale
- Description keyword coverage analysis — checks if keywords appear naturally in user-facing copy to improve conversion
- Cross-field combo strategy — identifies high-value keyword combinations across title, subtitle, and keywords fields
Asc Aso Audit by the numbers
- 2,105 all-time installs (skills.sh)
- +225 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #263 of 1,881 Marketing & SEO skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
asc-aso-audit capabilities & compatibility
- Capabilities
- offline metadata validation (5 check types) · cjk and arabic tokenization · cross locale keyword comparison · astro mcp integration for competitor analysis · keyword popularity scoring and gap ranking · description keyword coverage analysis
- Use cases
- seo
- Platforms
- macOS · Linux · WSL
- Runs
- Runs locally
- Pricing
- Free
What asc-aso-audit says it does
Run a two-phase ASO audit: offline checks against local metadata files, then keyword gap analysis via Astro MCP.
npx skills add https://github.com/rorkai/app-store-connect-cli-skills --skill asc-aso-auditAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2.1k |
|---|---|
| repo stars | ★ 934 |
| Security audit | 2 / 3 scanners passed |
| Last updated | July 21, 2026 |
| Repository | rorkai/app-store-connect-cli-skills ↗ |
What it does
Audit App Store metadata for keyword waste, field utilization, and cross-locale gaps, then surface competitor keyword opportunities via Astro MCP.
Who is it for?
App Store Connect users managing metadata for iOS/macOS apps targeting multiple locales, especially those optimizing for non-US markets or competing in high-keyword-density categories.
Skip if: Google Play, Amazon AppStore, or other platform audits; real-time ranking monitoring (use Astro directly); bulk metadata imports (use `asc metadata keywords sync`).
When should I use this skill?
After running `asc metadata pull --app 'APP_ID' --version '1.2.3' --dir './metadata'`; before finalizing app version for submission; when preparing localized metadata for new markets.
What you get
Developers identify and fix metadata inefficiencies offline, then prioritize keyword additions from Astro analysis, improving app discoverability and conversion before submission.
- Structured ASO audit report (markdown or JSON)
- Field utilization table (actual vs. recommended lengths)
- Offline check results with severity (error/warning/info)
By the numbers
- 5 offline checks performed (keyword waste, field utilization, missing fields, bad separators, cross-locale gaps)
- Keywords must reach ≥90 characters (90% of 100-char limit) to maximize indexing
- Subtitle minimum 20 characters recommended (65% utilization)
Files
asc ASO audit
Run a two-phase ASO audit: offline checks against local metadata files, then keyword gap analysis via Astro MCP. When available, include Apple-generated app tags as a discoverability signal.
Preconditions
- Metadata pulled locally into canonical files via
asc metadata pull --app "APP_ID" --version "1.2.3" --dir "./metadata". - If metadata came from
asc migrate exportorasc localizations download, normalize it into the canonical./metadatalayout before running this skill. - For Astro gap analysis: app tracked in Astro MCP (optional — offline checks run without it).
- For Apple-generated discoverability tags:
asc app-tags list --app "APP_ID" --output jsonworks when the API returns tags for the app.
Before You Start
1. Read references/aso_rules.md to understand the rules each check enforces. 2. Identify the latest version directory under metadata/version/ (highest semantic version number). Use this for all version-level fields. 3. The primary locale is en-US unless the user specifies otherwise.
Metadata File Paths
- App-info fields (
subtitle):metadata/app-info/{locale}.json - Version fields (
keywords,description,whatsNew):metadata/version/{latest-version}/{locale}.json - App name: May not be present in exported metadata. If
nameis missing from the app-info JSON, fetch it viaasc apps info listor ask the user. Do not flag it as a missing-field error.
Phase 1: Offline Checks
Run these 5 checks against the local metadata directory. No network calls required.
1. Keyword Waste
Tokenize the subtitle field (and name if available). Flag any token that also appears in the keywords field — it is already indexed and wastes keyword budget.
Severity: ⚠️ Warning
Example: "quran" appears in subtitle AND keywords — remove from keywords to free 6 charactersHow to check: 1. Read metadata/app-info/{locale}.json for subtitle (and name if present) 2. Read metadata/version/{latest-version}/{locale}.json for keywords 3. Tokenize subtitle (+ name):
- Latin/Cyrillic scripts: split by whitespace, strip leading/trailing punctuation, lowercase
- Chinese/Japanese/Korean: split by
、,,or iterate characters — each character or character-group is a token. Whitespace tokenization does not work for CJK. - Arabic: split by whitespace, then also generate prefix-stripped variants (remove ال prefix) since Apple likely normalizes definite articles. For example, "القرآن" in subtitle should flag both "القرآن" and "قرآن" in keywords.
4. Split keywords by comma, trim whitespace, lowercase 5. Report intersection (including fuzzy matches from prefix stripping)
Optional: App Tag Alignment
App tags are Apple-generated labels that can appear in search results and product pages. They are not editable ASO metadata, but they are useful evidence for whether Apple's classification matches the intended positioning.
asc app-tags list --app "APP_ID" --output json
asc app-tags view --app "APP_ID" --id "TAG_ID" --output jsonUse tags as context only:
- If visible tags reinforce the subtitle/keyword strategy, note the alignment.
- If tags point to an unintended category or use case, recommend metadata/category changes that may improve future classification.
- Do not promise that changing metadata will immediately change Apple-generated tags.
2. Underutilized Fields
Flag fields using less than their recommended minimum:
| Field | Minimum | Limit | Rationale |
|---|---|---|---|
| Keywords | 90 chars | 100 | 90%+ usage maximizes indexing |
| Subtitle | 20 chars | 30 | 65%+ usage recommended |
Severity: ⚠️ Warning
Example: keywords is 62/100 characters (62%) — 38 characters of indexing opportunity unused3. Missing Fields
Flag empty or missing required fields: subtitle, keywords, description, whatsNew.
Note: name may not be in the export — only flag it if the app-info JSON explicitly contains a name key with an empty value.
Severity: ❌ Error
Example: subtitle is empty for locale en-US4. Bad Keyword Separators
Check the keywords field for formatting issues:
- Spaces after commas (
quran, recitation) - Semicolons instead of commas (
quran;recitation) - Pipes instead of commas (
quran|recitation)
Severity: ❌ Error
Example: keywords contain spaces after commas — wastes 3 characters5. Cross-Locale Keyword Gaps
Compare keywords fields across all available locales. Flag locales where keywords are identical to the primary locale (en-US by default) — this usually means they were not localized.
Severity: ⚠️ Warning
Example: ar keywords identical to en-US — likely not localized for Arabic marketHow to check: 1. Load keywords for all locales 2. Compare each non-primary locale against the primary 3. Flag exact matches (case-insensitive)
6. Description Keyword Coverage
Check whether keywords appear naturally in the description field. While Apple does not index descriptions for search, users who see their search terms reflected in the description are more likely to download — this improves conversion rate, which indirectly boosts rankings.
Severity: 💡 Info
Example: 3 of 16 keywords not found in description: namaz, tarteel, adhanHow to check: 1. Load keywords and description for each locale 2. For each keyword, check if it appears as a substring in the description (case-insensitive) 3. Account for inflected forms: Arabic root matches, verb conjugations (e.g., "memorizar" ≈ "memorices"), and case declensions (e.g., Russian "сура" ≈ "суры") 4. Report missing keywords per locale — recommend weaving them naturally into existing sentences 5. Do NOT flag: Latin-script keywords in non-Latin descriptions (e.g., "quran" in Cyrillic text) — these target separate search paths
Phase 2: Astro MCP Keyword Gap Analysis
If Astro MCP is available and the app is tracked, run keyword gap analysis. Run this per store/locale, not just for the US store — keyword popularity varies dramatically across markets.
Steps
1. Get current keywords: Call get_app_keywords with the app ID to retrieve tracked keywords and their current rankings.
2. Ensure multi-store tracking: For each locale with a corresponding App Store territory (e.g., ar-SA → Saudi Arabia, fr-FR → France, tr → Turkey), use add_keywords to add keyword tracking in that store. Without this, search_rankings returns empty for non-US stores.
3. Extract competitor keywords: Call extract_competitors_keywords with 3-5 top competitor app IDs to find keyword gaps. This is the highest-value Astro tool — it reveals keywords competitors rank for that you don't. Run this per store when possible.
4. Get suggestions: Call get_keyword_suggestions with the app ID for additional recommendations based on category analysis.
5. Check current rankings: Call search_rankings to see where the app currently ranks for tracked keywords in each store.
6. Diff against metadata: Compare suggested and competitor keywords against the tokens present in subtitle, name (if available), and keywords fields from the local metadata.
7. Surface gaps: Report all gaps ranked by popularity score (highest first). Include the source (competitor analysis vs. suggestion).
Cross-Field Combo Strategy
When recommending keyword additions, consider how single words combine across indexed fields (title + subtitle + keywords). For example:
- Adding "namaz" to keywords when "vakti" is already present enables matching the search "namaz vakti" (66 popularity)
- Adding "holy" to keywords when "Quran" is in the subtitle enables matching "holy quran" (58 popularity)
Flag high-value combos in recommendations.
Skip Conditions
- Astro MCP not connected → skip with note: "Connect Astro MCP for keyword gap analysis"
- App not tracked in Astro → skip with note: "Add app to Astro with
mcp__astro__add_appfor gap analysis" - Store not tracked for a locale → add tracking with
add_keywordsbefore querying
Output Format
Present results as a single audit report. The report covers only the latest version directory.
### ASO Audit Report
**App:** [name] | **Primary Locale:** [locale]
**Metadata source:** [path including version number]
#### Field Utilization
| Field | Value | Length | Limit | Usage |
|-------|-------|--------|-------|-------|
| Name | ... | X | 30 | X% |
| Subtitle | ... | X | 30 | X% |
| Keywords | ... | X | 100 | X% |
| Promotional Text | ... | X | 170 | X% |
| Description | (first 50 chars)... | X | 4000 | X% |
#### Offline Checks
| # | Check | Severity | Field | Locale | Detail |
|---|-------|----------|-------|--------|--------|
| 1 | Keyword waste | ⚠️ | keywords | en-US | "quran" duplicated in subtitle |
**Summary:** X errors, Y warnings across Z locales
#### Keyword Gap Analysis (Astro MCP)
| Keyword | Popularity | In Metadata? | Suggested Action |
|---------|-----------|--------------|-----------------|
| quran recitation | 72 | ❌ | Add to keywords |
#### Recommendations
1. [Highest priority action — errors first]
2. [Next priority — keyword waste]
3. [Utilization improvements]
4. [Keyword gap opportunities]Notes
- Offline checks work without any network access — they read local files only.
- Astro gap analysis is additive — the audit is useful even without it.
- Run this skill after
asc metadata pullto ensure canonical metadata files are current. - For keyword-only follow-up after the audit, prefer the canonical keyword workflow:
asc metadata keywords diff --app "APP_ID" --version "1.2.3" --dir "./metadata"asc metadata keywords apply --app "APP_ID" --version "1.2.3" --dir "./metadata" --confirmasc metadata keywords sync --app "APP_ID" --version "1.2.3" --dir "./metadata" --input "./keywords.csv"when importing external keyword research- After making changes, re-run the audit to verify fixes.
- The Field Utilization table includes promotional text for completeness, but no check validates its content (it is not indexed by Apple).
ASO Rules Reference
Rules enforced by the asc-aso-audit skill. Each rule links to the check that tests it.
Indexing Rules
- Title, subtitle, and keyword field are indexed for App Store search.
- Description and promotional text are NOT indexed. Description is for conversion (users see search terms reflected → higher download rate); promotional text is for seasonal messaging.
- Description keyword coverage still matters — while not indexed, descriptions that naturally include keyword terms improve conversion rate, which indirectly boosts search rankings.
- Screenshot captions are OCR-indexed (since June 2025 algorithm update). Use high-value keywords in caption text. (Informational — not checked by this audit.)
- Apple Full Text Search combines words across title + subtitle + keywords. Single words enable more combinations than multi-word phrases. Example: "quran" + "recitation" in separate fields still matches "quran recitation".
- Cross-field combo optimization: When adding keywords, consider what search queries they enable in combination with words already in title/subtitle. Example: adding "holy" to keywords when "Quran" is in subtitle enables the search "holy quran".
Keyword Field Rules
- Comma-separated, no spaces after commas. Spaces waste characters.
quran,recitationnotquran, recitation. - Do not duplicate words already in title or subtitle. Apple indexes all three fields together; repeating a word wastes keyword budget.
- Do not use the app name in keywords. It is already indexed.
- Avoid plurals if the singular is already present — Apple handles stemming.
- Prefer single words over multi-word phrases — single words enable more cross-field combinations and use fewer characters.
- Always validate with popularity data — never guess keyword value. Use Astro MCP or similar tools to check popularity scores before making swaps.
Character Limits
| Field | Limit |
|---|---|
| Name | 30 |
| Subtitle | 30 |
| Keywords | 100 |
| Description | 4,000 |
| What's New | 4,000 |
| Promotional Text | 170 |
Localization Rules
- Localize keywords per market — do not just translate your primary keywords. Research what users in each locale actually search for.
- English (US) keywords may carry into other English-speaking storefronts but dedicated localization always outperforms.
- Identical keyword fields across locales usually indicates untranslated/unlocalized metadata.
- Track keywords in each locale's store — keyword popularity varies dramatically across territories. A keyword with 70 popularity in the US store may have 5 popularity in France. Use Astro
add_keywordsto set up tracking per store before analyzing. - Use competitor analysis per store — top competitors differ by market. Run
extract_competitors_keywordswith locale-relevant competitor apps.
Non-Latin Script Rules
- Arabic ال-prefix: Apple likely normalizes the definite article ال. Treat "القرآن" (with ال) and "قرآن" (without) as probable duplicates when checking subtitle/keyword overlap.
- Arabic hamza variants: Users commonly search without hamza diacritics. "قران" (no hamza) and "قرآن" (with hamza) target different search queries — both may be worth including.
- Chinese tokenization: Chinese text has no word-separating spaces. Subtitle tokens are separated by
、(enumeration comma) or,(full comma). Do not use whitespace tokenization for Chinese metadata. - Cyrillic transliteration: Including the Latin spelling of terms (e.g., "quran" in a Russian keyword field) targets users who search in Latin script on Cyrillic storefronts.
Utilization Guidelines
- Keyword field: aim for 90%+ character usage (90+ of 100 chars).
- Subtitle: aim for 65%+ character usage (20+ of 30 chars). Short subtitles waste indexing opportunity.
- Name: balance branding with keyword inclusion.
Related skills
Forks & variants (3)
Asc Aso Audit has 3 known copies in the catalog totaling 2.5k installs. They canonicalize to this original listing.
- rudrankriyam - 1.4k installs
- rudrankriyam - 1.1k installs
- ehmo - 1 installs
FAQ
Does the audit require network access?
Phase 1 (offline checks) requires only local metadata files. Phase 2 (Astro MCP gap analysis) requires Astro MCP connection; Phase 1 runs standalone if Astro is unavailable.
Which fields does the audit check?
Name, subtitle, keywords, promotional text, and description. Utilization thresholds: keywords ≥90 chars, subtitle ≥20 chars. Missing fields flagged if empty: subtitle, keywords, description, whatsNew.
How does cross-locale keyword comparison work?
Audit compares keywords across all locales against the primary locale (en-US 默认). Exact matches (case-insensitive) are flagged as likely unlocalized and indicate translation opportunity.
Is Asc Aso Audit safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.