handle-pr-commentslisted
Install: claude install-skill noctua84/nescio-ai
# Address PR Comments
## Overview
Critically evaluate every comment before acting. Reviewers — especially AI reviewers — sometimes misread code, reference stale state, or make preference-based suggestions dressed as correctness issues. Never implement blindly. Always reply with your reasoning and resolve the thread.
## Process
```dot
digraph address_pr_comments {
rankdir=TB;
"Fetch all unresolved threads" [shape=box];
"Read code at referenced location" [shape=box];
"Premise correct?" [shape=diamond];
"Change beneficial?" [shape=diamond];
"Unclear what to do?" [shape=diamond];
"Ask user — STOP" [shape=box];
"Accept: implement change" [shape=box];
"Reject: no code change" [shape=box];
"Reply + resolve thread" [shape=box];
"More unresolved?" [shape=diamond];
"Commit accepted changes + push" [shape=box];
"Fetch all unresolved threads" -> "Read code at referenced location";
"Read code at referenced location" -> "Premise correct?";
"Premise correct?" -> "Change beneficial?" [label="yes"];
"Premise correct?" -> "Reject: no code change" [label="no"];
"Change beneficial?" -> "Unclear what to do?" [label="yes"];
"Change beneficial?" -> "Reject: no code change" [label="no"];
"Unclear what to do?" -> "Ask user — STOP" [label="yes"];
"Unclear what to do?" -> "Accept: implement change" [label="no"];
"Accept: implement change" -> "Reply + resolve thread";
"Reject: no code change" -> "Reply + resolve thread";
"Reply + resolve thread" -> "Mor