agents/skills/common/common-feedback-reporter/SKILL.md
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. When a violation is detected and Auto-fixed: YES, also load +common/common-learning-log to record the mistake.
npx skillsauth add hoangnguyen0403/agent-skills-standard common-feedback-reporterInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Quick check before write_to_file, replace_file_content, multi_replace_file_content:
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
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 →
When violation detected, output this block before fixing:
🚨 SKILL VIOLATION DETECTED
Skill: [skill-id]
File: [relative/path/to/file.ext]:[line-range]
Rule: [exact rule text from SKILL.md]
Violation: [what planned code does — up to 5-line offending snippet]
Fix: [corrected approach — up to 5-line corrected snippet]
Auto-fixed: YES / NO
Root Cause: [AMBIGUOUS_RULE | MISSING_COVERAGE | OUTDATED_GUIDANCE | COMPETING_RULES | PATTERN_MISMATCH]
User Intent: [1 sentence: what the user was trying to achieve]
Skill Gap: [1–2 sentences: what change to the SKILL.md would prevent this next time]
Co-skills: [other active skill IDs, comma-separated, or 'none']
| Code | When to use |
|------|-------------|
| AMBIGUOUS_RULE | Rule wording permits multiple interpretations |
| MISSING_COVERAGE | Common pattern not addressed anywhere in skill |
| OUTDATED_GUIDANCE | Skill references deprecated API or framework version |
| COMPETING_RULES | Two loaded skills gave contradictory guidance |
| PATTERN_MISMATCH | AI misread or misapplied anti-pattern definition |
Then apply fix immediately — not wait for user confirmation.
Before notify_user or task completion:
** I write code?** YES → ** I audit skills?** NO → Audit now
development
Standardize SRS and FRS specifications for technical behavior, interfaces, data contracts, quality constraints, and verification mapping. Use when writing SRS, functional specification, system behavior requirements, API/data contracts, or non-functional thresholds.
development
Standardize BRD and BRD-lite discovery for business goals, stakeholder impact, current-to-future state, and measurable value outcomes. Use when creating BRD, business case, project justification, ROI narrative, or AS-IS to TO-BE scope.
development
Implements a strict Red-Green-Refactor loop to ensure zero production code is written without a prior failing test. Use when: creating new features, fixing bugs, or expanding test coverage.
testing
Standardize PRD discovery and drafting for product scope, user outcomes, requirement IDs, and acceptance criteria. Use when creating PRD, product requirements, feature specification, or acceptance criteria plan.