一键导入
release
Release a new version to PyPI - updates version, changelog, commits, tags, and pushes
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Release a new version to PyPI - updates version, changelog, commits, tags, and pushes
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | release |
| description | Release a new version to PyPI - updates version, changelog, commits, tags, and pushes |
| allowed-tools | Read, Edit, Write, Bash(git *), Bash(cat *) |
Release version $ARGUMENTS to PyPI.
grep -Po '(?<=^version = ")[^"]+' pyproject.toml 2>/dev/null || echo "unknown"git status --short 2>/dev/null | head -5git describe --tags --abbrev=0 2>/dev/null || echo "no tags"Edit pyproject.toml:
version = "$ARGUMENTS"
Add section for v$ARGUMENTS with today's date. Move items from [Unreleased].
git add pyproject.toml CHANGELOG.md
git commit -m "Release v$ARGUMENTS"
git push origin main
git tag v$ARGUMENTS
git push origin v$ARGUMENTS
$ARGUMENTS
Comprehensive pre-merge testing for CodeGeass. Tests PR changes FIRST, then runs regression tests on all CLI commands and Dashboard API endpoints.
Implement code from a GitHub issue specification. Explores codebase, researches docs, creates temporary implementation plan, then implements incrementally (small piece → test → commit → next). Cleans up plan file before PR.
Plan new features/integrations following SOLID principles. Analyzes codebase architecture, researches official documentation and best practices, designs extensible solution, and creates comprehensive GitHub issue with implementation blueprint.
Refactor monolithic code into clean, single-responsibility modules following SOLID principles
Comprehensive code review for PRs or recent changes. Checks correctness, security, performance, maintainability, and tests.
Deep security analysis of codebase. Scans for secrets, vulnerabilities, and insecure patterns.