Reusable skills for CLI coding agents.
Skills in this repo follow canonical folder format for progressive disclosure and lower token usage:
<skill-name>/
|-- SKILL.md
|-- agents/openai.yaml
`-- references/
Keep only core workflow and guardrails in SKILL.md. Move detailed tables, setup guides, and fallback matrices into references/.
Canonical path: android-release-bump/SKILL.md
What it handles:
- Recommend and apply
major/minor/patchbumps - Update
versionNameandversionCode - Generate localized Play release notes
- Run release verification checks
- Commit, tag, push, build signed AAB, and optionally upload to Internal Testing
cd your-android-project
mkdir -p .claude/skills
cp -R /path/to/agent-skills/android-release-bump .claude/skills/For reusable personal skills in the Codex Skills UI:
SKILL_ID="android-release-bump"
CODEX_HOME="${CODEX_HOME:-$HOME/.codex}"
mkdir -p "$CODEX_HOME/skills"
cp -R /path/to/agent-skills/android-release-bump "$CODEX_HOME/skills/$SKILL_ID"For repo-scoped behavior, use AGENTS.md in your project and reference or append android-release-bump/SKILL.md.
If an agent only supports a single markdown file, use android-release-bump/SKILL.md as the primary instructions and keep the referenced files available.
MIT