🚀
DevOpsPython

Releasing

by alexei-led

Releasing is a DevOps skill for Claude Code, published by alexei-led in ccgram.

259 stars76 forkson alexei-led/ccgramAdded 2026/09/02+3% in starsRepository updated 2026/08/31
agtermai-codingclaude-codeclicodexcodex-clideveloper-toolsgeminigemini-cliherdrpi-agentpythontelegramtelegram-bottmux
Install in seconds
Install Releasing
Copy Releasing into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/alexei-led/ccgram/tree/main/.claude/skills/releasing ~/.claude/skills/releasing

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/alexei-led/ccgram.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
.claude/skills/releasing/SKILL.md in alexei-led/ccgram
Installs to
~/.claude/skills/releasing
Collection
The only skill cataloged from this repository
Category
DevOps828 skills

What Releasing does

Releasing handles the full version cut flow: pre-flight checks, version bumping, changelog generation, release note drafting, tagging, and publishing. Use it when cutting a new version or preparing a release.

Releasing is cataloged under DevOps on DirSkills. Releasing comes from a repository tagged agterm, ai-coding, claude-code, cli and codex.

Documentation

README

Release

Tag and publish a new version with rich, narrative release notes.

Step 1: Pre-flight

Run in parallel:

git branch --show-current          # Must be main
git status --porcelain             # Must be clean
git log origin/main..HEAD --oneline  # Must be empty (all pushed)

If any fail: report and stop.

Run make check — all must pass.

Step 2: Determine Version

Get the last tag:

git describe --tags --abbrev=0

Parse $ARGUMENTS:

  • If a semver like 2.4.0 → use it directly
  • If patch / minor / major → bump the last tag accordingly
  • If empty → analyze commits since last tag to suggest:
    • feat commits → minor
    • Only fix/docs/refactor → patch
    • Breaking changes → major
    • Present suggestion, ask user to confirm

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Releasing

  • How does Releasing compare to other DevOps skills?

    Releasing ranks #730 by stars among the 828 DevOps skills in this catalog. The most-starred ones next to it are Backend Patterns, API Connector Builder and Migration. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Releasing against them. Open each page to compare what they document and how they install.