release — proceso de release de AI Agent release, ruby-slippers, community, proceso de release de AI Agent, ide skills, configuración de versión de AI Agent, lanzamiento de AI Agent, gestión de versiones de AI Agent, CHANGELOG.md, registros de cambios de AI Agent

v1.0.0

Acerca de este Skill

Perfecto para Agentes de Desarrollo que necesitan administración de lanzamiento automatizada y control de versiones. Un release de AI Agent es un proceso que implica la publicación de una nueva versión de un agente de inteligencia artificial

Características

Configuración de la versión basada en los registros de cambios
Determinación del tipo de lanzamiento según el nombre de la etiqueta
Verificación de los registros de cambios antes del lanzamiento
Compatibilidad con lanzamientos alpha, beta y de producción
Integración con CHANGELOG.md para la gestión de versiones

# Core Topics

mckalexee mckalexee
[0]
[0]
Updated: 2/23/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/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
Review Score
8/11
Quality Score
44
Canonical Locale
en
Detected Body Locale
en

Perfecto para Agentes de Desarrollo que necesitan administración de lanzamiento automatizada y control de versiones. Un release de AI Agent es un proceso que implica la publicación de una nueva versión de un agente de inteligencia artificial

¿Por qué usar esta habilidad?

Habilita a los agentes a automatizar el proceso de publicación utilizando entradas de CHANGELOG.md, determinando tipos y versiones de lanzamiento y soportando nombres de etiquetas para versiones Alpha, Beta y de Lanzamiento, al mismo tiempo que garantiza controles previos al vuelo para entradas no publicadas.

Mejor para

Perfecto para Agentes de Desarrollo que necesitan administración de lanzamiento automatizada y control de versiones.

Casos de uso accionables for release

Automatizar procedimientos de lanzamiento en función de actualizaciones de registro de cambios
Determinar tipos y versiones de lanzamiento a partir de nombres de etiquetas
Realizar verificaciones previas al vuelo para entradas no publicadas en CHANGELOG.md

! Seguridad y limitaciones

  • Requiere instrucción explícita del usuario para publicar
  • Dependiente del formato y contenido de CHANGELOG.md
  • Limitado a tipos de lanzamiento específicos (Alpha, Beta, Lanzamiento)

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - 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 release?

Perfecto para Agentes de Desarrollo que necesitan administración de lanzamiento automatizada y control de versiones. Un release de AI Agent es un proceso que implica la publicación de una nueva versión de un agente de inteligencia artificial

How do I install release?

Run the command: npx killer-skills add mckalexee/ruby-slippers/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: Automatizar procedimientos de lanzamiento en función de actualizaciones de registro de cambios, Determinar tipos y versiones de lanzamiento a partir de nombres de etiquetas, Realizar verificaciones previas al vuelo para entradas no publicadas en CHANGELOG.md.

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?

Requiere instrucción explícita del usuario para publicar. Dependiente del formato y contenido de CHANGELOG.md. Limitado a tipos de lanzamiento específicos (Alpha, Beta, Lanzamiento).

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 mckalexee/ruby-slippers/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.

! 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

release

Install 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

Release Procedure

NEVER run this without explicit user instruction to publish.

Inputs

  • Version: provided as $ARGUMENTS, or ask the user. Suggest based on ## Unreleased content in CHANGELOG.md: all bug fixes → patch bump, any new features → minor bump.
  • Release type: determined by tag name — 1.2.0 = Release, 1.2.0-beta1 = Beta, 1.2.0-alpha1 = Alpha.

Pre-flight Checks

  1. Read CHANGELOG.md and confirm there are entries under ## Unreleased. If empty, stop and ask.
  2. Run git status — working tree must be clean. If not, stop and ask.
  3. Run git log --oneline -5 — confirm we're on main (or a hotfix/* branch if doing a hotfix release).
  4. Confirm the version number with the user before proceeding.

Final Release (e.g., 1.2.0)

  1. In CHANGELOG.md:
    • Rename ## Unreleased## X.Y.Z - YYYY-MM-DD (today's date).
    • Add a fresh ## Unreleased section with no entries above it.
  2. Copy only the new version's section (the ## X.Y.Z - date heading and its bullet points) into RELEASE_NOTES.md, replacing its entire contents.
  3. Commit all changes: "Release X.Y.Z"
  4. Push the commit.
  5. Tag and push: git tag X.Y.Z && git push --tags
  6. Confirm: the GitHub Actions workflow will build and upload to CurseForge + create a GitHub Release. Show the user the Actions URL.

Pre-release (e.g., 1.2.0-beta1)

Pre-releases do NOT rename the Unreleased section — 1.2.0 isn't final yet.

  1. Do NOT modify CHANGELOG.md headings. The ## Unreleased section stays as-is.
  2. Copy the current ## Unreleased content (just the bullet points, not the heading) into RELEASE_NOTES.md, replacing its entire contents. Add a heading like ## 1.2.0-beta1 at the top.
  3. Commit: "Pre-release X.Y.Z-betaN"
  4. Push the commit.
  5. Tag and push: git tag X.Y.Z-betaN && git push --tags
  6. The packager marks this as Beta/Alpha on CurseForge automatically.

After Release

  • Verify the GitHub Actions run started: gh run list --limit 1
  • Tell the user the release is in progress and link to the Actions run.

Habilidades relacionadas

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

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Generar complementos de widgets personalizables para el sistema de feeds de prompts.chat

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

El Marco de React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensores y redes neuronales dinámicas en Python con fuerte aceleración de GPU

98.6k
0
Desarrollador