release — golang release, epsilon, community, golang, ide skills, webassembly, webassembly-runtime, Claude Code, Cursor, Windsurf

v1.0.0

About this Skill

Perfect for Development Agents needing automated release management capabilities. Use this skill when the user wants to cut a new release.

# Core Topics

ziggy42 ziggy42
[416]
[9]
Updated: 3/22/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 9/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
9/11
Quality Score
52
Canonical Locale
en
Detected Body Locale
en

Perfect for Development Agents needing automated release management capabilities. Use this skill when the user wants to cut a new release.

Core Value

Empowers agents to automate the release process, handling version determination, changelog generation, and git tagging, utilizing Git and supporting developers using Go and WebAssembly.

Ideal Agent Persona

Perfect for Development Agents needing automated release management capabilities.

Capabilities Granted for release

Automating version determination for new releases
Generating changelogs for release notes
Updating files and tagging releases in Git repositories

! Prerequisites & Limits

  • Requires Git repository access
  • Must be run from the 'main' branch
  • Limited to Go and WebAssembly projects

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

Perfect for Development Agents needing automated release management capabilities. Use this skill when the user wants to cut a new release.

How do I install release?

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

What are the use cases for release?

Key use cases include: Automating version determination for new releases, Generating changelogs for release notes, Updating files and tagging releases in Git repositories.

Which IDEs are compatible with 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 release?

Requires Git repository access. Must be run from the 'main' branch. Limited to Go and WebAssembly projects.

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 ziggy42/epsilon/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 release immediately in the current project.

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

release

Install 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
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

Release

Overview

This skill guides the agent through the process of cutting a new release for this project. It handles version determination, changelog generation, file updates, and git tagging.

Procedure

1. Preparation & Version Determination

  1. Check Branch: Run git branch --show-current. If the output is not main, stop and inform the user that releases must be cut from the main branch.
  2. Sync with Remote: Run git fetch origin main. Then verify local is up-to-date by running git rev-list HEAD..origin/main --count. If the count is non-zero, stop and inform the user that their local main is behind origin/main and they need to pull first.
  3. Check Working Tree: Run git status --porcelain.
    • CRITICAL: If the command produces ANY output (even for untracked files or documentation changes), you MUST ABORT IMMEDIATELY.
    • DO NOT attempt to analyze the changes.
    • DO NOT ask the user if they want to proceed.
    • STOP and inform the user: "Working tree is not clean. Please commit or stash changes before releasing."
  4. Check Current Version: Read epsilon/version.go to find the current version (e.g., "0.0.3").
  5. Determine Target Version:
    • User Provided: If the user specified a version, validate it. It must be semantically greater than the current version. If invalid, reject it and explain why.
    • Auto-Increment: If no version was provided, increment the patch level of the current version (e.g., 0.0.3 -> 0.0.4).
  6. Confirm: Briefly mention the plan to the user (e.g., "Preparing release for v0.0.4...").

2. Verification

  1. Build: Run go build ./.... If the build fails, stop and report the error.
  2. Run Tests: Run go test ./.... If tests fail, stop and report the errors.
  3. Compare Benchmarks: Find the previous release tag using git describe --tags --abbrev=0. Then run ./internal/benchmarks/compare.py --base <last_tag> --target . to compare performance against the last release. Present the results to the user and flag any significant regressions. NOTE: This process can take several minutes as it runs the full benchmark suite twice; ensure a reasonable timeout (e.g., 10m) is applied.

3. Changelog Generation

Only proceed if verification passes.

  1. Identify Range: Find the previous release tag using git describe --tags --abbrev=0.

  2. Fetch Commits: Run git log --no-merges --pretty=format:"%h %s%n%b" <last_tag>..HEAD.

  3. Draft Content: Analyze the commit messages (subject and body) to create a new CHANGELOG entry.

    • Deep Inspection: Look at the commit body for additional context. Squashed PRs often include a detailed list of changes, bullet points, or rationale in the description. Use this to create a more informative summary.

    • Audience: The changelog is for end users. Focus on changes that affect how users interact with the project.

    • Style: Mimic the existing style in CHANGELOG.md.

    • Filtering: Include only changes that matter to users: new features, bug fixes, API changes. Exclude chores, typos, refactoring, CI tweaks, and internal tooling changes.

    • Grouping: Group by category if appropriate (e.g., API Changes, Performance, Fixes).

    • Breaking Changes: Explicitly highlight any breaking changes.

    • Format:

      markdown
      1## [Version] - YYYY-MM-DD 2 3- Description of change (#PR or commit hash if available). 4- ...
  4. Review: Present the drafted CHANGELOG entry to the user and ask for confirmation. Do not proceed without user approval.

4. Execution

Only proceed after User Confirmation of the changelog.

  1. Update CHANGELOG.md:
    • Read CHANGELOG.md.
    • Insert the new entry at the top of the changelog (after the header section).
    • Write the file.
  2. Update Version:
    • Update epsilon/version.go with the new version string.
  3. Commit & Tag:
    • Run git add CHANGELOG.md epsilon/version.go.
    • Run git commit -m "Release version <Version>".
    • Run git tag v<Version>.
  4. Push:
    • Run git push origin main --tags.
  5. Finalize:
    • Inform the user the release is committed, tagged, and pushed.

Related Skills

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