원클릭으로
release
Release and publish Copex to PyPI. Use this when asked to release, publish, bump version, or create a new version.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Release and publish Copex to PyPI. Use this when asked to release, publish, bump version, or create a new version.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Review code changes in Copex for bugs, style issues, and best practices. Use this when reviewing PRs or code changes.
Debug issues in Copex, especially streaming, content display, and event handling bugs. Use this when investigating bugs, unexpected behavior, or errors.
Add new features to Copex. Use this when asked to implement new functionality, add CLI commands, or extend the client.
Write and run tests for Copex. Use this when asked to write tests, fix tests, improve coverage, or debug test failures.
| name | release |
| description | Release and publish Copex to PyPI. Use this when asked to release, publish, bump version, or create a new version. |
Follow these steps to release a new version of Copex:
python -m pytest tests/ -v
All tests must pass before releasing.
Update version in BOTH files (must stay in sync):
pyproject.toml → change version = "X.Y.Z"src/copex/cli.py → change __version__ = "X.Y.Z"git add -A
git commit -m "chore: bump version to X.Y.Z"
git tag vX.Y.Z
git push
git push --tags
This triggers the PyPI publish workflow.
# PowerShell - clear conflicting env var if needed
$env:GH_TOKEN = $null
gh release create vX.Y.Z --title "vX.Y.Z" --notes "### Changes
- Description of changes"
Check the workflow at: https://github.com/Arthur742Ramos/copex/actions/workflows/publish.yml
### Features
- New feature description
### Bug Fixes
- Bug fix description
### Tests
- Test improvements
If gh auth fails with "Bad credentials":
$env:GH_TOKEN = $null
gh auth status
If PyPI publish fails:
PYPI_API_TOKEN secret is set