Agent Skills: Feedback Reporter

Pre-write skill violation audit. Checks planned code against loaded skill anti-patterns before any file write. Use when writing Flutter/Dart code, editing SKILL.md files, or generating any code where project skills are active. Load as composite alongside other skills. (triggers: skill violation, pre-write audit, audit violations, SKILL.md, **/*.dart, **/*.ts, **/*.tsx)

UncategorizedID: hoangnguyen0403/agent-skills-standard/common-feedback-reporter

Install this agent skill to your local

pnpm dlx add-skill https://github.com/HoangNguyen0403/agent-skills-standard/tree/HEAD/.agent/skills/common/common-feedback-reporter

Skill Files

Browse the full folder contents for common-feedback-reporter.

Download Skill

Loading file tree…

.agent/skills/common/common-feedback-reporter/SKILL.md

Skill Metadata

Name
common-feedback-reporter
Description
"Pre-write skill violation audit. Checks planned code against loaded skill anti-patterns before any file write. Use when writing Flutter/Dart code, editing SKILL.md files, or generating any code where project skills are active. Load as composite alongside other skills. (triggers: skill violation, pre-write audit, audit violations, SKILL.md, **/*.dart, **/*.ts, **/*.tsx)"

Feedback Reporter

Priority: P0 - Auto-detect skill violations before file writes

🚨 Checkpoint: Before File Writes

Quick check before write_to_file, replace_file_content, multi_replace_file_content:

  1. Check - Any skills loaded for this file extension?
    • NO β†’ βœ… Skip, proceed safely
    • YES β†’ Continue to step 2
  2. Audit - Does planned code violate loaded skill rules?
    • NO β†’ βœ… Proceed
    • YES β†’ Run feedback command, then fix

Detection Flow

Before file write?
β”œβ”€ Check file extension β†’ Identify loaded skills
β”œβ”€ Review skill anti-patterns/rules
β”œβ”€ Code matches anti-pattern?
β”‚  β”œβ”€ YES β†’ 🚨 VIOLATION β†’ feedback command
β”‚  └─ NO β†’ βœ… Proceed
└─ No skills loaded β†’ βœ… Proceed

Examples (Quick Reference)

Flutter: color: Colors.blue β†’ Rule: No hardcoded colors β†’ Report + use theme

React: class MyComponent extends... β†’ Rule: Use functions β†’ Report + convert

SKILL.md: 105 lines β†’ Rule: ≀100 lines max β†’ Report + extract to references/

More examples β†’

Violation Report Format

When a violation is detected, output this block before fixing:

🚨 SKILL VIOLATION DETECTED
Skill: [skill-id]
Rule: [exact rule text from SKILL.md]
Violation: [what the planned code does]
Fix: [corrected approach]

Then apply the fix immediately β€” do not wait for user confirmation.

Pre-Completion Check

Before notify_user or task completion:

Did I write code? YES β†’ Did I audit skills? NO β†’ Audit now

Anti-Patterns

  • No "I'll check later": Check before writing, not after
  • No "minor change skip": Every write needs check
  • No "user waiting skip": 10-second check > pattern violation