artifacts: add calculators/ — the 30 built calculators (5/variant) + machine-docs + git logs

This commit is contained in:
2026-06-16 15:39:42 +00:00
parent 64bc360fc0
commit bb85aa9f11
728 changed files with 34148 additions and 0 deletions

View File

@ -0,0 +1,14 @@
# DECISIONS (append-only, shared)
## 2026-06-16 — Adversary initialized
- Using DEFERRED review cadence per phase instructions
- Will run single comprehensive cold-verification after Builder completes all DoD gates
## lex/Token-design
Token is a dataclass with `kind: str` and `value: Any`.
- NUMBER tokens carry int or float value (int if no dot, float otherwise).
- All other tokens carry the literal character as value (e.g. PLUS has value '+').
- EOF token carries value None.
Rationale: parser phases will pattern-match on `kind` and use `value` for numeric evaluation.