Summary
Examples in the Point repo are working fixtures used by checks and tests. They are the best source for small, runnable patterns across domains.
Start here: Point in 60 seconds → Golden app demo.
Golden path (evaluators)
| Step | Command / doc |
|---|---|
| 1 | Golden app demo — point create, point dev, point launch |
| 2 | point box src/app.point — discover capabilities + commands |
| 3 | point check-json src/app.point — agent repair loop |
By domain
| Domain | Example | Launch |
|---|---|---|
| CLI | examples/command.point | point launch examples/command.point hello cli |
| Pure logic | examples/cart-total.point | point check (no command) |
| Capabilities | examples/capabilities-demo.point | point check |
| HTTP | examples/route.point | point check |
| UI | examples/view.point | point check |
| Orchestration | examples/workflow.point | point check |
| Agents | examples/agents/support-chat.point | point check |
| Full app | examples/app/dashboard/dashboard.point | point commands then launch |
| Stdlib | examples/std-usage.point | point check |
| Tests | examples/point-tests.point | point test examples/point-tests.point |
Also useful: examples/math.point (mixed logic + labels), examples/variants/order-status.point (tagged unions).
Adopters (dogfood demos)
Real product shapes under examples/adopters/ — optional, not the default learning path:
examples/adopters/starter-labs/subscription-tier.point— pricing tiers and labelsexamples/adopters/hatchingpoint/readiness-widget.point— interactive checklist (live demo)
Application platform
| Area | Example |
|---|---|
| Multi-page app | examples/app/dashboard/dashboard.point |
| Notes + database | examples/app/notes/notes.point |
| WebSocket + subprocess stream | examples/app/log-viewer/log-viewer.point |
| Full-stack template | examples/full-stack-template/ |
| Variant types | examples/variants/order-status.point |
| Middleware + typed routes | examples/api/middleware-demo.point |
| Workflow retry/timeout | examples/workflow-retry.point |
| Pipeline + guard | examples/pipelines/guarded-output.point |
| Session + AI | examples/agents/support-chat.point |
| Prompt library | examples/prompts/support-greeting.point |
| Integration tests | examples/api/middleware-integration.point |
Scaffold a new app:
point create my-appLive demo
The public docs site embeds HTML generated by the owned Point runtime at build time — not a hand-written React widget or Vite app:
Surfaces shown:
- Home-base deployment readiness (
experiments/point-only/src/app.point) — checkboxes scored through runtime rules - Runtime-native SaaS UI (
runtime-saas-app) — login form + SQLite-backed members datagrid
Run the same apps locally with point dev after point create --template runtime-saas-app or from the home-base experiment tree. See Runtime deploy.
Agent workflow
point check your-file.point
point check-json your-file.point
point repair-plan your-file.pointSee also
Live demo
This demo renders HTML from the owned Point runtime at build time — home-base readiness checkboxes and runtime-native SaaS datagrid/forms from experiments/point-only and runtime-saas-app. No Vite host or React emit in the author path. See Runtime deploy to run the same surfaces with point dev.
Owned runtime SSR
Rendered by packages/point/runtime
HTML below is generated from .point source at build time — no Vite app, no React emit, no hand-written widget logic.
Score
0
not ready
Source: experiments/point-only/src/app.point
Readiness summary
not ready
Scoring runs through the Point runtime export — same rules as the home-base app.
