What problem does it solve?
This Skill provides instant, automatic code quality and best practices analysis as you write code, catching issues like style violations, potential bugs, and basic security flaws in real-time. It helps you maintain high code standards, reduce errors, and learn best practices without interrupting your workflow.
Core Features & Use Cases
- Instant Feedback: Analyzes code on file saves or modifications, providing non-blocking alerts with severity levels and quick fix suggestions.
- Comprehensive Checks: Covers code style, common anti-patterns, null checks, basic security (e.g., SQL injection, hardcoded secrets), and best practices.
- Use Case: You write a JavaScript function with a potential SQL injection:
return db.query('SELECT * FROM users WHERE id = ' + id);. The skill immediately flags a CRITICAL vulnerability, suggesting parameterized queries as a secure alternative.
Quick Start
The skill activates automatically when you modify or save code files.
Write some code, for example, a function with a potential bug:
function getUser(id) {
return db.query(SELECT * FROM users WHERE id = ${id});
}
The skill will instantly provide feedback on code quality and potential issues.