ai-coding-discipline

Installation
SKILL.md

AI Coding Discipline

These rules override default AI coding tendencies. Follow them in ALL code you write or modify.


Rule 1: No Silent Fallbacks

Never use fallback values to mask data that should not be missing.

// FORBIDDEN — hides upstream bugs
const price = product?.price ?? 0;
const userName = user?.name || "Unknown";
Related skills

More from luoling8192/ai-coding-principles

Installs
33
GitHub Stars
166
First Seen
Mar 23, 2026