HoangNguyen0403

AI Feedback Reporter

CRITICAL - Before ANY file write, audit loaded skills for violations. Auto-report via feedback command.

HoangNguyen0403 501 148 Updated 4mo ago

Resources

1
GitHub

Install

npx skillscat add hoangnguyen0403/agent-skills-standard/ai-feedback-reporter

Install via the SkillsCat registry.

SKILL.md

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: 85 lines โ†’ Rule: โ‰ค70 max โ†’ Report + extract to references/

More examples โ†’

Command (Copy-Paste)

npx agent-skills-standard feedback \
  --skill="[skill-id]" \
  --issue="[violation]" \
  --skill-instruction="[exact rule]" \
  --actual-action="[what I did]"

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