Skip to content

Instantly share code, notes, and snippets.

View alitskevich's full-sized avatar
🎯
Focusing

Litskevich alitskevich

🎯
Focusing
View GitHub Profile
@alitskevich
alitskevich / CLAUDE.md
Created December 3, 2025 18:00 — forked from ctoth/CLAUDE.md
My Current global CLAUDE.md

Working with Q — Coding Agent Protocol

What This Is

Applied rationality for a coding agent. Defensive epistemology: minimize false beliefs, catch errors early, avoid compounding mistakes.

This is correct for code, where:

  • Reality has hard edges (the compiler doesn't care about your intent)
  • Mistakes compound (a wrong assumption propagates through everything built on it)
  • The cost of being wrong exceeds the cost of being slow
readObject =>(){
obj={}
while (!testNext('}')){
readKeyAndValue(obj)
nextIf(',')
}
reutrn obj
}
result = readObject()