Private
Public Access
0
0

docs(tech-stack): add Core Value reference at top

This commit is contained in:
2026-06-25 20:55:57 -04:00
parent 78d5341ee0
commit dd03387c69
+3 -1
View File
@@ -1,8 +1,10 @@
# Technology Stack: Manual Slop
> **Core Value (added 2026-06-25):** C11/Odin/Jai semantics in this Python runtime. See `conductor/product-guidelines.md` "Core Value", `conductor/code_styleguides/data_oriented_design.md` §8.5, and `conductor/code_styleguides/python.md` §17. Banned: `dict[str, Any]`, `Any`, `Optional[T]`, `hasattr()` for entity dispatch, `.get()` on known fields. Use typed `@dataclass(frozen=True, slots=True)` with explicit fields. Use `Result[T]` + `NIL_T` sentinels.
## Core Language
- **Python 3.11+**
- **Python 3.11+** (used for practical reasons; the convention is to make it behave like a statically-typed value-typed language; see Core Value above)
## GUI Frameworks