用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Arete-Consortium/ai-skills --skill pre-release命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | pre-release |
| description | Pre-Release Checklist |
| lifecycle | experimental |
Comprehensive checklist before tagging and releasing a new version.
/pre-release patch # Prepare patch release (1.0.0 → 1.0.1)
/pre-release minor # Prepare minor release (1.0.0 → 1.1.0)
/pre-release major # Prepare major release (1.0.0 → 2.0.0)
/pre-release 1.2.3 # Prepare specific version
# Pre-Release Checklist: v1.2.0
## Version Updates
- [ ] pyproject.toml version updated
- [ ] __version__ in __init__.py updated (if applicable)
- [ ] CHANGELOG.md updated with release date
## Quality Checks
- [ ] All tests passing (`pytest`)
- [ ] No lint errors (`ruff check .`)
- [ ] Type checks pass (`mypy`)
- [ ] Coverage meets threshold
## Documentation
- [ ] README.md is current
- [ ] CHANGELOG.md has this version's changes
- [ ] API documentation updated (if applicable)
- [ ] Migration guide written (if breaking changes)
## CI/CD
- [ ] All CI checks passing on main
- [ ] No pending dependabot PRs for security issues
## Git
- [ ] All changes committed
- [ ] Working directory clean
- [ ] On main/master branch
- [ ] Pulled latest changes
## Final Steps
- [ ] Create release commit: `git commit -m "chore: release v1.2.0"`
- [ ] Create tag: `git tag -a v1.2.0 -m "v1.2.0"`
- [ ] Push: `git push && git push --tags`
## Post-Release
- [ ] Verify GitHub release created
- [ ] Verify package published (PyPI/crates.io)
- [ ] Announce release (if applicable)
[project]
version = "1.2.0"
__version__ = "1.2.0"
[package]
version = "1.2.0"
{
"version": "1.2.0"
}
When /pre-release is invoked: