code-quality

Enforce parameterized queries and security patterns in Go, Python, and React codebases.

3|Updated Mar 22, 2026
One-click install
npx skills add https://github.com/vndee/engineering-skills --skill code-quality-vndee
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-quality
Source: https://github.com/vndee/engineering-skills/tree/main/.claude/skills/code-quality
Command: npx skills add https://github.com/vndee/engineering-skills --skill code-quality-vndee

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill enforces performance-first patterns, prevents N+1 queries, and ensures security baselines across Go, Python, and React codebases, reducing production defects by catching issues early.

Core Features & Use Cases

  • Parameterized queries always: no string concatenation in SQL and safe data handling across languages.
  • Input validation at boundaries and auth middleware on protected routes to prevent unauthorized access and data leaks.
  • Performance patterns and security hygiene applied during development, review, and deployment to improve reliability and safety.

Quick Start

Run a quick code-quality check on your Go, Python, or React project to identify N+1 queries, unsafe patterns, and missing security safeguards.

Frequently Asked Questions about code-quality

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I prevent N+1 queries in Python and Go applications?

To prevent N+1 queries in Python and Go, enforce performance-first coding patterns using parameterized queries instead of string concatenation. This ensures efficient data fetching and scalable software across development, testing, and production workflows.

What is the best way to enforce SQL parameterized queries across React, Python, and Go codebases?

The best way to enforce SQL parameterized queries across React, Python, and Go is to apply automated code-quality checks at every commit. This prevents string concatenation in SQL, ensures safe data handling, and stops insecure implementations early.

How does input validation and auth middleware prevent unauthorized access in Go and Python?

Input validation and auth middleware prevent unauthorized access by checking data at boundaries and protecting routes. Applying these security baselines across Go and Python codebases stops data leaks and ensures secure software.

Can I check for unsafe logging and missing secret management during code review?

Yes, you can check for unsafe logging and missing secret management during code review. Applying performance and security hygiene patterns at every commit catches these production defects early and ensures reliable software.

Does this code-quality check work with React frontends and Go backends together?

Yes, this code-quality check works with React frontends and Go backends together. It applies performance patterns and security baselines across mixed technology stacks to identify unsafe patterns and missing safeguards.