원클릭으로
bump-version
Bump the version number in pyproject.toml, plugin.json, and marketplace.json, then commit and tag.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Bump the version number in pyproject.toml, plugin.json, and marketplace.json, then commit and tag.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Spawn a Claude worker to handle a GitHub issue. Fetches issue details, creates a feature branch, and works autonomously. Use when you want to delegate an issue to a worker.
Spawn a Claude worker in an isolated git worktree for parallel development. Use when you need to work on a task in isolation without affecting current work.
Spawn a Claude worker to handle a GitHub issue. Fetches issue details, creates a feature branch, and works autonomously. Use when you want to delegate an issue to a worker.
Launch the Karkinos TUI to monitor worker progress in a new terminal window.
Spawn a Claude worker to address PR feedback, fix CI failures, or continue work on a pull request. Use when a PR needs updates based on review comments or failing checks.
Spawn a Claude worker to address PR feedback, fix CI failures, or continue work on a pull request. Use when a PR needs updates based on review comments or failing checks.
| name | bump-version |
| description | Bump the version number in pyproject.toml, plugin.json, and marketplace.json, then commit and tag. |
| allowed-tools | Bash, Read, Edit, Grep |
Bump the Karkinos version across all manifest files.
/karkinos:bump-version <version>
/karkinos:bump-version 0.3.0
/karkinos:bump-version 1.0.0
When the user invokes /karkinos:bump-version, follow these steps:
Ensure the version follows semantic versioning (X.Y.Z):
echo "$VERSION" | grep -E '^[0-9]+\.[0-9]+\.[0-9]+$' || echo "INVALID"
Update version in these files:
pyproject.toml - CLI tool version
version = "X.Y.Z"
karkinos-plugin/.claude-plugin/plugin.json - Plugin manifest
"version": "X.Y.Z"
.claude-plugin/marketplace.json - Marketplace metadata and plugin listing
"version": "X.Y.Z" (both metadata and plugins[0])
Display the diff before committing:
git diff
git add pyproject.toml karkinos-plugin/.claude-plugin/plugin.json .claude-plugin/marketplace.json
git commit -m "chore: bump version to $VERSION"
git tag "v$VERSION"
Ask the user if they want to push:
git push origin main --tags
v0.2.0 (with v prefix)