aso-marketing
Optimize App Store and Google Play listings with keyword strategy, metadata, and localization. Use when asked to improve app store visibility or ASO. Don't use for web SEO, paid UA campaigns, or pre-submission compliance audits.
What this skill does
# ASO Marketing — Full-Lifecycle App Store Optimization
A comprehensive, iterative ASO workflow that takes a mobile app from analysis through planning, execution, verification, and reporting — covering both Apple App Store and Google Play Store.
## Environment Check
Before running this skill, verify:
- The project is a mobile app (iOS/Android or both)
- You have access to the app's source code or metadata files
- You can read project configuration files (build.gradle, Info.plist, etc.)
- You can create/update metadata files in the project directory
If any check fails, stop and ask for clarification.
## Repo Sync Before Edits (mandatory)
Before creating, updating, or deleting files in an existing repository, sync the current branch with remote. **Run the dry-run command first to preview, then confirm with the user before destructive sync.**
```bash
# Dry-run preview first
git fetch --dry-run origin
git status
# Then sync (after user confirms working tree is clean or backed up)
branch="$(git rev-parse --abbrev-ref HEAD)"
git fetch origin
git pull --rebase origin "$branch"
```
If the working tree is not clean, **ask the user before stashing**. If `origin` is missing, pull is unavailable, or rebase/stash conflicts occur, stop and ask the user before continuing.
**Backup-first rule for metadata files:** Before overwriting any existing metadata file (e.g. `metadata/version/1.0/en-US.json`, `fastlane/metadata/android/en-US/title.txt`), create a `.bak` copy in the same directory or confirm the file is in version control. Never delete metadata files without explicit user confirmation.
## Subagent Architecture
This skill uses a Staged Pipeline + Review Loop architecture. Each phase maps to a subagent in `agents/`:
1. `agents/analyzer.md` — Phase 1 analysis report
2. `agents/plan-writer.md` — Phase 2 ASO plan
3. `agents/compliance-checker.md` — Phase 3 prohibited-keyword + trademark check
4. `agents/executor.md` — Phase 4 metadata changes
5. `agents/reviewer.md` — Phases 5-6 review + best-practices verification
Main agent orchestrates phase transitions and the **user approval gate after Phase 3**.
## Workflow Overview
The skill follows a 7-phase cycle. Never skip the policy compliance check or the planning approval gate — the user must approve a policy-compliant plan before execution begins.
```
Phase 1: Analyze → Phase 2: Plan → Phase 3: Policy Compliance Check
→ [User Approval Gate] → Phase 4: Execute → Phase 5: Review
→ Phase 6: Verify → Phase 7: Summarize
```
## Before You Start
1. Read `references/aso_best_practices.md` for the complete ASO knowledge base — **especially the "Store Policy Compliance" section** detailing prohibited keywords, trademark rules, and listing policy restrictions for both Apple and Google.
2. Determine which store(s) the user wants to optimize for.
3. Identify whether the user has existing metadata files, a live store listing, or is launching fresh.
## Phase Execution
Run each phase in order. Detailed instructions, templates, and checklists live in the reference files. Read each one before executing the corresponding phase.
### Phase 1: Analyze
Read `references/phases-1-2.md` (Phase 1 section). Gather codebase info, audit existing store metadata, identify competitors, baseline performance, and produce an Analysis Report.
### Phase 2: Plan
Read `references/phases-1-2.md` (Phase 2 section). Build a prioritized plan covering objectives, target keywords (primary/secondary/long-tail), metadata optimization (title, subtitle, keywords, description, what's-new), visual assets, localization, ratings strategy, and timeline.
### Phase 3: Policy Compliance Check
Read `references/phase-3-compliance.md`. Validate every proposed metadata field against:
- Prohibited keyword lists (Apple + Google)
- Trademark and competitor brand checks
- Formatting rules (no emojis, no ALL CAPS, character limits)
- Content accuracy
If any violation is found, **revise the plan silently and re-run the compliance check**. The user should only ever see a compliant plan.
### User Approval Gate
After compliance passes, present the plan and compliance report to the user. **Do not proceed to Phase 4 until the user explicitly approves the plan.** Iterate as many times as needed; each revision must re-pass the compliance check.
### Phase 4: Execute
Read `references/phases-4-7.md` (Phase 4 section). Implement approved changes systematically, in priority order. **Before overwriting any existing metadata file, create a `.bak` backup or confirm version control coverage.** Validate character limits after each edit.
### Phase 5: Review
Read `references/phases-4-7.md` (Phase 5 section). Run the review checklist on every changed field. Re-scan for prohibited keywords and trademark leaks.
### Phase 6: Verify Against Best Practices
Read `references/phases-4-7.md` (Phase 6 section) and cross-reference `references/aso_best_practices.md`. Final pass for policy compliance.
### Phase 7: Summarize
Read `references/phases-4-7.md` (Phase 7 section). Produce the final summary report (Changes Made, Metadata Comparison, Compliance Status, Expected Outcomes, Next Steps, Files Modified).
## Step Completion Reports
After each major step, output a status report with `√` pass / `×` fail markers. Format and per-phase check lists are in `references/edge-cases.md` (Step Completion Reports section).
## Expected Output
A complete run produces three artifacts: Analysis Report (Phase 1), ASO Plan + Compliance Report + updated metadata files (Phases 2-4), and Summary Report (Phase 7). Worked examples for each: see `references/expected-output.md`.
## Example
Input: an iOS+Android productivity app with weak metadata.
```
Title (iOS): FocusFlow: Work Timer (22/30, no primary keyword)
Keywords (iOS): timer,focus,work,productivity (34/100, 66 chars unused)
Short Desc (Android): A simple timer for focused work. (36/80, weak)
```
Output after Phase 4 (`metadata/app-info/en-US.json`):
```json
{
"name": "FocusFlow: Focus & Work Timer",
"subtitle": "Deep Work Sessions & Tracking"
}
```
Output keywords field:
```
pomodoro,deep,work,concentration,study,block,distraction,habit,goal,flow,task
```
(97/100 chars, all prohibited terms cleared, no title/subtitle duplicates.) Full walkthrough in `references/expected-output.md`.
## Acceptance Criteria
The skill run is successful when all metadata is within character limits, contains no prohibited keywords or trademarks, the user-approval gate was respected, and all required reports were produced. Full criteria list: `references/edge-cases.md` (Acceptance Criteria section).
## Edge Cases
Common edge cases (no local metadata files, single-platform app, no competitor access, pre-launch app, non-English primary locale, user rejects plan, compliance violation in draft) are documented in `references/edge-cases.md`. Read that file when an edge case applies — do not improvise.
## Platform-Specific Notes
Apple App Store, Google Play Store, and cross-store conventions (indexed fields, character limits, OCR-indexed screenshots, A/B testing surfaces) are documented in `references/edge-cases.md` (Platform-Specific Notes section).
## Cross-Skill Integration
This skill complements `asc-aso-audit` (deep iOS audit), `asc-localize-metadata` (bulk localization), `asc-metadata-sync` (App Store Connect sync), `asc-whats-new-writer`, `asc-shots-pipeline`, and `seo-ai-optimizer`. See `references/edge-cases.md` (Cross-Skill Integration section) for when to combine.
## Safety and Caution
- **No destructive action without confirmation.** Before any `git pull --rebase`, `git stash`, file deletion, or overwriting an existing metadata file, either run a dry-run preview, create a `.bak` backup, or ask the user. Failures and errors must surface to the user — do not silently retry.
- **Compliance gate is non-negotiable.** Never present a non-compliant plan to the user; never execute without explicit approval.
- **Trademark cautRelated in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".