用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill release-prep命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | release-prep |
| description | Pre-release checklist for dev-team-agents — semver bump, tagging, rollback. |
| Change type | Bump | Examples |
|---|---|---|
| Breaking change | major | Agent behavior removed, skill renamed, install path changed |
| New agent, skill, or command | minor | New agent file, new /devteam:* command, new workflow |
| Bug fix, typo, clarification, doc sync | patch | Broken script fixed, wording corrected, link updated |
Rule: when in doubt, prefer patch over minor. Prefer minor over major.
Run through every item before creating the tag.
bash helpers/agent-lint.sh
bash helpers/orphan-skill-scan.sh
Both must exit 0 with no ACTION REQUIRED lines.
CHANGELOG.md has an entry for this version under ## [vX.Y.Z] - YYYY-MM-DD## [Unreleased] sectionREADME.md and README.pt-BR.md are in syncdocs/agents.md matches the agents currently in agents/CLAUDE.md command table reflects all commands in commands/grep -r "console\.log\|TODO:\|FIXME:\|HACK:\|XXX:" agents/ skills/ commands/ --include="*.md" -l
Output must be empty (or all matches are intentional and documented).
# Confirm the version
git log --oneline -5
# Create annotated tag
git tag -a vX.Y.Z -m "Release vX.Y.Z"
# Push tag
git push origin vX.Y.Z
Do not force-push tags. If a tag was created in error, see Rollback below.
docs/reports/_index.md if the release changes the fingerprint baseline.git tag -d vX.Y.Z
git push origin :refs/tags/vX.Y.Z
git checkout -b hotfix/vX.Y.Z+1 vX.Y.Z
# apply fix
git tag -a vX.Y.Z+1 -m "Hotfix release vX.Y.Z+1"
git push origin hotfix/vX.Y.Z+1 vX.Y.Z+1
Open a PR from hotfix/vX.Y.Z+1 into main. Do not skip review.