بنقرة واحدة
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 المهني
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.
| 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