Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

deploy-release部署发布

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

1,283

周安装

54

GitHub Stars

28

下载量

449
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:deploy-release(部署发布)
来源仓库:https://github.com/laurigates/claude-plugins
仓库路径:skills/deploy-release
安装命令:
npx skills add https://github.com/laurigates/claude-plugins --skill deploy-release
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill deploy-release

简介

创建 GitHub 发布版本,支持 release-please 自动化或手动容器化应用发布流程。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中版本切割与预发布草稿管理。
  • 可生成 changelog、标记 draft 状态,并与容器镜像上传联动。
  • 安装命令为 npx skills add https://github.com/laurigates/claude-plugins --skill deploy-release。
  • 包含 shell 命令指令,安装前务必审查 !`command` 内容以防误执行危险操作。

SKILL.md

Release Creation Command

Create GitHub releases using release-please automation or manual release workflows for containerized applications.

When to Use

ScenarioUse this skillAlternative
Cutting a new release from mainYes-
Setting up release-please automationYes-
Creating a manual GitHub releaseYes-
Publishing a pre-release or draftYes-
Deploying to KubernetesNodeploy-handoff for handoff docs
Building container imagesNocontainer-development for Dockerfiles
Tagging without a GitHub releaseNoUse git tag directly

Context

  • Git remotes:!git remote -v
  • Branch:!git branch --show-current
  • Recent tags:!git tag --sort=-v:refname -l 'v*' --format='%(refname:short)' -n5
  • Last release commit:!git log --oneline --max-count=5
  • Release config:!find. -maxdepth 1 -name 'release-please-config.json'
  • Manifest:!find. -maxdepth 1 -name '.release-please-manifest.json'
  • Changelog:!find. -maxdepth 1 -name 'CHANGELOG.md'

Parameters

Parse from $ARGUMENTS:

  • $1 (VERSION): Semantic version string (e.g., 1.2.0, v2.0.0-rc.1)
  • --draft: Create release as draft (not published)
  • --prerelease: Mark as pre-release

Execution

Execute this release workflow:

Step 1: Determine release strategy

Check whether the project uses release-please or manual releases:

  1. If release-please-config.json exists, use the release-please workflow
  2. If no release-please config exists, use the manual release workflow

Step 2a: Release-please workflow

If release-please is configured:

  1. Verify conventional commits exist since last release tag
  2. Check for an open release PR: gh pr list --label "autorelease: pending" --json number,title,url
  3. If a release PR exists, report its status and URL
  4. If no release PR exists, explain that release-please creates PRs automatically from conventional commits
  5. Provide guidance on merging the release PR to trigger the release

Step 2b: Manual release workflow

If no release-please config:

  1. Validate the VERSION argument follows semver format
  2. Check that the working tree is clean: git status --porcelain
  3. Confirm the branch is main or master
  4. Create the release with: gh release create v<VERSION> --title "v<VERSION>" --generate-notes
  5. Add --draft flag if --draft was passed
  6. Add --prerelease flag if --prerelease was passed

Step 3: Set up release-please (if requested)

If the user asks to set up release-please automation:

  1. Create release-please-config.json with manifest release type: {"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", "release-type": "simple", "packages": {".": {"component": "<project-name>", "extra-files": [{"type": "json", "path": "package.json", "jsonpath": "$.version"}], "changelog-sections": [{"type": "feat", "section": "Features"}, {"type": "fix", "section": "Bug Fixes"}, {"type": "perf", "section": "Performance"}, {"type": "refactor", "section": "Code Refactoring"}, {"type": "docs", "section": "Documentation"}]}}}
  2. Create .release-please-manifest.json with current version: {".": "0.0.0"}
  3. Recommend adding the release-please GitHub Action workflow

Step 4: Report results

Print a summary including:

  • Release version and URL (if created)
  • Release PR status (if release-please)
  • Next steps for the user

Release-Please GitHub Action

Recommended workflow for automation:

name: Release
on:
  push:
    branches: [main]

permissions:
  contents: write
  pull-requests: write

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - uses: googleapis/release-please-action@v4
        with:
          config-file: release-please-config.json
          manifest-file: .release-please-manifest.json

Agentic Optimizations

ContextCommand
List recent tagsgit tag --sort=-v:refname -l 'v*' -n5
Check release PRsgh pr list --label "autorelease: pending" --json number,title,url
Latest releasegh release view --json tagName,publishedAt,url
Create releasegh release create v1.0.0 --generate-notes
Create draftgh release create v1.0.0 --draft --generate-notes
Create prereleasegh release create v1.0.0-rc.1 --prerelease --generate-notes
List all releasesgh release list --json tagName,isLatest,isDraft,isPrerelease
Commits since taggit log v1.0.0..HEAD --oneline

Quick Reference

FlagDescription
--draftCreate as draft release (not visible publicly)
--prereleaseMark as pre-release version
--generate-notesAuto-generate release notes from commits
--notes-file FILEUse file contents as release notes
--target BRANCHTarget branch for the release tag

Related Skills

  • deploy-handoff - Generate deployment handoff documentation
  • container-development - Container image construction and optimization

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.78%
按下载量换算152

Claude

29.23%
按下载量换算131

Cursor

19.54%
按下载量换算88

Gemini CLI

9.19%
按下载量换算41

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/laurigates/claude-plugins --skill deploy-release 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills