alibabacloud-devops-mcp-server: Skill for Claude Code

.claude/skills/mcp_release/SKILL.md

mcp_release is a skill for Claude Code from aliyun/alibabacloud-devops-mcp-server. It costs 59 tokens per session (1,333 once invoked), scanned A, original, Apache-2.0.

A release procedure for a Node.js project. It updates the package version, runs tests and the build, then prepares Git commits, tags, Docker images, and a GitHub Release.

In plain words
What is it for?
Releasing a patch or specified version, synchronizing version files, pushing required remotes, building Docker images, and creating a GitHub Release.
Why use it?
It puts the many steps of publishing a new version into one ordered workflow and stops when an essential check fails.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is aliyun/alibabacloud-devops-mcp-server's own configuration. It tells Claude Code how to work on alibabacloud-devops-mcp-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything alibabacloud-devops-mcp-server configures →

Reuse

Borrowing it

Nothing to install: this file belongs to aliyun/alibabacloud-devops-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/aliyun/alibabacloud-devops-mcp-server/master/.claude/skills/mcp_release/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/aliyun/alibabacloud-devops-mcp-server

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mcp_release

README.md
[![agentmods](https://agentmods.dev/badge/skills/aliyun/alibabacloud-devops-mcp-server/mcp_release/github.svg)](https://agentmods.dev/skills/aliyun/alibabacloud-devops-mcp-server/mcp_release)
Your own site
<a href="https://agentmods.dev/skills/aliyun/alibabacloud-devops-mcp-server/mcp_release"><img src="https://agentmods.dev/badge/skills/aliyun/alibabacloud-devops-mcp-server/mcp_release/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mcp_release

Your own site · 80×15
<a href="https://agentmods.dev/skills/aliyun/alibabacloud-devops-mcp-server/mcp_release"><img src="https://agentmods.dev/badge/skills/aliyun/alibabacloud-devops-mcp-server/mcp_release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,333 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00059 $0.01333
Opus 5 $0.00030 $0.00666
Sonnet 5 $0.00012 $0.00267
Haiku 4.5 $0.00006 $0.00133

Measured 9d ago against content hash 17f31ad0d502, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

mcp_release scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/mcp_release/SKILL.md · 175 lines

How it starts

The opening of the file, as written. The whole thing — 175 lines — stays where its author put it; the contents beside it link to each section on GitHub.

发布新版本

执行完整的版本发布流程,包括版本号升级、构建、提交、打标签、Docker 构建和 GitHub Release 创建。

前置条件

  • 工作区干净或所有变更已暂存
  • 已安装 gh CLI 并已登录
  • 有远程仓库的推送权限

发布流程

按以下步骤顺序执行,每步完成后确认成功再继续:

Step 1: 读取当前版本号

node -p "require('./package.json').version"

记录当前版本号,计算新版本号(patch 位 +1)。 例如:0.3.170.3.18

如果用户指定了版本号,使用用户指定的版本号。

Step 2: 升级版本号

npm version patch --no-git-tag-version

如果用户指定了具体版本号,使用:

npm version <指定版本号> --no-git-tag-version

验证版本号已更新:

node -p "require('./package.json').version"

同步更新 common/version.ts 中的版本号(与 package.json 保持一致):

使用 search_replace 工具将 common/version.ts 中的 VERSION 值替换为新版本号。 文件内容格式为:export const VERSION = "<旧版本号>";,替换为 export const VERSION = "<新版本号>";

验证:

node -e "console.log(require('./common/version.ts'.replace('.ts','')))|| console.log('check common/version.ts manually')"

或直接读取 common/version.ts 确认版本号已更新。

Step 3: 运行测试

npm test

确认所有测试通过(退出码为 0)。如果测试失败,停止发布流程,先修复问题。

Step 4: 构建项目

npm run build

确认构建成功(退出码为 0)。

Step 5: 提交代码并推送(所有远端都要推

本仓库配置了多个远端,用途不同:origin 承载 GitHub Release 与 npm 发布,另一个远端是部署链路的取码来源。git push 只会推当前分支的 upstream(一般是 origin),git hook 也不会自动推其余远端,因此必须逐个显式推送,否则会出现「npm 上有新版本、但部署环境仍是旧代码」。

git add -A
git commit -m "chore: release v<新版本号>"
for r in $(git remote); do
  echo "--- push -> $r"
  git push "$r" master
done

推完验证每个远端都已包含本次提交:

git fetch --all --quiet
for r in $(git remote); do
  git merge-base --is-ancestor HEAD "$r/master" 2>/dev/null \
    && echo "$r/master ✓" || echo "$r/master ✗ 未包含本次提交"
done

全部为 才继续下一步。

Step 6: 创建 Git Tag 并推送(所有远端都要推

同 Step 5,tag 也要逐个远端推,不能只推 origin

git tag v<新版本号>
for r in $(git remote); do
  echo "--- push tag -> $r"
  git push "$r" v<新版本号>
done

验证每个远端都有该 tag:

for r in $(git remote); do
  git ls-remote --tags "$r" "refs/tags/v<新版本号>" | grep -q . \
    && echo "$r ✓ 有 v<新版本号>" || echo "$r ✗ 缺 tag"
done

Step 7: 构建 Docker 镜像

Read the full file on GitHub · 175 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 175 lines · 59 tokens per session scan A 17f31ad0d502

Subscribe to this mod's changes

mcp_release is a skill published in the GitHub repository aliyun/alibabacloud-devops-mcp-server (168 stars, last pushed 5d ago), licensed Apache-2.0. It adds 59 tokens to every session and 1,333 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

nvca-chart-release

Release NVCA Operator chart changes from the native monorepo source to the vendored Helm chart. Use when updating the vendored NVCA Operator chart, changing NVCA image refs, publishing helm-nvca-operator, or validating the chart against a self-managed control plane.

NVIDIA/nvcf · 61 tokens

release

Used to release all toolbox, integrations, agents. Use when releasing a subproject to PyPI, Docker Hub, or when the user asks to release or publish.

memgraph/ai-toolkit · 35 tokens

deployment-operations

Use when planning, executing, diagnosing, verifying, hardening, or rolling back deployments and runtime operations, including releases, Docker Compose, containers, systemd, Kubernetes, health checks, incidents, environment configuration, production or staging troubleshooting, and local development runtime startup.

zhpeng24/devkit · 57 tokens

ferrogate-release

Use when cutting a FerroGate release — building the container image and publishing it to GHCR. Covers the standing directive to NOT use GitHub Actions (too slow) and instead gate on the local ferrogate-test suite then push locally, including the no-sudo/no-Docker host path (musl-static + crane). Use for "release"…

lianluo-esign/ferrogate · 88 tokens

release-and-publish

Ship a release end-to-end across every registry the project targets (npm, MCP Registry, GitHub Releases for .mcpb bundles, GHCR). Runs the final verification gate, pushes commits and tags, then publishes to each applicable destination. Assumes git wrapup (version bumps, changelog, commit, annotated tag) is already…

cyanheads/brapi-mcp-server · 112 tokens

release-and-publish

Ship a release end-to-end across every registry the project targets (npm, MCP Registry, GitHub Releases for .mcpb bundles, GHCR). Runs the final verification gate, pushes commits and tags, then publishes to each applicable destination. Assumes git wrapup (version bumps, changelog, commit, annotated tag) is already…

cyanheads/npi-providers-mcp-server · 112 tokens