Subwave is an internet radio station where an AI DJ selects music and speaks between tracks for every listener at once. Listeners can request music in plain language, while operators manage the queue, schedule, DJ personas, and station activity. Its catalogue entries define skills and workflows for operating the station.
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 agentmods add skills/perminder-klair/subwave/subwave-app-android-releasenpx skills add perminder-klair/subwave --skill subwave-app-android-releasegit clone --depth 1 https://github.com/perminder-klair/subwaveWrote 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/perminder-klair/subwave/subwave-app-android-release)<a href="https://agentmods.dev/skills/perminder-klair/subwave/subwave-app-android-release"><img src="https://agentmods.dev/badge/skills/perminder-klair/subwave/subwave-app-android-release.svg" alt="Measured on agentmods" 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.00000 | $0.03562 |
| Opus 5 | $0.00000 | $0.01781 |
| Sonnet 5 | $0.00000 | $0.00712 |
| Haiku 4.5 | $0.00000 | $0.00356 |
Grade C, and why
subwave-app-android-release scanned grade C with 1 finding 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 6d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
`$TMPDIR/eas-build-local-nodejs`; `rm -rf` it before retrying. How it starts
The opening of the file, as written. The whole thing — 262 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SUB/WAVE Android release → Play Store / testers
The app is live in production on the Google Play Store. There are two ways to ship a fresh Android binary, and which you want depends on the audience:
- Play Store release (
productionprofile) — builds a signed.aabApp Bundle on EAS. You then upload it to the Play Console by hand (submission is manual — see the Play Store section). This is how real users get the update. - Quick sideload test (
previewprofile) — builds an APK and returns an install link + QR any Android phone can tap, no Google account involved. Good for handing a build to a trusted tester fast, outside the Play Store machinery.
Either way EAS generates+stores the signing keystore for you. Ask which one the
user wants if it's ambiguous — "release"/"ship to the store" → production
.aab; "send to a tester"/"install link" → preview APK.
For a phone you can physically plug in (USB/adb, live hot-reload), use the local
subwave-app-android skill instead.
First: does this even need a new build? (OTA)
The app ships expo-updates (OTA). If the change is JS/TS only — components, hooks, styles, copy, logic, Metro-bundled assets — you do not need a new APK/AAB. Push it over-the-air to the binaries already installed:
cd "$APP"
eas update --channel preview --message "fix: …" # tester (internal-APK) builds
eas update --channel production --message "fix: …" # Play builds
It reaches every installed build whose runtime version (fingerprint) matches.
Testers see it on the next cold start (it fetches in the background;
fallbackToCacheTimeout: 0 keeps launch instant, so kill + relaunch twice to
confirm it applied).
A new build is only required when native inputs changed: a dependency
add/upgrade, anything under app/patches/, a config plugin, or app.json's
android/plugins sections. The fingerprint policy guarantees an OTA can't land
on a binary with mismatched native code. Rule of thumb: ran npx expo install
or touched patches/? → build. Otherwise → OTA. Full decision table:
app/docs/RELEASE.md.
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.
- 6d ago First seen · 262 lines · 0 tokens per session scan C 3616c053aa79
subwave-app-android-release is a skill published in the GitHub repository perminder-klair/subwave (1,301 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 3,562 tokens. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
flutter-cherry-pick
How to land a formal cherry-pick of a merged PR for the flutter/flutter repo stable or beta channel. Only use for flutter/flutter landed pull requests. Only use when the cherry pick request is into "stable", "beta" or a branch that has the format with flutter- . -candidate.0.
engine-whats-new
Generates the "what's new" release summary and diff file for changes in the Flutter engine (//engine/src/flutter) between two releases (e.g., 3.47 vs 3.44). When to use: - Only activate when explicitly asked by the user to generate what's new in the engine, diff Flutter engine releases, or produce an engine release…
find-release
A skill to find the lowest Dart and Flutter release containing a given commit. Use this skill whenever users ask about when a commit landed in Flutter or Dart releases, inquire about release versions for specific SHAs, or want to know if a commit is included in stable, beta, or dev channels for Flutter/Dart projects.
shorebird-patch
Shorebird OTA パッチの作成・staging 配布(stable 昇格はユーザー実施).
release-new-version
Use when preparing a Zafiro release commit that requires syncing app/build.gradle.kts version fields with the latest GitHub release.
app-release
End-to-end pipeline for releasing an iOS / watchOS app to TestFlight and the App Store. Use when the user wants to publish, ship, or release an iOS/watchOS app, get a build onto TestFlight, archive and upload via xcodebuild, deploy a CloudKit schema to Production, set App Privacy or export compliance, mint a…