원클릭으로
analyze
Run coupling analysis and interpret results. Use when analyzing Rust project coupling patterns and generating improvement proposals.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run coupling analysis and interpret results. Use when analyzing Rust project coupling patterns and generating improvement proposals.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Khononov's Balanced Coupling model reference. Auto-loaded when analyzing coupling patterns, reviewing architecture, or interpreting analysis results.
Quick health check for coupling balance score. Use for daily score verification and CI quality gates.
Modularity review using Balanced Coupling model. Combines automated analysis with semantic code review to find implicit coupling and design issues.
Start interactive web UI for coupling analysis visualization. Graph exploration with filters, hotspots, and export.
Run mutation testing with cargo-mutants to evaluate test quality. Identifies untested code paths.
Explain coupling issue types in detail with detection conditions, code examples, and solution approaches.
| name | analyze |
| description | Run coupling analysis and interpret results. Use when analyzing Rust project coupling patterns and generating improvement proposals. |
cargo run -- coupling $ARGUMENTS (default: ./src)# Basic analysis (strict mode, hides Low severity)
cargo run -- coupling ./src
# Summary only
cargo run -- coupling --summary ./src
# Japanese output
cargo run -- coupling --summary --japanese ./src
# AI-friendly output
cargo run -- coupling --ai ./src
# Show all issues including Low
cargo run -- coupling --all ./src
# Show full Not Analyzed declaration
cargo run -- coupling --blind-spots ./src
# JSON output
cargo run -- coupling --json ./src
# History timeline
cargo run -- coupling --history ./src
cargo run -- coupling --history=8 --git-months=12 --json ./src
# Baseline diff
cargo run -- coupling --baseline main ./src
# Hotspots
cargo run -- coupling --hotspots ./src
# Impact analysis
cargo run -- coupling --impact <module> ./src
# CI/CD quality gate
cargo run -- coupling --check --min-grade=B ./src
cargo run -- coupling --check --baseline main --fail-on=high ./src
| Option | Description |
|---|---|
--summary, -s | Summary only |
--ai | AI-friendly output |
--json | JSON format |
--all | Show all issues including Low |
--blind-spots | Show full structural blind-spot manifest in text output |
--history[=N] | Analyze coupling health over git history |
--baseline REF | Compare current issues with a baseline git ref |
--fail-on SEVERITY | Severity threshold for --check and baseline ratchet |
--no-git | Skip Git history analysis |
--max-deps N | Dependency count threshold |
--max-dependents N | Dependent count threshold |
--verbose | Detailed output |
See .claude/docs/khononov-framework.md for grade meanings.
See .claude/docs/issue-types.md for issue severity.
Output template: output-template.md