Summary
Point is the language you write. The toolchain checks semantic source, then builds runnable output when you need it. Most day-to-day work is point check, point box, and point launch on .point files — not editing generated files.
Start: Point in 60 seconds.
What you work in
| Layer | You touch it? | What it is |
|---|---|---|
| `.point` source | ✅ Always | Records, rules, labels, routes, views, pipelines — the language |
| Checker + CLI | ✅ Via commands | check, fmt, index, explain, check-json, repair-plan |
| Core IR | ❌ Never | Internal typed representation — like an AST other compilers keep private |
| Build output | ⚠️ Generated only | Files under generated/ when you run point build — artifacts, not source |
Daily workflow:
point check myfile.point
point box myfile.point
point launch myfile.point my command
point dev src/app.pointLogic-only files stop at point check. Use point launch when the file has command blocks.
Check path
.point → parse → semantic AST → check → ok / diagnosticsDiagnostics use stable point://semantic/ refs and structured fields (expected, repair) so agents patch declarations, not line numbers.
Build path (when you need it)
.point → check → build → generated modulespoint build is the default build command. Optional targets and flags (build-ts, build-py) are documented in Build and emit. You do not need every target to use Point — most apps stay on the default build + Bun/Node.
Interop (React, npm packages, SQL drivers, HTTP) happens at the edges through external blocks and std imports — see Effects and Integrations.
For coding agents
The compiler is the agent's IDE:
- Write and repair
.pointonly - Use
check-json,index,explain, andrepair-planwith semantic refs - Do not treat generated files as source of truth
