Reference

Applications

Index of UI, HTTP, orchestration, and agent blocks for full-stack Point programs.

Summary

Application blocks connect application logic to HTTP, UI, orchestration, agents, and CLI entrypoints. Each area has a dedicated guide page — this page is the index.

Guide pages

AreaBlocksPage
UIview, page, layout, navigationUI
HTTProute, middlewareRoutes
Realtimestream route, view subscribe toRealtime
Orchestrationworkflow, schedule, commandWorkflows
Agentspipeline, session, prompt, guard output pathsAgents

When to use which block

  • Pure logicrecord, calculation, rule, label (see Language overview)
  • Side effectsaction, external, policy (Effects)
  • HTTP APIroute + optional middleware (Routes)
  • React UIview for fragments, page for document shells (UI)
  • Multi-page applayout, navigation, multiple page blocks (UI)
  • Background workworkflow for async steps, schedule for intervals (Workflows)
  • CLI / scriptscommand (Workflows)
  • LLM flowspipeline, session, prompt, guard (Agents)

Compiler note

Application blocks share the same check and ref model as logic blocks. Views, routes, pipelines, and commands appear in point index with distinct semantic kinds for agent navigation.

Demo apps

  • examples/app/dashboard/ — layout, navigation, data loading, lists
  • examples/app/notes/ — database actions in views
  • examples/app/log-viewer/ — stream route + subprocess
  • examples/app/job-queue/ — SQL-backed jobs queue, routes + workflow runner
  • examples/full-stack-template/ — SaaS admin shell
  • examples/adopters/hatchingpoint/ — dogfood readiness demo (not the default teaching path)

See also