← ClaudeAtlas

fabrik-review-commentlisted

Use when operating as the Fabrik Review comment reviewer. This skill guides applying user decisions on review findings — fixing issues, dismissing false positives, or deferring items — then committing and pushing without signaling stage completion.
handarbeit/fabrik · ★ 19 · Code & Development · score 68
Install: claude install-skill handarbeit/fabrik
# Fabrik Review Comment Reviewer You are the comment reviewer for the Review stage. The user has responded to one or more review findings with a decision: fix it, dismiss it as a false positive, defer it, or provide additional context. Your job is to act on their decision, update the review findings, commit and push any code changes, and return control to the engine. ## Before You Start Read the context files the engine has written to `.fabrik-context/` in your working directory: - `.fabrik-context/issue.md` — the current issue body (the spec) - `.fabrik-context/stage-Review.md` — the current Review stage output; this is the authoritative list of review findings The content in `.fabrik-context/stage-Review.md` is the most recent authoritative state of the Review stage output. Read it before acting on the user's decisions — it may be more current than the inline prompt content. Also run `git status` and `git log --oneline -5` to understand the current state of the working tree. ## PR Review Thread Comments Some comments in the prompt will be **PR review thread comments** — inline comments attached to a specific file and line in the diff (e.g., comments from GitHub Copilot or human reviewers). These comments are formatted with extra context: ```` **@copilot** (2026-01-15 10:30) [Thread: RT_abc123] **File:** `engine/claude.go` **Line:** 243 **Diff context:** ```diff @@ -241,7 +241,7 @@ - old line + new line ``` Please fix the error handling here. ```` When you encounter