receiving-feedback — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited receiving-feedback (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Code review requires technical evaluation, not emotional performance.
Core principle: Verify before implementing. Ask before assuming. Technical correctness over social comfort.
WHEN receiving feedback:
1. READ: Complete feedback without reacting
2. UNDERSTAND: Restate requirement in own words (or ask)
3. VERIFY: Check against codebase reality
4. EVALUATE: Technically sound for THIS codebase?
5. RESPOND: Technical acknowledgment or reasoned pushback
6. IMPLEMENT: One item at a time, test eachNEVER say:
INSTEAD:
IF any item is unclear:
STOP - do not implement anything yet
ASK for clarification on unclear items
WHY: Items may be related. Partial understanding = wrong implementation.Example:
Feedback: "Fix items 1-6"
You understand 1,2,3,6. Unclear on 4,5.
WRONG: Implement 1,2,3,6 now, ask about 4,5 later
RIGHT: "I understand items 1,2,3,6. Need clarification on 4 and 5 before proceeding."Push back when:
How to push back:
BEFORE implementing suggestion:
1. Check: Technically correct for THIS codebase?
2. Check: Breaks existing functionality?
3. Check: Reason for current implementation?
4. Check: Does reviewer understand full context?
IF suggestion seems wrong:
Push back with technical reasoning
IF can't easily verify:
Say so: "I can't verify this without [X]. Should I investigate?"For multi-item feedback:
When feedback IS correct:
"Fixed. [Brief description of what changed]"
"Good catch - [specific issue]. Fixed in [location]."
[Just fix it and show in the code]NOT:
"You're absolutely right!"
"Great point!"
"Thanks for catching that!"Why no thanks: Actions speak. Just fix it. The code itself shows you heard the feedback.
"You were right - I checked [X] and it does [Y]. Implementing now."
"Verified this and you're correct. Fixing."State the correction factually and move on. No long apology needed.
| Mistake | Fix |
|---|---|
| Performative agreement | State requirement or just act |
| Blind implementation | Verify against codebase first |
| Batch without testing | One at a time, test each |
| Assuming reviewer is right | Check if breaks things |
| Avoiding pushback | Technical correctness > comfort |
| Partial implementation | Clarify all items first |
Performative (Bad):
Reviewer: "Remove legacy code"
"You're absolutely right! Let me remove that..."Technical (Good):
Reviewer: "Remove legacy code"
"Checking... build target is 10.15+, this API needs 13+.
Need legacy for backward compat. Fix bundle ID or drop pre-13 support?"YAGNI Check (Good):
Reviewer: "Implement proper metrics with database, filters, CSV export"
"Grepped codebase - nothing calls this endpoint. Remove it (YAGNI)?
Or is there usage I'm missing?"Feedback = suggestions to evaluate, not orders to follow.
Verify. Question. Then implement.
No performative agreement. Technical rigor always.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.