github-release — community github-release, TransFlow, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Ideal for AI Agents like AutoGPT and LangChain requiring automated GitHub release management with DMG attachments. Real-time speech transcription & translation for macOS — fully offline, privacy-first

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

Agent Capability Analysis

The github-release skill by Cyronlee is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Ideal for AI Agents like AutoGPT and LangChain requiring automated GitHub release management with DMG attachments.

Core Value

Empowers agents to publish new software versions to GitHub Releases with DMG attachments, leveraging the gh CLI and create-dmg tools for streamlined release workflows, while ensuring privacy-first and fully offline real-time speech transcription and translation capabilities for macOS.

Capabilities Granted for github-release

Publishing TransFlow versions to GitHub Releases
Automating DMG attachment creation for macOS releases
Streamlining release workflows with gh CLI and create-dmg integration

! Prerequisites & Limits

  • Requires gh CLI installed and authenticated
  • Needs create-dmg installed via brew
  • Demands Xcode Command Line Tools and a clean working directory
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

github-release

Install github-release, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

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

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 AI Agents like AutoGPT and LangChain requiring automated GitHub release management with DMG attachments. Real-time speech transcription & translation for macOS — fully offline, privacy-first

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: Publishing TransFlow versions to GitHub Releases, Automating DMG attachment creation for macOS releases, Streamlining release workflows with gh CLI and create-dmg integration.

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 via brew. Demands Xcode Command Line Tools and a clean working directory.

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.

Related Skills

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

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI