Skip to content

Production-ready Coding Agent skills for development automation, release management, and productivity workflows

Notifications You must be signed in to change notification settings

zurche/agent-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 

Repository files navigation

CLI Agent Skills Collection

Reusable skills for CLI coding agents.

Skill Format

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

Available Skills

Android Release Bump

Canonical path: android-release-bump/SKILL.md

What it handles:

  • Recommend and apply major/minor/patch bumps
  • Update versionName and versionCode
  • Generate localized Play release notes
  • Run release verification checks
  • Commit, tag, push, build signed AAB, and optionally upload to Internal Testing

Installation

Claude Code

cd your-android-project
mkdir -p .claude/skills
cp -R /path/to/agent-skills/android-release-bump .claude/skills/

OpenAI Codex CLI

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.

Other Agents

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.

License

MIT

About

Production-ready Coding Agent skills for development automation, release management, and productivity workflows

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors