Back to skills
SkillHub ClubShip Full StackFull Stack

push-tag

Push a version tag and optionally create a GitHub release

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
240
Hot score
98
Updated
March 20, 2026
Overall rating
C3.2
Composite score
3.2
Best-practice grade
B84.0

Install command

npx @skill-hub/cli install spirimirror-libuipc-push-tag

Repository

spiriMirror/libuipc

Skill path: .cursor/skills/push-tag

Push a version tag and optionally create a GitHub release

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: spiriMirror.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install push-tag into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/spiriMirror/libuipc before adding push-tag to shared team environments
  • Use push-tag for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: push-tag
description: Push a version tag and optionally create a GitHub release
disable-model-invocation: true
---

# Push Tag

## Overview

Push a new tag to the upstream repository. Optionally create a GitHub release.

## Steps

1. **Verify branch**
   ```bash
   git branch --show-current
   ```
   - Must be on `main` branch. If not, switch: `git checkout main`

2. **Determine tag version**
   ```bash
   git tag --list
   ```
   - If user provides a tag: validate it doesn't exist and is greater than latest
   - If no tag provided: auto-increment patch version (e.g., `v1.2.3` → `v1.2.4`)

3. **Create and push tag**
   ```bash
   git tag <TAG>
   git push origin refs/tags/<TAG>
   ```

4. **Create release (if requested)**
   - **Generate structured release notes** (do not use `--generate-notes`):
     1. Get commits between previous tag and `<TAG>`:
        ```bash
        git log <PREV_TAG>..<TAG> --pretty=format:'%s' --no-merges
        ```
     2. **Summarize and structure** the changes into clear sections, e.g.:
        - **Features** – new functionality
        - **Fixes** – bug fixes
        - **Documentation** – docs, examples, guides
        - **Refactor / Chore** – internal changes, deps, tooling
     3. Use concise, user-facing language. Group related changes. Avoid raw commit hashes or jargon unless helpful.
     4. Write notes to a temp file (e.g. `release_notes.md`) and create the release:
        ```bash
        gh release create <TAG> --repo spiriMirror/libuipc --notes-file release_notes.md
        rm release_notes.md
        ```

**Note:** Always use `--repo spiriMirror/libuipc` to reference the upstream repository.