Install
$ agentstack add skill-ariadoss-superskills-app-store-screenshots ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README — it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
App Store & Google Play Screenshots Generator
Build a Next.js application for creating exportable App Store and Google Play marketing screenshots across multiple device types and platforms.
Core Philosophy
"Screenshots are advertisements, not documentation. Every screenshot sells one idea."
Key Capabilities
Supports rendering screenshots for:
- iPhone (portrait with mockup.png frame)
- iPad (portrait, CSS-rendered frame)
- Android Phone (portrait, CSS-rendered)
- Android Tablets (7" and 10", portrait + landscape)
- Google Play Feature Graphic (1024×500 banner)
Core Workflow
Before coding, gather these inputs:
- Screenshot image locations
- App icon PNG path
- Brand colors (accent, text, background)
- Typography selection
- Feature prioritization
- Desired slide count
- Visual style direction
- Target platform(s)
- Language localization needs
- Theme customization preferences
Technical Foundation
Uses html-to-image for export, not html2canvas, due to superior CSS handling.
Critical implementation patterns:
- Pre-load images as base64 data URIs to prevent non-deterministic fetch failures
- Double-call export technique (first warm-up, second production)
- Device-agnostic width formulas that scale proportionally across canvas sizes
- Slide factory pattern for reusable device-specific templates
Canvas Dimensions
Design at largest resolution per category; exports scale down automatically:
| Device | Dimensions | |--------|-----------| | iPhone | 1320×2868px | | iPad | 2064×2752px | | Android phone | 1080×1920px | | Android tablets (portrait) | 1200×1920 and 1600×2560 | | Android tablets (landscape) | 1920×1200 and 2560×1600 | | Google Play Feature Graphic | 1024×500px |
Layout Patterns
- Portrait phones: device centered, slightly lower than canvas center
- Landscape tablets: caption occupies left 34%, device on right with negative space
- Visual variation: layouts differ between adjacent slides to avoid templated feel
Architecture
The entire generator lives in a single page.tsx with:
- Canvas dimensions matching the largest required resolution per device
- Width formula functions that scale device frames proportionally
- Device components using CSS frames (Android, iPad) or PNG mockups (iPhone)
- Slide factories accepting a device component and returning reusable slide definitions
- Pre-loaded image cache converting all assets to base64 data URIs
Export Strategy
// Double-call pattern — first primes fonts/images, second produces clean output
async function exportSlide(element: HTMLElement): Promise {
await toPng(element); // warm-up call
return toPng(element); // production call
}
This prevents blank or transparent regions common in single-pass exports.
Additional Features
- Localization with RTL text direction support
- Theme presets
- Bulk export with numbered filenames for correct sorting
Implementation Notes
- Never use
html2canvas— usehtml-to-imageinstead - Pre-convert all images (screenshots, icon) to base64 before rendering
- Landscape tablet slides exclusively use caption-left + device-right composition
- Avoid repeated layouts on adjacent slides
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ariadoss
- Source: ariadoss/superskills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.