uiautomator2-mcp-server: Skill for Claude Code

.skills/release-manager/SKILL.md

release-manager is a skill for Claude Code, Codex from tanbro/uiautomator2-mcp-server. It costs 37 tokens per session (1,749 once invoked), scanned A, original, Apache-2.0.

A release-management skill for uiautomator2-mcp-server, a server that exposes Android user-interface automation through MCP. It covers checks, documentation updates, branch handling, merging, tagging, and pushing releases.

In plain words
What is it for?
Use it to evaluate release status, run checks, update documentation, merge develop into main or master, create the final Git tag, and push the release.
Why use it?
It provides an ordered release process so a version tag is created only after validation and the code is on the main branch. A tag is a fixed Git label identifying a released version.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is tanbro/uiautomator2-mcp-server's own configuration. It tells Claude Code and Codex how to work on uiautomator2-mcp-server 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 uiautomator2-mcp-server configures →

Reuse

Borrowing it

Nothing to install: this file belongs to tanbro/uiautomator2-mcp-server. 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/tanbro/uiautomator2-mcp-server/main/.skills/release-manager/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/tanbro/uiautomator2-mcp-server

Made for: Claude Code, Codex.

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-manager

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/tanbro/uiautomator2-mcp-server/release-manager"><img src="https://agentmods.dev/badge/skills/tanbro/uiautomator2-mcp-server/release-manager.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,749 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.00037 $0.01749
Opus 5 $0.00018 $0.00874
Sonnet 5 $0.00007 $0.00350
Haiku 4.5 $0.00004 $0.00175

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

Security

Grade A, and why

release-manager 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 11d 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.

.skills/release-manager/SKILL.md · 203 lines

How it starts

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

Release Manager Skill

⚠️ CRITICAL: Git Tag Timing & Branch Management

MOST IMPORTANT: Git tagging MUST happen at the EXACT LAST MOMENT before pushing to remote, on the main/master branch ONLY.

The Absolute Rule

Git tag creation is the FINAL step before pushing - nothing comes after it except git push.

Tag Timing Rules

WRONG: Tag during development/testing phase ❌ WRONG: Tag before final validation ❌ WRONG: Tag before merging to main/master ❌ WRONG: Tag on develop branch ❌ WRONG: Tag → then discover uncommitted files ❌ WRONG: Tag → then realize tests need to run ✅ CORRECT: All work complete → Merged to main/master → Tag (FINAL STEP) → Push

Branch Management Rules

  • Development happens on: develop branch
  • Release commits created on: develop branch
  • Merge direction: developmain (or master)
  • Tag location: main (or master) branch ONLY
  • Push order: Push main branch, then push tag

Why this matters:

  • Premature tagging creates broken releases where the tag points to incomplete/untested code
  • Tags on wrong branches cause version confusion and deployment issues
  • Proper branch isolation ensures clean release history
  • Tagging as the final step guarantees the tagged commit is exactly what gets published

Goals

  • Automate the complete release workflow from evaluation to publication
  • Ensure code quality and documentation completeness before release
  • Provide interactive release management with human oversight
  • Support both standard and emergency release scenarios
  • CRITICALLY: Enforce proper git tag timing to prevent broken releases

Prerequisites

  • Git repository with proper remote configuration
  • Python development environment with required tools installed
  • GitHub account with repository access permissions
  • Proper version control setup (main/develop branches)
  • Pre-commit hooks configured and working

Release Workflow Phases

Phase 1: Codebase Evaluation

  1. Assess current Git status and branch position
  2. Review recent commits and changes since last release
  3. Check version numbers and changelog entries
  4. CRITICAL: Verify all untracked files are handled (committed or .gitignore'd)
  5. Verify working directory is clean (no uncommitted changes)
  6. Evaluate overall project health and readiness

Read the full file on GitHub · 203 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 203 lines · 37 tokens per session scan A 1de7bf676943

Subscribe to this mod's changes

release-manager is a skill published in the GitHub repository tanbro/uiautomator2-mcp-server (41 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 37 tokens to every session and 1,749 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-30.

Related

Other skills, from other repositories

github-repo-management

Clone, create, fork, configure, and manage GitHub repositories. Manage remotes, secrets, releases, and workflows. Works with gh CLI or falls back to git + GitHub REST API via curl.

NeoLabs-Systems/NeoAgent · 47 tokens

github-pr-workflow

Full pull request lifecycle — create branches, commit changes, open PRs, monitor CI status, auto-fix failures, and merge. Works with gh CLI or falls back to git + GitHub REST API via curl.

NeoLabs-Systems/NeoAgent · 49 tokens

version-bump

Automated semantic versioning and release workflow for Claude Code plugins. Handles version increments across package.json, marketplace.json, plugin.json manifests, build verification, git tagging, GitHub releases, and changelog generation. NPM publishing is the final human-required handoff because the maintainer…

thedotmack/claude-mem · 64 tokens

batch

Research and plan a large-scale change, then execute it in parallel across 5–30 isolated worktree agents that each open a PR.

asgeirtj/system_prompts_leaks · 30 tokens

operating-github-cli

Default GitHub skill for the action agent. Use githubcli for any GitHub request — create/list/view/close issues and PRs, assign, labels, repos, releases, checks, github.com/owner/repo URLs, or gh api. Prefer over shellrun/!gh. Run these with githubcli in the current agent turn.

Tracer-Cloud/opensre · 75 tokens

github

Drive GitHub via the official gh CLI — repos, issues, pull requests, releases, gists, Actions runs, and raw REST through gh api. Use when the user asks to inspect or manage GitHub.

AtomicBot-ai/atomic-agent · 48 tokens