asc ASO audit
Run a two-phase ASO audit: offline checks against local metadata files, then keyword gap analysis via Astro MCP.
Preconditions
- Metadata pulled locally via or
asc localizations download
.
- For Astro gap analysis: app tracked in Astro MCP (optional — offline checks run without it).
Before You Start
- Read to understand the rules each check enforces.
- Identify the latest version directory under (highest semantic version number). Use this for all version-level fields.
- The primary locale is unless the user specifies otherwise.
Metadata File Paths
- App-info fields ():
metadata/app-info/{locale}.json
- Version fields (, , ):
metadata/version/{latest-version}/{locale}.json
- App name: May not be present in exported metadata. If is missing from the app-info JSON, fetch it via or 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
field (and
if available). Flag any token that also appears in the
field — it is already indexed and wastes keyword budget.
Severity: ⚠️ Warning
Example: "quran" appears in subtitle AND keywords — remove from keywords to free 6 characters
How to check:
- Read
metadata/app-info/{locale}.json
for (and if present)
- Read
metadata/version/{latest-version}/{locale}.json
for
- 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.
- Split keywords by comma, trim whitespace, lowercase
- Report intersection (including fuzzy matches from prefix stripping)
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 unused
3. Missing Fields
Flag empty or missing required fields:
,
,
,
.
Note:
may not be in the export — only flag it if the app-info JSON explicitly contains a
key with an empty value.
Severity: ❌ Error
Example: subtitle is empty for locale en-US
4. Bad Keyword Separators
Check the
field for formatting issues:
- Spaces after commas ()
- Semicolons instead of commas ()
- Pipes instead of commas ()
Severity: ❌ Error
Example: keywords contain spaces after commas — wastes 3 characters
5. Cross-Locale Keyword Gaps
Compare
fields across all available locales. Flag locales where keywords are identical to the primary locale (
by default) — this usually means they were not localized.
Severity: ⚠️ Warning
Example: ar keywords identical to en-US — likely not localized for Arabic market
How to check:
- Load keywords for all locales
- Compare each non-primary locale against the primary
- Flag exact matches (case-insensitive)
6. Description Keyword Coverage
Check whether keywords appear naturally in the
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, adhan
How to check:
- Load and for each locale
- For each keyword, check if it appears as a substring in the description (case-insensitive)
- Account for inflected forms: Arabic root matches, verb conjugations (e.g., "memorizar" ≈ "memorices"), and case declensions (e.g., Russian "сура" ≈ "суры")
- Report missing keywords per locale — recommend weaving them naturally into existing sentences
- 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
-
Get current keywords: Call
with the app ID to retrieve tracked keywords and their current rankings.
-
Ensure multi-store tracking: For each locale with a corresponding App Store territory (e.g.,
→ Saudi Arabia,
→ France,
→ Turkey), use
to add keyword tracking in that store. Without this,
returns empty for non-US stores.
-
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.
-
Get suggestions: Call
with the app ID for additional recommendations based on category analysis.
-
Check current rankings: Call
to see where the app currently ranks for tracked keywords in each store.
-
Diff against metadata: Compare suggested and competitor keywords against the tokens present in
,
(if available), and
fields from the local metadata.
-
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 for gap analysis"
- Store not tracked for a locale → add tracking with before 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 or
asc localizations download
to ensure metadata is current.
- 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).