Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add GuillemRoca/agent-skills-android --skill shipping-and-launchgit clone --depth 1 https://github.com/GuillemRoca/agent-skills-androidWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/guillemroca/agent-skills-android/shipping-and-launch)<a href="https://agentmods.dev/skills/guillemroca/agent-skills-android/shipping-and-launch"><img src="https://agentmods.dev/badge/skills/guillemroca/agent-skills-android/shipping-and-launch/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/guillemroca/agent-skills-android/shipping-and-launch"><img src="https://agentmods.dev/badge/skills/guillemroca/agent-skills-android/shipping-and-launch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00039 | $0.01946 |
| Opus 5 | $0.00019 | $0.00973 |
| Sonnet 5 | $0.00008 | $0.00389 |
| Haiku 4.5 | $0.00004 | $0.00195 |
Grade A, and why
shipping-and-launch scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 230 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Shipping and Launch
Overview
"Ship with confidence. Deploy safely, with monitoring, rollback plan ready." Shipping isn't just uploading an AAB — it's verifying that everything is production-ready, staging the rollout, monitoring for issues, and having a rollback plan if things go wrong.
When to Use
- Before any release to Play Store (internal, alpha, beta, production)
- Before any release via Firebase App Distribution
- When promoting from one release track to another
- After a hotfix that needs expedited release
Skip when: Not releasing (local development only).
Core Process
Step 1: Pre-Launch Checklist
- Code Quality:
# All tests pass
./gradlew test
./gradlew connectedAndroidTest
# Build succeeds
./gradlew bundleRelease
# No lint errors
./gradlew lint
# Formatting is consistent
./gradlew spotlessCheck
# Static analysis passes
./gradlew detekt
-
Manual code checks:
- No
TODOorFIXMEwithout issue references - No
Log.d()orLog.v()calls in production code (use ProGuard to strip) - No hardcoded strings in UI (use
stringResource) - No
BuildConfig.DEBUG-gated features shipping to production - Feature flags for incomplete features are OFF
- No
-
Security (see
security-and-hardening):- No secrets in source code
- Network Security Config enforces HTTPS
- Certificate pinning configured
- ProGuard/R8 enabled for release build
-
android:debuggablenot set in release manifest - Dependency vulnerability scan clean
-
Performance (see
performance-optimization):- Android Vitals targets met (startup < 500ms, jank < 5%)
- APK/AAB size within budget
- Baseline Profiles included
- No ANR-prone patterns (main thread blocking)
- Images optimized (WebP, proper sizing)
-
Accessibility (see
android-accessibility):- TalkBack tested on all screens
- Accessibility Scanner reports zero critical issues
- Touch targets >= 48dp
- Color contrast meets standards
- Content descriptions on all meaningful elements
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 230 lines · 39 tokens per session scan A 5c253d1e886f
shipping-and-launch is a skill published in the GitHub repository GuillemRoca/agent-skills-android (2 stars, last pushed 2mo ago), licensed MIT. It adds 39 tokens to every session and 1,946 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
github-release-notes-writer
Draft or update user-focused GitHub Release Notes from verified tags, commits, pull requests, existing releases, and supplied changelog baselines. Use when preparing prerelease or stable release notes, turning GitHub's generated What's Changed list into a curated narrative, documenting upgrades or breaking changes, or…
github-release-pr-writer
Draft or update GitHub release pull request descriptions from verified tags, commits, merged pull requests, and the release diff. Use when a PR prepares a version, aligns release metadata, promotes a prerelease, or needs a reviewer-focused release summary, exact change inventory, breaking-change section, or migration…
otel-changelog-pr-verifier
Verify whether CHANGELOG entries in an OpenTelemetry Go repository point to the correct pull requests and whether each (#NNNN) matches the described change. Use when checking a release PR, validating a CHANGELOG section, or screening only mismatched changelog-to-PR references.
bump-version
Automate version bumping following semantic versioning and changelog management. Use when the user wants to bump a version, create a release, update the changelog, or tag a new version in a project using semver conventions and Keep a Changelog format.
github
GitHub issues, pull requests, repos, code search, releases, gists, stars, watching, forks, and Actions via the gh CLI. Use when the user mentions GitHub, an issue/PR number, a repo, a commit, a release, a gist, or code review.
capgo-release-management
Guides the agent through Capgo OTA release workflows including bundle uploads, compatibility checks, channels, cleanup, and encryption key setup. Use when managing Capgo bundle and channel operations. Do not use for native build requests or organization administration.