用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill release命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
基于 SOC 职业分类
正在显示 SKILL.md
| name | release |
| description | 自动化处理项目版本发布流程,包括收集版本号、提取变更日志、智能分类、生成 Release Notes 并创建 Git 标签 Use when this capability is needed. |
| metadata | {"author":"bugwz"} |
自动化处理项目版本发布流程:
当用户要求执行发布操作时使用此技能。会自动分析变更内容并生成规范的 Release Notes。
git describe --tags --abbrev=0 获取上一个标签LAST_TAG..HEADgit log --pretty=format:"%h|%s|%an" --no-merges <对比范围> 提取提交信息根据前缀和语义将变更归类:
特性 (Features)
Feat:问题修复 (Bug Fixes)
Fix:其他变更 (Other Changes)
Chore:、Refactor:、Docs:、Style:、Test: 等release/ 目录存在release/{VERSION}.md 文件Release Notes 文件格式示例:
# 1.0.0 Release Notes
## ✨ 特性
- 新增功能A
- 新增功能B
## 🐛 问题修复
- 修复了XX问题
## 📋 其他
- 更新文档
- 优化代码结构
如果某项没有匹配的变动,需要设置一个为空的列表:
# 1.3.0 Release Notes
## ✨ 特性
- 无
## 🐛 问题修复
- 无
## 📋 其他
- 更新扩展名称以包含英文标题
警告:此阶段是强制性的,任何跳过此阶段直接提交的行为都是严重错误。
git add . && git commit -m "Release {VERSION}"确认提示格式:
=== Commit Confirmation Required ===
This operation will commit the following files:
- [File 1]
- [File 2]
- [File 3]
Commit message: Release {VERSION}
Do you confirm this commit? Please reply with "yes" to confirm or "no" to cancel.
警告:此阶段是强制性的,任何跳过此阶段直接打 tag 的行为都是严重错误。
git tag {VERSION} 创建标签确认提示格式:
=== Tag Confirmation Required ===
This operation will create a git tag: v{VERSION}
Do you confirm this tag creation? Please reply with "yes" to confirm or "no" to cancel.
src/manifest_chrome.json、src/manifest_firefox.json 中的版本号- 无)Converted and distributed by TomeVault — claim your Tome and manage your conversions.