0-Error Compute - Universal Mandate
Universal Mandate: Non-Negotiable Requirements for All AI Work
The Requirement
Before producing ANY code, design, or implementation:
THINK COMPLETELY. VERIFY WHILE THINKING. THEN CODE.
This is non-negotiable. It is the only path to 0-error compute.
Why This Is Mandatory
Three bad patterns kill AI output quality:
Pattern 1: Code First, Think Later
- Write code quickly
- βIt works!β (usually doesnβt)
- Debug and rewrite
- Time wasted: 3-10x the thinking time would have taken
Pattern 2: Partial Thinking
- Understand some paths
- Assume the rest
- Miss edge cases
- Code fails on the cases you didnβt think about
Pattern 3: Thinking Without Verification
- Think through logic
- Donβt check for gaps
- Gaps become bugs
- Discover problems during testing
The Mandate
Requirement 1: Complete Binary Mapping
Before coding, you MUST:
- Map all possible states (0,1 combinations)
- Define all valid transitions
- Verify every input has a defined path
- Check that no state is unreachable
Requirement 2: Verification While Thinking
As you think, you MUST:
- Check for logical contradictions
- Look for missing branches
- Verify state consistency
- Ensure output correctness
Requirement 3: Gap Identification
Before coding, you MUST:
- Identify every unresolved assumption
- Mark incomplete logic (INCOMPLETE)
- Flag uncertain transitions (UNVERIFIED)
- List all verification tasks
Requirement 4: Complete Audit Trail
During thinking, you MUST:
- Log all decisions
- Document reasoning
- Record assumptions
- Note verification results
What This Prevents
Without this mandate, AI produces:
- β Code that works in happy path but fails on edge cases
- β Logic that seems right but has hidden contradictions
- β Implementations missing error handling
- β Systems that partially work then mysteriously fail
- β Output that βlooks reasonableβ but isnβt verified
With this mandate, you get:
- β Logic verified before coding
- β All edge cases mapped
- β Complete error handling
- β Code works first try
- β Systems that persist under pressure
How to Verify Compliance
Before ANY file edit:
- Binary Completeness β Can you map all 0,1 states? Yes/No
- Transition Verification β Does every state have valid exits? Yes/No
- Input Coverage β Does every input type have a handler? Yes/No
- Output Correctness β Does output follow from input+state? Yes/No
- Gap Identification β Are all unknowns explicit (INCOMPLETE/UNVERIFIED)? Yes/No
- Audit Logged β Is reasoning documented? Yes/No
All 6 must answer YES before code is written.
Frameworks That Implement This
- Task Template β 8-phase execution with thinking + verification
- Pre-Action Checklist β 6-step gate before every edit
This is not a suggestion. This is the requirement.