release-app — community release-app, Caffee, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for macOS-focused Agents needing automated app release management with Swift compatibility. Bộ gõ tiếng Việt đơn giản nhất (native cho mac, viết bằng Swift, support macOS 14+ Sonoma trở lên)

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

Agent Capability Analysis

The release-app skill by khanhicetea 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

Perfect for macOS-focused Agents needing automated app release management with Swift compatibility.

Core Value

Empowers agents to extract version information from filenames, verify app existence, and rename apps to a standardized format, leveraging macOS 14+ Sonoma support and Swift programming.

Capabilities Granted for release-app

Automating app version extraction for release notes
Verifying app existence before deployment
Renaming apps to a consistent format for easier management

! Prerequisites & Limits

  • Requires macOS 14+ Sonoma or later
  • Limited to apps with filenames in the 'Caffee-v{VERSION}.app' format
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

release-app

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

SKILL.md
Readonly

Instructions

When the user invokes this skill with an app path:

  1. Extract version from filename

    • The app filename format is Caffee-v{VERSION}.app (e.g., Caffee-v1.18.0.app)
    • Extract the version string including the 'v' prefix (e.g., v1.18.0)
    • Also extract just the number part for display (e.g., 1.18.0)
  2. Verify the app exists

    • Check if the provided app path exists
    • If not, report error and stop
  3. Rename app to Caffee.app

    • Copy/rename the app to Caffee.app in the same directory
    • This ensures consistent naming when users install the app
    • Example: cp -R ~/Documents/Caffee-v1.18.0 ~/Documents/Caffee.app
  4. Create DMG

    • Run: create-dmg Caffee.app . (use the renamed Caffee.app) (use which for get path)
    • This creates a DMG in the current directory
    • Rename the output to Caffee-{VERSION}.dmg (e.g., Caffee-v1.18.0.dmg)
    • Clean up: remove the temporary Caffee.app copy
  5. Sign the DMG

    • Run: sign_update Caffee-{VERSION}.dmg (use which for get path)
    • Capture the output which contains:
      • sparkle:edSignature="..."
      • length="..."
    • Parse and extract the signature and file size
  6. Get file size and checksum

    • Get file size: stat -f%z Caffee-{VERSION}.dmg
    • Get SHA256 checksum: shasum -a 256 Caffee-{VERSION}.dmg
  7. Update web/appcast.xml

    • Add a new <item> element at the top of the channel (before existing items)
    • Use current date in RFC 2822 format for pubDate
    • The download URL format: https://github.com/khanhicetea/Caffee/releases/download/{VERSION}/Caffee-{VERSION}.dmg
    • Include the signature and length from sign_update output
    • If release notes provided, use them; otherwise generate from git log since previous version
    • the sparkle:version should be integer, e.g., 11901 (1.19.1 => 110000 + 19100 + 1)
  8. Update web/index.html

    • Update the download button version text and link
    • Add new release notes entry in the Release Notes section with checksum
    • Release notes (changelogs) translate into Vietnamese
  9. Update web/download.html

    • Update the meta refresh URL to point to the new DMG release
    • Update the direct download link in the body
    • URL format: https://github.com/khanhicetea/Caffee/releases/download/{VERSION}/Caffee-{VERSION}.dmg
  10. Summary

  • Show summary of what was done
  • Show the DMG path for upload to GitHub
  • Remind user to:
    • Upload DMG to GitHub releases at the tag {VERSION}
    • Deploy updated web files

Example appcast.xml item format

xml
1<item> 2 <title>Version 1.18.0</title> 3 <sparkle:version>1</sparkle:version> 4 <sparkle:shortVersionString>1.18.0</sparkle:shortVersionString> 5 <sparkle:minimumSystemVersion>13.0</sparkle:minimumSystemVersion> 6 <pubDate>Thu, 30 Jan 2026 12:00:00 +0700</pubDate> 7 <enclosure 8 url="https://github.com/khanhicetea/Caffee/releases/download/v1.18.0/Caffee-v1.18.0.dmg" 9 sparkle:edSignature="SIGNATURE_HERE" 10 length="12345678" 11 type="application/octet-stream" 12 /> 13 <description><![CDATA[ 14 <h2>What's New</h2> 15 <ul> 16 <li>Release notes here</li> 17 </ul> 18 ]]></description> 19</item>

Example index.html updates

Download button (around line 64):

html
1<button class="secondary" onclick="location.href='/download.html?v=1.18.0'"> 2 Tải app tại đây (v1.18.0) 3</button>

Release notes section (after line 240):

html
1<div> 2 <h5>v1.18.0</h5> 3 <ul> 4 <li>Checksum sha256 (Caffee-v1.18.0.dmg) : 5 <code>CHECKSUM_HERE</code> 6 </li> 7 <li>Release notes here</li> 8 </ul> 9 <hr /> 10</div>

Example download.html updates

Meta refresh tag (line 9):

html
1<meta 2 http-equiv="refresh" 3 content="2; URL=https://github.com/khanhicetea/Caffee/releases/download/v1.18.0/Caffee-v1.18.0.dmg" 4/>

Direct download link (line 24):

html
1<a 2 href="https://github.com/khanhicetea/Caffee/releases/download/v1.18.0/Caffee-v1.18.0.dmg" 3 >bấm vào đây để tải ngay</a 4>

FAQ & Installation Steps

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

? Frequently Asked Questions

What is release-app?

Perfect for macOS-focused Agents needing automated app release management with Swift compatibility. Bộ gõ tiếng Việt đơn giản nhất (native cho mac, viết bằng Swift, support macOS 14+ Sonoma trở lên)

How do I install release-app?

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

What are the use cases for release-app?

Key use cases include: Automating app version extraction for release notes, Verifying app existence before deployment, Renaming apps to a consistent format for easier management.

Which IDEs are compatible with release-app?

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 release-app?

Requires macOS 14+ Sonoma or later. Limited to apps with filenames in the 'Caffee-v{VERSION}.app' format.

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 khanhicetea/Caffee/release-app. 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 release-app immediately in the current project.

Related Skills

Looking for an alternative to release-app 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