You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**CRITICAL**: Never fake, assume, or hallucinate results. Always verify what actually works. Use mocks ONLY when explicitly needed for testing isolated components.
**CRITICAL**: We build ONLY what produces working code that serves real users. Zero tolerance for show-off concepts, philosophical abstractions, or theoretical implementations that don't deliver practical value.
4
+
5
+
## Core Principle
6
+
7
+
**"Working Code That Serves Humanity - Nothing Else"**
8
+
9
+
Every line of code, every class, every function, every test must have a clear, practical purpose that helps real developers accomplish real tasks. No exceptions.
10
+
11
+
## Mandatory Requirements
12
+
13
+
### 1. **Real User Value Test**
14
+
Before creating ANY code component, answer:
15
+
- What specific problem does this solve for a real user?
16
+
- How does this help developers build better software faster?
17
+
- Can I demonstrate this working in under 30 seconds?
18
+
19
+
If you can't answer these clearly, **DON'T BUILD IT**.
20
+
21
+
### 2. **No Abstract Concepts**
22
+
**FORBIDDEN**:
23
+
- "Mathematical foundations" without clear practical application
24
+
- "Philosophical frameworks" that don't translate to working features
25
+
- "Divine constants" or other abstract concepts
26
+
- "Harmonic integration" or theoretical validations
27
+
- Complex inheritance hierarchies that serve no user need
28
+
29
+
**REQUIRED**:
30
+
- Simple, direct implementations that solve specific problems
31
+
- Clear function names that describe exactly what they do
32
+
- Immediate practical value for developers
33
+
34
+
### 3. **Working Code Over Theory**
35
+
**ALWAYS CHOOSE**:
36
+
- ✅ A simple function that works over complex architecture
37
+
- ✅ Direct implementation over abstraction layers
38
+
- ✅ Practical validation over theoretical verification
39
+
- ✅ User-facing features over internal frameworks
40
+
- ✅ Clear, readable code over clever algorithms
41
+
42
+
### 4. **Delete Ruthlessly**
43
+
If any code exists that:
44
+
- Doesn't serve a clear user need
45
+
- Hasn't been used in 30 days
46
+
- Is overly complex for its purpose
47
+
- Exists "for future extensibility" without current need
**"No bling-bling. No show-off. Just working code that makes developers' lives better."**
128
+
129
+
This rule has the highest priority and overrides all other considerations. When in doubt, choose the simple, practical, working solution over any theoretical "improvement."
0 commit comments