code-quality-standards

Enforce TypeScript and Biome code-quality standards across development activities.

1|Updated Nov 28, 2025
One-click install
npx skills add https://github.com/yuann3/skills --skill code-quality-standards-yuann3
Or copy as Structured Prompt for Agentβ–Ό
Please help me install this Agent Skill.
Skill: code-quality-standards
Source: https://github.com/yuann3/skills/tree/main/.claude/skills/code-quality-standards
Command: npx skills add https://github.com/yuann3/skills --skill code-quality-standards-yuann3

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Clean, maintainable code is difficult to achieve without clear standards; this guide codifies expectations to reduce bugs and cognitive load.

Core Features & Use Cases

  • Enforces descriptive naming, explicit implementations, and prohibition of lint suppressions
  • Removes backward compatibility shims and promotes clean breaks
  • Ensures strict typing and automated checks across projects

Quick Start

Refactor code to meet the standards by implementing complete logic, using descriptive names, removing suppressions, and ensuring type and lint checks pass.

Frequently Asked Questions about code-quality-standards

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

FAQPage Schema
How do I enforce clean code standards in a TypeScript project?β–Ό

Enforce clean code standards in TypeScript by requiring descriptive naming, complete logic implementations, and strict type compliance using automated checks like Biome. This ensures maintainability and reduces bugs by prohibiting TODOs, lint suppressions, and backward-compatibility shims.

Why should I remove lint suppressions and backward-compatibility shims during refactoring?β–Ό

Remove lint suppressions and backward-compatibility shims during refactoring to ensure strict type compliance and clean implementations. Eliminating them reduces cognitive load, prevents hidden bugs, and enforces a clean break from legacy code patterns.

Does this code quality approach work with Biome for TypeScript lint checks?β–Ό

Yes, this code quality approach works with Biome for TypeScript lint checks by ensuring all code passes strict Biome and TypeScript validations. It enforces zero lint suppressions and requires fully implemented logic across all development activities.

What are the limitations of relying solely on clean code standards for code reviews?β–Ό

Relying solely on clean code standards for code reviews focuses on descriptive names and strict typing but may not address architectural flaws or complex business logic errors. It ensures syntax and implementation cleanliness but requires broader review practices for complete validation.

What is the best way to prevent TODO comments in JavaScript codebases?β–Ό

The best way to prevent TODO comments in JavaScript codebases is to enforce rigorous code-quality standards that prohibit incomplete implementations. Ensure all logic is fully implemented and passes automated TypeScript and Biome checks before merging.