app-store-aso
Generate optimized Apple App Store metadata recommendations with ASO best practices. Use this skill when analyzing app listings, optimizing metadata (title, subtitle, description, keywords), performing competitive analysis, or validating App Store listing requirements. Triggers on queries about App Store optimization, metadata review, or screenshot strategy.
What this skill does
# Apple App Store ASO Optimization ## Overview This skill enables comprehensive Apple App Store Optimization (ASO) analysis and metadata generation. Analyze existing app listings, generate optimized metadata following Apple's guidelines and character limits, provide competitive insights, and recommend screenshot storyboard strategies. ## Core Workflow When a user requests ASO optimization or metadata review: 1. **Analyze the App Context** - Understand the app's purpose, features, and target audience - Identify unique value propositions and competitive differentiators - Note any changes or updates the user mentions 2. **Load ASO Knowledge Base** - Reference `references/aso_learnings.md` for comprehensive ASO best practices - Apply competitive analysis strategies - Use proven optimization patterns 3. **Generate Optimized Metadata** - Create optimized app name, subtitle, and promotional text - Write compelling description with keyword optimization - Generate keyword list with strategic placement - Ensure all metadata follows Apple's character limits 4. **Validate Character Counts** - Use `scripts/validate_metadata.py` to verify all metadata meets Apple's requirements - Display validation results with character counts and limit compliance - Flag any violations with specific corrections needed 5. **Provide Screenshot Strategy** - Recommend screenshot storyboard sequence - Suggest messaging hierarchy and visual focus areas - Align screenshot strategy with metadata messaging ## Apple App Store Character Limits **Critical Limits to Validate:** - **App Name**: 30 characters maximum - **Subtitle**: 30 characters maximum - **Promotional Text**: 170 characters maximum - **Description**: 4,000 characters maximum - **Keywords**: 100 characters maximum (comma-separated, no spaces) - **What's New**: 4,000 characters maximum ## Metadata Validation Process After generating recommendations, always validate using the validation script: ```bash python scripts/validate_metadata.py ``` The script will: 1. Prompt for each metadata field 2. Calculate character counts 3. Check against Apple's limits 4. Display results with โ (pass) or โ (fail) indicators 5. Show exact character counts and remaining characters **Integration Pattern:** - Generate metadata recommendations - Run validation script with recommended content - Display validation results to user - Adjust any failing fields and re-validate ## Output Format Structure recommendations as: ### ๐ฑ App Metadata Recommendations **App Name** (X/30 characters) [optimized name] **Subtitle** (X/30 characters) [optimized subtitle] **Promotional Text** (X/170 characters) [promotional text] **Keywords** (X/100 characters) [keyword,list,no,spaces] **Description** (X/4000 characters) [full description] ### ๐ฏ Competitive Analysis [Key insights and positioning recommendations] ### ๐ธ Screenshot Storyboard Strategy [Ordered list of screenshot recommendations with messaging] ### โ Validation Results [Output from validation script showing compliance] ## Krankie: App Store Ranking Tracker Krankie is an agent-first CLI tool for tracking App Store keyword rankings. Use it to monitor keyword performance, track ranking changes over time, and inform ASO optimization decisions with real data. ### Installation ```bash bun install -g krankie # or run directly bunx krankie ``` ### Key Commands **App Management:** ```bash # Search for apps krankie app search "<query>" --platform ios # Add an app to track krankie app create <app_id> --platform ios # List tracked apps krankie app list ``` **Keyword Tracking:** ```bash # Add keywords to track for an app krankie keyword add <app_id> "<keyword>" --store us # List tracked keywords krankie keyword list ``` **Ranking Checks:** ```bash # Run ranking checks for all tracked keywords krankie check run # View current rankings krankie rankings # See biggest movers (gains/losses) krankie rankings movers # View ranking history for a keyword krankie rankings history <keyword_id> # Check status of last run krankie check status ``` **Automation:** ```bash # Install daily cron job (default: 6 AM) krankie cron install --hour 6 # Check cron status krankie cron status ``` ### Agent Integration All commands support `--json` flag for structured output: ```bash krankie rankings --json krankie app list --json ``` Get agent-friendly instructions: ```bash krankie instructions --format json ``` ### Data Notes - Rankings track positions 1-200; null indicates outside this range - Data stored locally in `~/.krankie/krankie.db` (SQLite) - Daily re-checks are rate-limited; use `--force` to override - Logs available at `~/.krankie/check.log` ### ASO Workflow Integration 1. **Before optimization**: Use `krankie rankings` to establish baseline keyword positions 2. **Competitive analysis**: Track competitor apps and their keyword rankings 3. **After metadata changes**: Monitor `krankie rankings movers` to measure impact 4. **Trend analysis**: Use `krankie rankings history` to identify patterns ## Resources ### scripts/validate_metadata.py Python script that validates App Store metadata against Apple's character limits. Provides interactive validation with clear pass/fail indicators. ### references/aso_learnings.md Comprehensive ASO knowledge base containing optimization strategies, competitive analysis frameworks, keyword research techniques, and proven best practices. Load this file to inform all ASO recommendations.
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.