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";
Installs
46
GitHub Stars
167
First Seen
Mar 23, 2026
ai-coding-discipline — luoling8192/ai-coding-principles