indie-aso-metadata-automation/SKILL.md
Turn Apple Search Ads (ASA) search-term data into App Store metadata updates with `asc` (App Store Connect CLI). Use when optimizing ASO keywords, generating metadata drafts (title/subtitle/keyword field), or automating metadata population in App Store Connect for indie iOS apps.
npx skillsauth add abanoub-ashraf/manus-skills-import indie-aso-metadata-automationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
4 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill to run a practical pipeline:
asc commands to populate metadata quickly.Use this workflow when the user asks for:
Require:
asc installed and authenticated (asc auth ... already done).For live ASA fetch (run without --input or fetch command), require one auth mode:
--asa-access-token (or ASA_ACCESS_TOKEN).--asa-client-id + --asa-client-secret.--asa-client-id + --asa-key-file + --asa-team-id + --asa-key-id.Run:
python3 .codex/skills/indie-aso-metadata-automation/scripts/aso_metadata_pipeline_v2.py run \
--start-date 2026-01-01 \
--end-date 2026-01-31 \
--org-id "YOUR_ASA_ORG_ID" \
--asa-client-id "YOUR_CLIENT_ID" \
--asa-key-file "/path/AuthKey_ABC123.p8" \
--asa-team-id "YOUR_TEAM_ID" \
--asa-key-id "ABC123XYZ" \
--brand "YourBrand" \
--app-id "1234567890"
Use this when API creds are not available.
Run:
python3 .codex/skills/indie-aso-metadata-automation/scripts/aso_metadata_pipeline_v2.py run \
--input ./asa-search-terms.csv \
--start-date 2026-01-01 \
--end-date 2026-01-31 \
--brand "YourBrand" \
--app-id "1234567890"
Rank:
python3 .codex/skills/indie-aso-metadata-automation/scripts/aso_metadata_pipeline_v2.py rank \
--input ./asa-search-terms.csv \
--output ./asa-ranked.csv \
--top 25
Compose:
python3 .codex/skills/indie-aso-metadata-automation/scripts/aso_metadata_pipeline_v2.py compose \
--ranked ./asa-ranked.csv \
--brand "YourBrand" \
--output ./metadata.json
If needed, include:
--primary "forced keyword"--description-file ./description.txt--whats-new-file ./whats-new.txtGenerate asc automation commands:
Run:
python3 .codex/skills/indie-aso-metadata-automation/scripts/aso_metadata_pipeline_v2.py asc \
--metadata ./metadata.json \
--app-id "1234567890" \
--locale "en-US"
This prints commands without executing.
Use --apply only after user confirmation.
First download exact app-info localization file from ASC:
asc localizations download --app "1234567890" --type app-info --locale "en-US" --path ./app-info.en-US.strings
Then run:
python3 .codex/skills/indie-aso-metadata-automation/scripts/aso_metadata_pipeline_v2.py asc \
--metadata ./metadata.json \
--app-id "1234567890" \
--locale "en-US" \
--app-info-strings ./app-info.en-US.strings
This patches name/subtitle in the strings file and adds the upload command.
--apply.<= 30<= 30<= 100scripts/aso_metadata_pipeline.pyscripts/aso_metadata_pipeline_v2.pyreferences/workflow.mddevelopment
Design principles for building polished, native-feeling SwiftUI apps and widgets. Use this skill when creating or modifying SwiftUI views, iOS widgets (WidgetKit), or any native Apple UI. Ensures proper spacing, typography, colors, and widget implementations that look and feel like quality apps rather than AI-generated slop.
data-ai
Design and implement SwiftUI views, components, and app architecture. Use when creating new SwiftUI views, implementing MVVM/TCA patterns, managing state with @Observable, @State, @Binding, or @Environment, designing navigation flows, or structuring iOS app architecture. Triggers on SwiftUI, view model, state management, navigation, coordinator pattern.
development
Implement, review, or improve SwiftUI animations and transitions. Use when adding implicit or explicit animations with withAnimation, configuring spring animations (.smooth, .snappy, .bouncy), building phase or keyframe animations with PhaseAnimator/KeyframeAnimator, creating hero transitions with matchedGeometryEffect or matchedTransitionSource, adding SF Symbol effects (bounce, pulse, variableColor, breathe, rotate, wiggle), implementing custom Transition or CustomAnimation types, or ensuring animations respect accessibilityReduceMotion.
testing
Audit SwiftUI views for accessibility (iOS + macOS) with patch-ready fixes