ワンクリックで
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.