← Reddit

I was dreading Play Store asset creation, so I made Claude Code do it — open sourced the skill

Reddit · ustype · July 6, 2026
A developer open-sourced a Claude Code skill for automating Android Play Store asset creation, which captures screenshots via adb, extracts brand colors from Flutter themes or color XML files, and generates graphics with Imagen before resizing to specifications. The tool costs approximately $0.02 per image using Vertex AI or operates on Google AI Studio's free tier. AI-generated feature graphics typically require 2-3 regenerations to meet store standards, and optimal results depend on conventionally structured theme setups.

Detailed Analysis

A developer working on Android app deployment recently open-sourced a Claude Code "skill" designed to automate one of the more tedious parts of the app publishing pipeline: generating Play Store assets. The tool, released as `/play-store-forge` and hosted on GitHub, addresses a real pain point for Android developers—producing a 512x512 icon, a 1024x500 feature graphic, and properly framed device screenshots that all conform to Google's specifications while staying visually consistent with an app's existing brand identity. Rather than manually screenshotting an emulator, opening a design tool, and hand-tuning colors, the skill automates the entire chain: it boots the emulator if needed, captures real screenshots through `adb`, extracts brand colors directly from a project's Flutter theme or `colors.xml`, and then calls Google's Imagen model to generate the icon and feature graphic before resizing everything to Play Store spec.

The significance here lies less in the specific feature set and more in what it represents: Claude Code's "skills" system is being used as a lightweight framework for building composable, semi-autonomous developer tools that chain together multiple external systems—device automation via `adb`, static analysis of a codebase to infer design tokens, and generative image models—into a single invocable command. This is a pattern increasingly seen in the Claude Code ecosystem, where users aren't just asking the model to write code, but are packaging entire workflows as reusable slash-commands that other developers can install and run against their own projects. The fact that this was built and shipped in a single session, with subsequent iteration focused mainly on prompt tuning for the image-generation step, underscores how quickly a working agentic tool can go from idea to functioning prototype when the underlying model can already write scripts, invoke CLI tools, and iterate on its own output.

The economics are also worth noting: the developer cites roughly $0.02 per image via Vertex AI, with Google AI Studio's free tier as a no-cost alternative, making this kind of automation essentially free or negligible in cost for indie developers and small teams. That price point matters because it lowers the barrier for solo developers to produce polish that previously required either design skills, a freelancer, or significant manual effort—work that historically differentiated professional-looking app store listings from amateur ones.

The candid caveats included—feature graphics typically need two to three regeneration passes before being store-ready, and color extraction only works reliably with conventional theme setups—are a useful reminder that these agentic tools are still imperfect and require human review, especially for anything customer-facing or brand-sensitive. This mirrors a broader trend across the Claude Code community: developers are rapidly building and open-sourcing narrow, task-specific automations (screenshot pipelines, deployment scripts, asset generators) that treat the coding agent not just as an autocomplete tool but as an orchestrator capable of stitching together CLI tools, device emulators, and generative models into small, personal DevOps pipelines. As these skills proliferate and get shared openly, they effectively crowdsource a growing library of workflow templates that lower the operational overhead of software publishing, one small automation at a time.

Read original article →