원클릭으로
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.