Token导航 LogoToken导航TokenDH.com
开发external-servicegithub未标认证来源可访问许可证需确认审计通过

draft-release发布草案

Agent Skill

draft-release 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

364

周安装

15

GitHub Stars

2,893

下载量

119
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/grafana/mcp-grafana --skill draft-release

简介

draft-release 用于创建 Grafana MCP 项目的发布草案,包括版本号更新和变更日志撰写。

  • 它适用于语义化版本管理和自动化发布流水线触发前的准备工作。
  • 仅处理 major/minor/patch 级别 bump,自动生成 release/v* 分支并打开 PR。
  • 合并 PR 后将自动触发标签创建和二进制构建流程,无需手动干预。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Draft Release

You are creating a new release for the mcp-grafana project. The user has provided a bump level: major, minor, or patch.

How the release pipeline works

  1. This skill creates a release/v* branch with a CHANGELOG.md update and opens a PR
  2. When the PR is merged, the auto-tag.yml workflow automatically creates the git tag
  3. The tag triggers release.yml (goreleaser → GitHub Release + binaries) and docker.yml (Docker images + MCP Registry)

Your job is step 1 only. Do NOT create tags manually.

Step 1: Determine the new version

  1. Get the latest semver tag: git tag --sort=-version:refname | head -1
  2. Parse the tag as vMAJOR.MINOR.PATCH and bump according to the argument:

- major → increment MAJOR, reset MINOR and PATCH to 0 - minor → increment MINOR, reset PATCH to 0 - patch → increment PATCH

  1. The new version string is v<MAJOR>.<MINOR>.<PATCH> (e.g. v0.11.0). The previous tag is the "from" ref.

Step 2: Create the release branch

git checkout main
git pull origin main
git checkout -b release/v<NEW_VERSION>

Step 3: Gather and categorize commits

Run:

git log <PREV_TAG>..HEAD --no-merges --format="%H %s"

For each commit, categorize by its conventional commit prefix:

PrefixCHANGELOG Section
featAdded
fix (security-related)Security
fixFixed
refactor, perfChanged
BREAKING CHANGE or !:Removed (or note as breaking in relevant section)

Skip these commits entirely:

  • chore(deps) — dependency bumps
  • chore commits that only touch CI config, GitHub Actions, or similar
  • docs commits that only update README or non-user-facing docs
  • test commits that only add/fix tests
  • ci commits

Step 4: Write human-readable entries

For each significant commit:

  1. Read the full commit message: git log <hash> -1 --format="%B"
  2. Extract the PR number from the commit message (look for (#NNN) in the subject or a PR: line)
  3. Derive the repo URL: git remote get-url origin → extract https://github.com/<org>/<repo>
  4. Write a concise, human-readable description of the change (not just the commit subject). Focus on what the user gains.
  5. Format as: - Description of the change ([#NNN](https://github.com/<org>/<repo>/pull/NNN))

If a commit lacks a PR number, omit the link.

Step 5: Write CHANGELOG.md

The CHANGELOG follows Keep a Changelog format.

If CHANGELOG.md already exists

Read the existing file. Insert the new version section after the header block and before any existing version sections. Preserve all existing content below.

If CHANGELOG.md does not exist

Create it with the full header.

Exact format

# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [<NEW_VERSION_WITHOUT_V>] - <YYYY-MM-DD>

### Added

- Entry one ([#123](https://github.com/<org>/<repo>/pull/123))
- Entry two ([#456](https://github.com/<org>/<repo>/pull/456))

### Fixed

- Entry three ([#789](https://github.com/<org>/<repo>/pull/789))

### Changed

- Entry four ([#101](https://github.com/<org>/<repo>/pull/101))

### Security

- Entry five ([#102](https://github.com/<org>/<repo>/pull/102))

## [<PREV_VERSION_WITHOUT_V>] - <PREV_DATE>
...existing entries...

[<NEW_VERSION_WITHOUT_V>]: https://github.com/<org>/<repo>/compare/<PREV_TAG>...<NEW_TAG>
[<PREV_VERSION_WITHOUT_V>]: https://github.com/<org>/<repo>/compare/...

Rules:

  • Version numbers in headings and link labels do NOT have the v prefix (e.g. [0.11.0])
  • Tags in compare URLs DO have the v prefix (e.g. v0.11.0)
  • Date format is YYYY-MM-DD (use date +%Y-%m-%d)
  • Only include sections that have entries (omit empty sections like Changed if there are no changes)
  • The compare link for the new version goes at the bottom, before existing compare links
  • Order sections: Added, Fixed, Changed, Security, Removed

Step 6: Commit

git add CHANGELOG.md
git commit -m "docs: add CHANGELOG.md for v<NEW_VERSION> release"

Step 7: Push and create PR

git push -u origin release/v<NEW_VERSION>

Create a PR with:

gh pr create --title "Release v<NEW_VERSION>" --body "$(cat <<'EOF'
## Summary

- Bump version to v<NEW_VERSION>
- Add CHANGELOG.md entries for this release

## Checklist

- [ ] CHANGELOG entries are accurate and complete
- [ ] Version number is correct
- [ ] All significant changes are documented

> [!NOTE]
> Merging this PR will automatically create the `v<NEW_VERSION>` tag,
> which triggers goreleaser (GitHub Release + binaries) and Docker image builds.

🤖 Generated with [Claude Code](https://claude.com/claude-code)
EOF
)"

Step 8: Report

Print a summary:

  • New version: v<NEW_VERSION>
  • Branch: release/v<NEW_VERSION>
  • PR URL (from gh pr create output)
  • Number of changelog entries added, broken down by section
  • Remind the user: merging the PR will automatically tag and release

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.84%
按下载量换算38

Claude

31.54%
按下载量换算38

Cursor

18.91%
按下载量换算23

Gemini CLI

9.47%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills