release — agentcoding release, community, agentcoding, ide skills, openspec, Claude Code, Cursor, Windsurf

v1.1

Об этом навыке

Идеально подходит для агентов разработки, которым требуется автоматизированная развертка контента и управление версиями. Automate spek release — update CHANGELOGs, bump version, and push tag to trigger CI/CD publish. Use when the user wants to release a new version.

# Core Topics

kewang kewang
[5]
[1]
Updated: 3/11/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
Review Score
7/11
Quality Score
44
Canonical Locale
en
Detected Body Locale
en

Идеально подходит для агентов разработки, которым требуется автоматизированная развертка контента и управление версиями. Automate spek release — update CHANGELOGs, bump version, and push tag to trigger CI/CD publish. Use when the user wants to release a new version.

Зачем использовать этот навык

Позволяет агентам автоматизировать процесс развертки контента OpenSpec, обновляя CHANGELOG, увеличивая версии и запуская конвейеры CI/CD с использованием файлов package.json и типов увеличения версии, таких как patch, minor и major.

Подходит лучше всего

Идеально подходит для агентов разработки, которым требуется автоматизированная развертка контента и управление версиями.

Реализуемые кейсы использования for release

Автоматизировать процессы выпуска OpenSpec
Обновлять CHANGELOG и увеличивать версии
Запускать конвейеры CI/CD для бесшовной развертки

! Безопасность и ограничения

  • Требует наличия файлов OpenSpec и package.json
  • Требует доступа к системам контроля версий для тегирования и публикации

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?

Идеально подходит для агентов разработки, которым требуется автоматизированная развертка контента и управление версиями. Automate spek release — update CHANGELOGs, bump version, and push tag to trigger CI/CD publish. Use when the user wants to release a new version.

How do I install release?

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

What are the use cases for release?

Key use cases include: Автоматизировать процессы выпуска OpenSpec, Обновлять CHANGELOG и увеличивать версии, Запускать конвейеры CI/CD для бесшовной развертки.

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?

Требует наличия файлов OpenSpec и package.json. Требует доступа к системам контроля версий для тегирования и публикации.

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 kewang/spek. 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. 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

Automate the spek release process — update CHANGELOGs, bump version, create tag, and push to trigger CI/CD.

Input: Optionally specify a version bump type (patch, minor, major) or an explicit version (e.g., 0.3.0). If omitted, ask.

Steps

  1. Determine version bump

    If the user provided a bump type or version, use it. Otherwise, use AskUserQuestion to ask:

    Options: patch, minor, major

    Show the current version from root package.json and what each option would result in.

  2. Gather changelog content

    Look at archived changes since the last release to identify what's new:

    • Check openspec/changes/archive/ for changes archived after the last release
    • Check recent git commits for context
    • Draft changelog bullet points summarizing user-facing changes

    Show the draft and ask the user to confirm or edit.

  3. Update CHANGELOGs

    Update ALL THREE changelog files (they must stay in sync per project convention):

    • CHANGELOG.md (root)
    • packages/vscode/CHANGELOG.md
    • packages/intellij/CHANGELOG.md

    Add a new version section at the top with the changelog content.

  4. Commit changelog updates

    bash
    1git add CHANGELOG.md packages/vscode/CHANGELOG.md packages/intellij/CHANGELOG.md 2git commit -m "Update CHANGELOG for v<version>"
  5. Rebuild demo page

    Rebuild docs/demo.html so it reflects the latest code and openspec content:

    bash
    1npm run build:demo

    Stage the updated demo file:

    bash
    1git add docs/demo.html 2git commit -m "Rebuild demo for v<version>"
  6. Run npm version

    bash
    1npm version <type-or-version> --no-git-tag-version

    Wait — the version lifecycle script in package.json auto-syncs to packages/vscode/package.json and packages/intellij/gradle.properties.

    Actually, use the standard flow which auto-commits and tags:

    bash
    1npm version <type-or-version>

    This will:

    • Bump root package.json version
    • Run version script (syncs packages/vscode/package.json + packages/intellij/gradle.properties + git add)
    • Create git commit with version
    • Create v<version> git tag
  7. Push to trigger CI/CD

    Ask the user for confirmation before pushing:

    "Ready to push v<version> to origin? This will trigger the CI/CD pipelines to publish to VS Code Marketplace and JetBrains Marketplace."

    bash
    1git push --follow-tags
  8. Show summary

    Display:

    • New version number
    • Changelog content
    • Git tag created
    • CI/CD status: "Pushed. GitHub Actions will publish to VS Code Marketplace and JetBrains Marketplace."
    • Remind: "Monitor the workflows at: https://github.com/<owner>/<repo>/actions"

Guardrails

  • ALWAYS update all three CHANGELOGs (root + vscode + intellij) — they must be identical
  • ALWAYS confirm with user before git push
  • If there are uncommitted changes, warn and ask to stash or commit first
  • If the working tree is dirty after changelog update, stage only changelog files
  • Do NOT push without explicit user confirmation

Связанные навыки

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

Показать все

openclaw-release-maintainer

Logo of openclaw
openclaw

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

widget-generator

Logo of f
f

Создание настраиваемых плагинов виджетов для системы ленты новостей prompts.chat

flags

Logo of vercel
vercel

Фреймворк React

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Разработчик