Installs just this skill. Get the whole plugin for auto-invocation.
โก How it fires
How this skill gets triggered: by you, by Claude, or both.
Fires itselfClaude auto-loads it when your prompt matches the work.
You can call itInvoke it directly when you want it.
Slash command/skill-review-response
๐๏ธ Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when a reviewer, CI bot, or another AI leaves feedback to address
๐ Stats
Stars3,869
Forks362
LanguageShell
LicenseMIT
๐ฆ Ships with octo
</> SKILL.md
skill-review-response.SKILL.md
---name: skill-review-response
description: "Use when a reviewer, CI bot, or another AI leaves feedback to address"
trigger: |
AUTOMATICALLY ACTIVATE when:
- Receiving code review feedback (PR comments, review agent output)
- Processing suggestions from /octo:review or /octo:staged-review
- Responding to CI failure feedback
- Handling changes-requested status on a PR
paths:
- ".git/**"
---# Receiving Code Review
## Core Principle
Code review requires technical evaluation, not performative agreement.
**Never blindly implement review feedback.** Verify it's correct for THIS codebase before changing anything.
## The Response Pattern
```
WHEN receiving code review feedback:
1. READ โ Complete feedback without reacting
2. RESTATE โ Summarize the requirement in your own words
3. VERIFY โ Check against actual codebase state
4. EVALUATE โ Is this technically sound for THIS context?
5. RESPOND โ Technical acknowledgment OR reasoned pushback
6. IMPLEMENT โ One item at a time, verify each change
```
## Forbidden Responses