release — community release, leaner-waigaya, community, ide skills

v1.0.0

À propos de ce Skill

Idéal pour les agents de développement nécessitant une gestion de version simplifiée et des flux de travail de publication automatisés. 機密情報チェック→CHANGELOG生成→バージョンバンプ→コミット→タグ→プッシュのリリース作業を実行。「リリースしたい」「vX.Y.Z をリリース」と言った時に使用

leaner-co-jp leaner-co-jp
[0]
[0]
Updated: 3/2/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for teams, 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
33
Canonical Locale
ja
Detected Body Locale
ja

Idéal pour les agents de développement nécessitant une gestion de version simplifiée et des flux de travail de publication automatisés. 機密情報チェック→CHANGELOG生成→バージョンバンプ→コミット→タグ→プッシュのリリース作業を実行。「リリースしたい」「vX.Y.Z をリリース」と言った時に使用

Pourquoi utiliser cette compétence

Permet aux agents d'automatiser le processus de versionning en utilisant package.json, assurant des transitions fluides entre les versions et fournissant des vérifications d'état de git, le tout en utilisant gitleaks pour la détection et la validation des secrets.

Meilleur pour

Idéal pour les agents de développement nécessitant une gestion de version simplifiée et des flux de travail de publication automatisés.

Cas d'utilisation exploitables for release

Automatiser la gestion des publications pour les nouvelles versions
Valider l'état de git pour les commits propres
Détecter les fuites de secrets en utilisant gitleaks

! Sécurité et Limitations

  • Nécessite l'installation de git et de gitleaks
  • Limité à la gestion de version de package.json
  • Nécessite une confirmation utilisateur pour la publication

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?

Idéal pour les agents de développement nécessitant une gestion de version simplifiée et des flux de travail de publication automatisés. 機密情報チェック→CHANGELOG生成→バージョンバンプ→コミット→タグ→プッシュのリリース作業を実行。「リリースしたい」「vX.Y.Z をリリース」と言った時に使用

How do I install release?

Run the command: npx killer-skills add leaner-co-jp/leaner-waigaya/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: Automatiser la gestion des publications pour les nouvelles versions, Valider l'état de git pour les commits propres, Détecter les fuites de secrets en utilisant gitleaks.

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?

Nécessite l'installation de git et de gitleaks. Limité à la gestion de version de package.json. Nécessite une confirmation utilisateur pour la publication.

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 leaner-co-jp/leaner-waigaya/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

Leaner Waigaya リリース手順

引数として新バージョン(例: 1.4.0)を受け取り、以下の手順でリリース作業を行う。

手順

1. 準備確認

  • 引数の <version> から v プレフィックスを除去して正規化する(例: v1.4.01.4.0
  • package.json の現在バージョンを読んで直前タグ(例: v1.3.0)を確認する
  • ユーザーに確認する:「現在 X.Y.Z → v{version} にリリースします。よろしいですか?」
  • git status でコミットされていない変更がないか確認する(あれば警告)

2. 機密情報チェック(gitleaks)

直前タグからHEADまでの差分を gitleaks でスキャンする:

bash
1gitleaks detect --log-opts="-p v{prevVersion}..HEAD"
  • 検出あり: リリースを中断し、該当箇所をユーザーに報告する
  • 検出なし: 「機密情報は検出されませんでした」と報告して次へ進む

3. CHANGELOG.md 生成

git log v{prevVersion}..HEAD --oneline でコミット一覧を取得し、内容を読んで以下の形式で CHANGELOG.md の先頭に追記する(既存の CHANGELOG.md がなければ新規作成):

markdown
1## [X.Y.Z] - YYYY-MM-DD 2 3### Added 4- 新機能の説明 5 6### Fixed 7- バグ修正の説明 8 9### Changed 10- 変更の説明
  • バージョンバンプ用コミットメッセージ(例: "v1.3.0 リリース")はChangelog から除外する
  • コミットメッセージから内容を推測して適切なカテゴリに分類する

4. バージョンバンプ(3ファイル同時更新)

以下の3ファイルのバージョン文字列を更新する:

ファイル更新箇所
package.json"version": "..."
src-tauri/Cargo.tomlversion = "..."
src-tauri/tauri.conf.json"version": "..."

5. package-lock.json 更新

bash
1npm install --package-lock-only

6. コミット

bash
1git add CHANGELOG.md package.json package-lock.json src-tauri/Cargo.toml src-tauri/tauri.conf.json 2git commit -m "v{version} リリース"

7. タグ作成 & プッシュ

bash
1git tag v{version} 2git push origin main 3git push origin v{version}

8. 完了報告

リリース完了後、以下を報告する:

  • タグ v{version} を作成してプッシュした旨
  • GitHub Actions が自動ビルド・リリースを実行している旨
  • GitHub のリリースページ URL(リポジトリ: leaner-co-jp/leaner-waigaya

Compétences associées

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

Voir tout

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

Générez des plugins de widgets personnalisables pour le système de flux prompts.chat

flags

Logo of vercel
vercel

Le Cadre de Réaction

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Tenseurs et réseaux neuronaux dynamiques en Python avec une forte accélération GPU

98.6k
0
Développeur