From flowstate
Use when receiving code review feedback, before implementing suggestions. Requires technical rigor and verification -- not performative agreement or blind implementation.
npx claudepluginhub c-reichert/flowstate --plugin flowstateThis skill uses the workspace's default tool permissions.
Code review requires technical evaluation, not emotional performance.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides TDD-style skill creation: pressure scenarios as tests, baseline agent failures, write docs to enforce compliance, verify with RED-GREEN-REFACTOR.
Code review requires technical evaluation, not emotional performance.
Core principle: Verify before implementing. Ask before assuming. Technical correctness over social comfort.
1. READ — Complete feedback without reacting
2. UNDERSTAND — Restate the issue in your own words
3. VERIFY — Check against the actual codebase
4. EVALUATE — Technically sound for THIS codebase?
5. RESPOND — Fix it, or push back with technical reasoning
6. IMPLEMENT — One item at a time, test each fix
If you cannot explain an issue clearly, you do not understand it yet. Go back to step 2.
IF any item is unclear:
STOP — do not implement anything yet
ASK for clarification on the unclear items
WAIT until clear before implementing anything
Items may be related. Partial understanding = wrong implementation.
Example: Feedback says "Fix items 1-6". You understand 1, 2, 3, 6 but not 4, 5.
Before implementing any reviewer suggestion, verify it is needed:
grep -r "function_name\|ClassName\|method_name" --include="*.py" .
Push back when:
How: technical reasoning, reference working tests/code, ask specific questions.
Test each fix individually. Verify no regressions after each one.
DO: "Fixed. [Brief description of what changed]"
DO: "Good catch -- [specific issue]. Fixed in [location]."
DO: [Just fix it and show the change in code]
DON'T: "You're absolutely right!" / "Great point!" / "Thanks for catching that!"
DON'T: Any performative agreement or gratitude expression
Actions speak. The fix itself shows you heard the feedback.
If you pushed back and were wrong:
DO: "Checked [X] and it does [Y]. Implementing now."
DON'T: Long apology, defending why you pushed back, over-explaining.
State the correction factually. Move on.
| Anti-Pattern | Fix |
|---|---|
| Performative agreement | State the requirement or just act |
| Blind implementation | Verify against codebase first |
| Batch without testing | One fix at a time, test each |
| Assuming reviewer is right | Check if it breaks things |
| Avoiding pushback | Technical correctness > comfort |
| Partial implementation | Clarify ALL items first |
Review feedback = suggestions to evaluate, not orders to follow. Verify. Question. Then implement. No performative agreement.