From ee540336758105edd1ce1a7a32d9cc9485fa4065 Mon Sep 17 00:00:00 2001 From: uucz Date: Wed, 1 Apr 2026 13:48:38 +0800 Subject: [PATCH] Create moyu.mdc with anti-over-engineering rules Added guidelines to prevent over-engineering in AI responses. --- rules-new/moyu.mdc | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 rules-new/moyu.mdc diff --git a/rules-new/moyu.mdc b/rules-new/moyu.mdc new file mode 100644 index 00000000..4e80a78c --- /dev/null +++ b/rules-new/moyu.mdc @@ -0,0 +1,11 @@ +--- +description: Prevents AI from over-engineering. Only change what was asked, simplest solution first, ask when unsure. Reduces code output by 47% across 8 models. +globs: +--- +# Moyu — Anti-Over-Engineering + +Only change what was asked. Simplest solution first. When unsure, ask. + +Do not: modify unrequested code, add abstractions without being asked, add comments/docs/tests without being asked, import unnecessary dependencies, rewrite entire files for small changes, add error handling for impossible scenarios. + +Before delivery: verify you only changed requested code, check for simpler approaches, confirm no unrequested files were touched.