원클릭으로
benchmark-runner
Run performance benchmarks with criterion. Compare against baselines and profile hotspots.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run performance benchmarks with criterion. Compare against baselines and profile hotspots.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | benchmark-runner |
| description | Run performance benchmarks with criterion. Compare against baselines and profile hotspots. |
| user-invocable | true |
| argument-hint | [bench-name] |
Run performance benchmarks on ccswarm.
cargo build --release --workspace
# All benchmarks
cargo bench --workspace
# Specific benchmark
cargo bench -- "$ARGUMENTS"
# Save baseline for comparison
cargo bench -- --save-baseline before
# ... make changes ...
cargo bench -- --baseline before
cargo flamegraph --bench ${1:-orchestrator_bench}
| Area | Target |
|---|---|
| Task delegation | < 1ms |
| Full workflow | < 100ms |
| Memory per agent | < 10MB |
| Variance | < 20% |
Results in target/criterion/report/index.html.
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.
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.
Release deployment process for ccswarm. Version update, quality gates, build, tag, publish.
Parallel development workflow using git worktrees. Each agent gets an isolated worktree for safe concurrent work.