🚨 SKILL VIATION DETECTED Skill: common-feedback-reporter File: user_name.dart:1–5 Rule: No hardcoded colors; use the theme. Violation: `Text(name, style: const TextStyle(color: Colors.blue))` Fix: `Text(name, style: TextStyle(color: Theme.of(context).colorScheme.primary))` Auto-fixed: YES Root Cause: PATTERN_MISMATCH User Intent: Display the user's name in blue text. Skill Gap: none; the guidance already specifies the themed-color replacement. Co-ski...
Scanned 9/5/2026
Install to Claude Code
npx -y skills add HoangNguyen0403/agent-skills-standard --skill common-feedback-reporter --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Common Feedback Reporter?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hoangnguyen0403-common-feedback-reporter-3a23113e)More formats (shields.io, HTML) on the badges page.
🚨 SKILL VIATION DETECTED
Skill: common-feedback-reporter
File: user_name.dart:1–5
Rule: No hardcoded colors; use the theme.
Violation: `Text(name, style: const TextStyle(color: Colors.blue))`
Fix: `Text(name, style: TextStyle(color: Theme.of(context).colorScheme.primary))`
Auto-fixed: YES
Root Cause: PATTERN_MISMATCH
User Intent: Display the user's name in blue text.
Skill Gap: none; the guidance already specifies the themed-color replacement.
Co-skills: none
```dart
import 'package:flutter/material.dart';
class UserName extends StatelessWidget {
const UserName({
super.key,
required this.name,
});
final String name;
@override
Widget build(BuildContext context) {
return Text(
name,
style: TextStyle(
color: Theme.of(context).colorScheme.primary,
),
);
}
}
```
Assumption: the app theme’s `colorScheme.primary` is configured as blue.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!