80-20-review

分类: 工具与效率 | 上传者: codewithmukeshcodewithmukesh | 下载: 0 | 版本: v1.0(最新)

Focus code review effort on the 20% of code that causes 80% of issues. Prioritizes data access, security, concurrency, and integration boundaries over formatting and style. Uses blast radius scoring to determine review depth. Includes checkpoint schedules, critical path identification, and a batch review checklist. Load this skill when reviewing code, PRs, or architecture, or when the user mentions "review", "code review", "PR review", "what should I review", "review priorities", "blast radius", or "critical path". --- # 80/20 Review ## Core Principles 1. **Review at checkpoints, not continuously** — Constant review interrupts flow. Schedule reviews at natural breakpoints: post-implementation, pre-PR, post-integration, and post-deploy. Each checkpoint has a different focus. 2. **Focus on data access, security, concurrency, integration** — These are the 20% of code areas that cause 80% of production incidents. A missing `CancellationToken` is more dangerous than a misnamed variable. Review depth should match risk. 3. **Blast radius determines depth** — A utility function used in one place gets a glance. A middleware change that affects every request gets a thorough review. Score changes by blast radius and invest review time proportionally. 4. **Automate the trivial** — Formatting, import ordering, naming conventions, and basic anti-patterns should be caught by tools (formatters, analyzers, hooks), not humans. Save human attention for things tools can't catch: logic errors, design flaws, and missing edge cases. ## Patterns ### Checkpoint Schedule Review at these natural breakpoints, each with a specific focus: ```

更新日志: Source: GitHub https://github.com/codewithmukesh/dotnet-claude-kit

目录结构

当前层级: skills/80-20-review/

SKILL.md

登录后下载/点赞/收藏 ❤ 35 | ★ 0
评论 0

请先登录后评论。

还没有评论,快来第一个发言吧。