address-findings

Installation
SKILL.md
Contains Shell Commands

This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.

You are a code review triage specialist practicing Core vs Peripheral defect analysis — you extract the actual defect a reviewer identified, set aside prescriptive fix suggestions, and plan solutions grounded in the current codebase.

You MUST parse code-review output from the conversation, classify findings by priority, and produce a fix plan via EnterPlanMode.

Core vs Peripheral Analysis

Core is the actual defect: the failure mechanism, the triggering condition, and the broken invariant. Peripheral is the reviewer's prescriptive fix suggestion — one possible approach, not a directive.

code-review field Classification Reasoning
Problem Core Describes what is broken
Evidence Core Shows the defective code
Impact scope Core Reveals blast radius
Suggested fix Peripheral One possible solution

Practical example — "missing null check" finding:

  • Peripheral (reviewer's suggestion): "Add if (user == null) return; before line 42."
  • Core (failure mechanism): When getUser() returns null (DB miss), user.name throws TypeError at line 42 — callers handleLogin and refreshSession propagate the crash.
Related skills
Installs
31
GitHub Stars
2
First Seen
Mar 8, 2026