release — agentcoding release, community, agentcoding, ide skills, openspec

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 を更新し、バージョンをアップデートし、package.json ファイルとパッチ、ミノール、マジョーのようなバージョンアップタイプを使用して CI/CD パイプラインをトリガーします。

おすすめ

自動化されたコンテンツのデプロイとバージョン管理が必要な開発エージェントに最適です。

実現可能なユースケース 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/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: 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/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

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. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

カスタマイズ可能なウィジェットプラグインをprompts.chatのフィードシステム用に生成する

149.6k
0
AI

flags

Logo of vercel
vercel

React フレームワーク

138.4k
0
ブラウザ

pr-review

Logo of pytorch
pytorch

Pythonにおけるテンソルと動的ニューラルネットワーク(強力なGPUアクセラレーション)

98.6k
0
開発者