ukulele-companion: Skill for Cursor

.cursor/skills/release/SKILL.md

release is a skill for Cursor from baijum/ukulele-companion. It costs 70 tokens per session (2,994 once invoked), scanned A, original, MIT.

A release workflow for shipping Android and iOS versions from one shared version tag. It updates both platform versions, runs quality checks, builds both apps, uploads Android to Google Play, and prepares an iOS archive for App Store upload.

In plain words
What is it for?
Use it to cut a new release, choose a semantic-version change, create the tag and version commit, build both platforms, publish Android, and prepare iOS for submission.
Why use it?
It keeps the two mobile releases aligned and puts version changes, builds, and distribution steps in one process. It also checks required repository, signing, authentication, and build prerequisites.

Skill for Cursor

Written for Cursor: installed under .cursor/. Also seen: mentions CLAUDE.md.

This is baijum/ukulele-companion's own configuration. It tells Cursor how to work on ukulele-companion itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ukulele-companion configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is bash iosApp/setup_onnxruntime.sh.

Reuse

Borrowing it

Nothing to install: this file belongs to baijum/ukulele-companion. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/baijum/ukulele-companion/main/.cursor/skills/release/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/baijum/ukulele-companion

Made for: Cursor.

Wrote 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.

agentmods badge for release

README.md
[![agentmods](https://agentmods.dev/badge/skills/baijum/ukulele-companion/release/github.svg)](https://agentmods.dev/skills/baijum/ukulele-companion/release)
Your own site
<a href="https://agentmods.dev/skills/baijum/ukulele-companion/release"><img src="https://agentmods.dev/badge/skills/baijum/ukulele-companion/release/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.

agentmods 80×15 button for release

Your own site · 80×15
<a href="https://agentmods.dev/skills/baijum/ukulele-companion/release"><img src="https://agentmods.dev/badge/skills/baijum/ukulele-companion/release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,994 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00070 $0.02994
Opus 5 $0.00035 $0.01497
Sonnet 5 $0.00014 $0.00599
Haiku 4.5 $0.00007 $0.00299

Measured 10d ago against content hash 5b7bff88d92d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

release 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.

.cursor/skills/release/SKILL.md · 382 lines

How it starts

The opening of the file, as written. The whole thing — 382 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Release (Android + iOS)

Build and release both platforms from a single version tag. Bumps Android and iOS versions atomically in one commit, then builds and distributes both.

Prerequisites

  • gh CLI authenticated (gh auth status)
  • Working tree is clean, on main, up to date with origin
  • Signing keystore via keystore.properties at project root (Android)
  • Google Play service account key at app/play-service-account.json (Android upload)
  • Xcode installed with code signing configured (iOS)
  • JDK 17 for shared KMP framework build

Workflow

Step 1: Verify clean state

git status
git branch --show-current
gh auth status

Confirm the branch is main and there are no uncommitted changes. If the working tree is dirty, stop and ask the user to commit or stash first.

Step 2: Determine the next version

Read the latest existing tag:

git describe --tags --abbrev=0

The project uses semantic versioning (major.minor.patch) with a v prefix (e.g., v9.11.0).

If the user did not specify a version or release type, ask which type of release to create:

Release type What changes Example
Major Bump major, reset minor and patch to 0 9.11.0 -> 10.0.0
Feature Bump minor, reset patch to 0 9.11.0 -> 9.12.0
Bugfix Bump patch 9.11.0 -> 9.11.1

Ask the user to confirm the new version before proceeding.

Step 3: Run quality gates

All gates must pass before any version bumping or tagging.

3a. Run lint
./gradlew lintDebug

If lint fails, stop and fix the errors first.

3b. Run unit tests
./gradlew testDebugUnitTest
3c. Run instrumented tests

Check for a running emulator (adb devices) and run:

./gradlew connectedAndroidTest

If any test fails, stop the release and fix the failures first. Do not proceed to version bumping until all gates pass.

Step 4: Bump both platform versions in one commit

Read the full file on GitHub · 382 lines

Changes

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.

  1. 10d ago First seen · 382 lines · 70 tokens per session scan A 5b7bff88d92d

Subscribe to this mod's changes

release is a skill published in the GitHub repository baijum/ukulele-companion (14 stars, last pushed 7d ago), licensed MIT. It adds 70 tokens to every session and 2,994 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

release-kotlin-library

Use when preparing, publishing, or checking readiness for a new Kotlin library version in a repository using gradle-maven-publish-plugin, including release changelog reconciliation, API snapshots, and publication verification.

chrisbanes/skills · 45 tokens

release-new-version

Use when the user wants to release a new Zafiro version — drafting bilingual release notes, deciding the next version number, bumping app/build.gradle.kts, tagging, and publishing to GitHub (main repo, optionally the Xposed repo).

niki914/zafiro · 54 tokens

findeck-release

A document-review workflow that works on one specification document and only the higher-level or reference documents configured for it. It supports reference and revise actions and records history with reference-specific snapshots.

fainaltn/findeck · 71 tokens

sceneview-ios

Build 3D and AR apps on Apple platforms (iOS, macOS, visionOS) with SceneViewSwift — the SwiftUI wrapper around RealityKit. Use whenever the user asks for "3D in SwiftUI", "AR with ARKit in SwiftUI", a model viewer for iOS, or any Apple-platform 3D/AR app where the dependency is the SceneViewSwift Swift Package from…

sceneview/sceneview · 148 tokens

sceneview

Build 3D and AR apps with the SceneView SDK in Jetpack Compose, SwiftUI (iOS/macOS/visionOS via SceneViewSwift), Web (Filament.js), Flutter and React Native. Use whenever the user asks for "3D in Compose", "AR with ARCore in Compose", a model viewer, or any cross-platform 3D/AR app where the dependency is…

sceneview/sceneview · 156 tokens

compose-animations

Use when writing or reviewing Jetpack Compose motion: visibility enter/exit, animating one property toward a target, color or size transitions, multiple properties from one state, switching composable content, or choosing between AnimatedVisibility, animateAsState, rememberTransition, AnimatedContent, and Crossfade.

chrisbanes/skills · 64 tokens