一键导入
version-bump
Bump pegaflow-llm package version. Use when the user asks to bump version, release a new version, increment version, or update package version.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Bump pegaflow-llm package version. Use when the user asks to bump version, release a new version, increment version, or update package version.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | version-bump |
| description | Bump pegaflow-llm package version. Use when the user asks to bump version, release a new version, increment version, or update package version. |
Bump the pegaflow-llm Python package version by directly editing python/pyproject.toml.
Important: Create a branch first since pre-commit hooks forbid commits to master.
grep -E "^version" python/pyproject.toml
git checkout -b release/v<new_version>
python/pyproject.toml:Update both version fields:
version = "<new_version>" (under [project])version = "<new_version>" (under [tool.commitizen])Example: 0.0.10 → 0.0.11
git add python/pyproject.toml
git commit -m "chore: bump version to <new_version>"
git push -u origin release/v<version>
gh pr create --title "chore: bump version to <version>" --body "Release v<version>"
User will manually create the GitHub release via the web UI or CLI.
Use when configuring, deploying, or troubleshooting pegaflow-server/pegaflow-metaserver. Covers CLI flags, pool sizing, SSD cache, NUMA, metrics, and multi-node setup.
Use when modifying python/src/lib.rs (PyO3 bindings), python/pegaflow/connector/ (vLLM KV connector), python/pegaflow/sglang/ (SGLang radix cache), .pyi type stubs, or building with maturin.
Debug vLLM async KV loading and PegaFlow connector behavior. Use when investigating async KV loads, WAITING_FOR_REMOTE_KVS states, load/save intents, connector metadata flow, prefetch behavior, or preemption interactions in vLLM scheduler/worker code.