github-release — community github-release, TransFlow, community, ide skills

v1.0.0

About this Skill

Ideal for Release Management Agents needing automated GitHub Releases with DMG attachments Publish a new GitHub Release for TransFlow with version bump, release notes, DMG build, and gh CLI. Use when the user asks to release a version, publish a release, create a GitHub release, or mentions

Cyronlee Cyronlee
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
7/11
Quality Score
42
Canonical Locale
en
Detected Body Locale
en

Ideal for Release Management Agents needing automated GitHub Releases with DMG attachments Publish a new GitHub Release for TransFlow with version bump, release notes, DMG build, and gh CLI. Use when the user asks to release a version, publish a release, create a GitHub release, or mentions

Core Value

Empowers agents to publish new TransFlow versions to GitHub Releases with DMG attachments using the `gh` CLI and `create-dmg` tools, streamlining release management with Xcode Command Line Tools and git tags

Ideal Agent Persona

Ideal for Release Management Agents needing automated GitHub Releases with DMG attachments

Capabilities Granted for github-release

Automating TransFlow version releases to GitHub
Generating DMG attachments for GitHub Releases
Parsing target versions from user requests for efficient release management

! Prerequisites & Limits

  • Requires `gh` CLI installed and authenticated
  • Needs `create-dmg` installed
  • Dependent on Xcode Command Line Tools
  • Requires a clean working directory with no uncommitted changes unrelated to release

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is github-release?

Ideal for Release Management Agents needing automated GitHub Releases with DMG attachments Publish a new GitHub Release for TransFlow with version bump, release notes, DMG build, and gh CLI. Use when the user asks to release a version, publish a release, create a GitHub release, or mentions

How do I install github-release?

Run the command: npx killer-skills add Cyronlee/TransFlow/github-release. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for github-release?

Key use cases include: Automating TransFlow version releases to GitHub, Generating DMG attachments for GitHub Releases, Parsing target versions from user requests for efficient release management.

Which IDEs are compatible with github-release?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for github-release?

Requires `gh` CLI installed and authenticated. Needs `create-dmg` installed. Dependent on Xcode Command Line Tools. Requires a clean working directory with no uncommitted changes unrelated to release.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Cyronlee/TransFlow/github-release. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use github-release immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

github-release

Install github-release, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

GitHub Release

Publish a new TransFlow version to GitHub Releases with DMG attachment.

Prerequisites

  • gh CLI installed and authenticated (gh auth status)
  • create-dmg installed (brew install create-dmg)
  • Xcode Command Line Tools
  • Working directory clean (no uncommitted changes unrelated to release)

Workflow

Parse the target version from the user's request (e.g. "发布 v1.2.0" → 1.2.0). Strip the v prefix for version strings used in code; keep v prefix for git tags.

Task Progress:
- [ ] Step 1: Pre-flight checks
- [ ] Step 2: Update version numbers
- [ ] Step 3: Generate release notes
- [ ] Step 4: Commit, tag, push
- [ ] Step 5: Build DMG locally
- [ ] Step 6: Create GitHub Release with DMG
- [ ] Step 7: Verify release

Step 1: Pre-flight checks

Run in parallel:

  • gh auth status — confirm GitHub CLI is authenticated
  • git status — confirm working directory is clean (or only has expected changes)
  • git log --oneline -20 — review recent commits for release notes

Step 2: Update version numbers

Update MARKETING_VERSION in all 6 locations inside project.pbxproj:

bash
1# File: TransFlow/TransFlow.xcodeproj/project.pbxproj 2# Replace all occurrences: 3MARKETING_VERSION = <old>; → MARKETING_VERSION = <new>;

Update fallback version strings in Swift source:

FileWhat to change
TransFlow/TransFlow/Models/JSONLModels.swift?? "X.Y.Z" fallback in init
TransFlow/TransFlow/Views/SettingsView.swift?? "X.Y.Z" fallback in appVersionString

Step 3: Generate release notes

Create release-notes/vX.Y.Z.md based on git log since the last tag (or all commits if first release).

Convention: All release notes live in the release-notes/ directory at the repo root, named v<version>.md (e.g. release-notes/v1.0.0.md).

Release notes template:

markdown
1# TransFlow vX.Y.Z 2 3[One-line summary of this release] 4 5## What's New 6- Feature 1 7- Feature 2 8 9## Improvements 10- Improvement 1 11 12## Bug Fixes 13- Fix 1 (if any) 14 15## System Requirements 16- macOS 15.0 or later 17- Apple Silicon (arm64) or Intel (x86_64)

If there is a previous tag, use git log <prev-tag>..HEAD --oneline to scope changes.

Step 4: Commit, tag, push

bash
1git add -A 2git commit -m "release: bump version to vX.Y.Z" 3git tag -a vX.Y.Z -m "TransFlow vX.Y.Z" 4git push origin main --tags

Step 5: Build DMG locally

bash
1./scripts/build-dmg.sh --clean --sign
  • --sign auto-detects signing identity and auto-loads project entitlements (microphone, etc.)
  • The build disables Xcode signing; the script handles signing separately for consistency
  • Signing identity: 5JNN9A6Z6X, Team ID: 8RQVLSP2SC
  • Set block_until_ms to 300000 (5 min) — build + DMG takes time
  • Output: build/TransFlow-X.Y.Z.dmg
  • Verify the DMG file exists and is non-empty before proceeding

Step 6: Create GitHub Release

bash
1gh release create vX.Y.Z \ 2 --title "TransFlow vX.Y.Z" \ 3 --notes-file release-notes/vX.Y.Z.md \ 4 ./build/TransFlow-X.Y.Z.dmg

Step 7: Verify release

bash
1gh release view vX.Y.Z

Confirm:

  • Title and tag are correct
  • draft: false, prerelease: false
  • DMG asset is listed with non-zero size
  • Release notes render correctly

Report the release URL to the user.

Error Handling

ErrorAction
gh auth failsAsk user to run gh auth login
xcodebuild failsCheck build errors, fix, retry
create-dmg exit code ≠ 0 and ≠ 2Check script output for details
gh release create failsCheck if tag already has a release; use gh release delete vX.Y.Z then retry
DMG file missing after buildCheck build/ directory; re-run build script

Related Skills

Looking for an alternative to github-release or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer