원클릭으로
check-production-ready
Production readiness audit - checks unwrap elimination, error handling, clippy, docs, channel usage, and test count.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Production readiness audit - checks unwrap elimination, error handling, clippy, docs, channel usage, and test count.
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.
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.
| name | check-production-ready |
| description | Production readiness audit - checks unwrap elimination, error handling, clippy, docs, channel usage, and test count. |
| user-invocable | true |
| context | fork |
| agent | rust-fix-agent |
When subagents are enabled in Codex, prefer delegating this workflow to the rust-fix-agent custom agent.
Verify 7 production quality criteria:
| # | Item | Check |
|---|---|---|
| 1 | unwrap() elimination | grep -r "\.unwrap()" crates/ccswarm/src/ --include="*.rs" (exclude tests) |
| 2 | Error handling | thiserror usage, custom error types |
| 3 | Async patterns | tokio runtime, proper async usage |
| 4 | Documentation | cargo doc --workspace --no-deps |
| 5 | Clippy clean | cargo clippy --workspace -- -D warnings |
| 6 | Channel-Based | Channel vs Arc ratio |
| 7 | Minimal testing | ~8-10 focused tests |
Score: 7/7 = PRODUCTION_READY, 5-6/7 = NEEDS_WORK, 0-4/7 = CRITICAL.
Fix any issues found, then report results as JSON.