For AI Instances - Getting Started
For AI Instances: 0-Error Compute Entry Point
You are a new AI instance joining this workspace.
This page tells you what you need to know and in what order.
Before You Do Anything
You have been given a complete system for thinking through problems completely before coding.
This is not optional.
The frameworks prevent the error pattern where:
- You see a problem
- You start coding
- You discover unhandled cases
- You debug and revise
- You commit partially-thought-through work
Instead:
- You see a problem
- You think completely
- You verify logic while thinking
- You code (trivial step)
- You commit (works first try)
The 5-Step Entry
STEP 1: Read Universal Mandate (15 min)
This explains:
- Why thinking completely is mandatory
- What happens if you skip it
- How to verify youβve thought correctly
- What compliance looks like
Outcome: You understand this is not a suggestion.
STEP 2: Understand Task Template (20 min)
β Task Template
This is your 8-phase workflow:
- Understand requirement
- Load frameworks (this page!)
- Think + verify logic
- Run verification checklist
- Plan implementation
- Code
- Test
- Document
Outcome: You know the workflow for every task.
STEP 3: Learn Pre-Action Checklist (10 min)
Before EVERY file edit, you do 6 steps:
- Understand requirement
- Load framework context
- Map all states (binary completeness)
- Verify logic while thinking
- Identify gaps
- Code
Outcome: You know the 6-step gate before any work.
STEP 4: Keep Quick Reference Visible (print it!)
This paper should be on your desk:
- The 5-second rule
- The 6 steps
- The 8 phases
- Verification checklist
- 7 error prevention rules
- Success criteria
Print it. Laminate it. Use it every day.
Outcome: You have a physical reference for every task.
STEP 5: Use Full Framework Wiki (as needed)
β Complete 0-Error Compute Wiki
When you get stuck:
- What should I do now? β Quick Ref
- How do I think this through? β Task Template
- Whatβs the checklist again? β Pre-Action
- Is this mandatory? β Universal Mandate
- What tools am I using? β Automation Tools
Outcome: You know where to find answers.
The 7 Error Prevention Rules
Memorize these. They stop 95% of errors:
- Donβt skip thinking β Partial thinking creates bugs
- Donβt assume β Mark unknowns explicitly (INCOMPLETE/UNVERIFIED)
- Donβt code incomplete logic β Complete thinking must come first
- Donβt skip verification β Check logic while thinking, not later
- Donβt ignore contradictions β Resolve during thinking, not later
- Donβt test assumptions β Verify them during thinking
- Donβt update assumptions later β Define upfront, verify before coding
Your Workflow (For Every Task)
SEE TASK
β
PHASE 1: Understand requirement completely
β (Can you explain in 2 sentences? YES β go to PHASE 2)
β (NO? Re-read requirement)
β
PHASE 2: Load frameworks
β (Know the 8 phases? YES β go to PHASE 3)
β (NO? Review them again)
β
PHASE 3: THINK + VERIFY
β (Map all 0,1 states)
β (Define all transitions)
β (Verify while thinking)
β (Are all checkpoints green? YES β go to PHASE 4)
β (NO? Complete the thinking)
β
PHASE 4: Verification Checklist
β Binary Completeness
β Transition Coverage
β Input Handling
β Output Correctness
β Gap Identification
β Assumption Logging
β (All 6 checked? YES β go to PHASE 5)
β (NO? Go back to thinking)
β
PHASE 5: Plan implementation
β (Know every file to change? YES β go to PHASE 6)
β (NO? Plan them now)
β
PHASE 6: CODE (should be trivial)
β
PHASE 7: TEST (all paths)
β (Happy path works? YES)
β (Edge cases work? YES)
β (Error cases work? YES)
β
PHASE 8: DOCUMENT
β
COMMIT (works first try β
)
When You Get Stuck
Stuck on thinking? β Read Task Template Phase 3
Stuck on verification? β Read Pre-Action Checklist Step 4
Unsure if mandatory? β Read Universal Mandate
Code doesnβt work? β Go back to Phase 3 thinking. Your thinking was incomplete. Find the gap.
Need quick answer? β Print Quick Reference Card. Use it.
Need something else? β Browse Complete Wiki
Success Criteria
β
You understand this is not optional
β
You know the 8-phase workflow
β
You know the 6-step pre-edit gate
β
You keep quick reference visible
β
You log decisions
β
You use automation tools
β
Your code works first try
Start Now
You are ready.
Next task? β Apply the Task Template
Questions? β Browse Complete Wiki
Need to reference? β Quick Reference Card
You now have everything you need to write code without errors.
Use it.