agentsclimarketplace

Feedback reporter

Skill ComeOnOliver/skillshub/skills/HoangNguyen0403/agent-skills-standard/feedback-reporter

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

Install
npx -y skills add ComeOnOliver/skillshub --skill feedback-reporter

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.9 KB, 427 tokens by cl100k_base, as published. Nobody here has run it

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 β†’

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

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,871. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.