一键导入
deploy-workflow
Release deployment process for ccswarm. Version update, quality gates, build, tag, publish.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Release deployment process for ccswarm. Version update, quality gates, build, tag, publish.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Duplicate code detection using similarity-rs. Identifies refactoring candidates based on semantic similarity.
Duplicate code detection using similarity-rs. Identifies refactoring candidates based on semantic similarity.
Run performance benchmarks with criterion. Compare against baselines and profile hotspots.
Implementation verification - runs format, lint, test, and build checks on the workspace.
Production readiness audit - checks unwrap elimination, error handling, clippy, docs, channel usage, and test count.
Parallel development workflow using git worktrees. Each agent gets an isolated worktree for safe concurrent work.
| name | deploy-workflow |
| description | Release deployment process for ccswarm. Version update, quality gates, build, tag, publish. |
| user-invocable | true |
| argument-hint | [version] |
Deploy a new ccswarm release.
# Update version in Cargo.toml files (root, crates/ccswarm, crates/ai-session)
# Update CHANGELOG.md
# Quality gates
cargo fmt --all && cargo clippy --workspace -- -D warnings && cargo test --workspace
cargo audit
cargo doc --no-deps --workspace
cargo build --release --workspace
# Tag and push
git tag -a v$ARGUMENTS -m "Release v$ARGUMENTS"
git push origin v$ARGUMENTS
# GitHub release
gh release create v$ARGUMENTS --title "ccswarm v$ARGUMENTS" --notes-file CHANGELOG.md
# Crates.io (publish ai-session first, then ccswarm)
cargo publish -p ai-session
cargo publish -p ccswarm
git tag -d v$ARGUMENTS && git push origin :refs/tags/v$ARGUMENTS
gh release delete v$ARGUMENTS
cargo yank --version $ARGUMENTS ccswarm