# System One Playground: Page Reference

Auto-generated LLM-friendly documentation for all registered pages and screens.

For API endpoints (CRUD resources), see [/api/llm.md](/api/llm.md).

## Pages

| Path | Title | Description |
|------|-------|-------------|
| [/docs/configuration](/docs/configuration/llm.md) | Configuration and budgets | SysOneScript 0.6: configuration and budgets. |
| [/docs/agent-interface](/docs/agent-interface/llm.md) | CLI and MCP | SysOneScript 0.6: cli and mcp. |
| [/client](/client/llm.md) | Go client | Go client documentation. |
| [/semlint](/semlint/llm.md) | semlint | semlint documentation. |
| [/](/llm.md) | System One Playground | Go client, semantic tooling, language and Studio documentation. |
| [/docs/getting-started](/docs/getting-started/llm.md) | Get started | Build the tools and run your first offline script. |
| [/docs/project-environment](/docs/project-environment/llm.md) | Environment settings | SysOneScript 0.6: environment settings. |
| [/docs/editor](/docs/editor/llm.md) | Colors, hints and diagnostics | SysOneScript 0.6: colors, hints and diagnostics. |
| [/docs/limits](/docs/limits/llm.md) | Status and limitations | What ships in 0.6 and what remains planned. |
| [/docs/semlint-source](/docs/semlint-source/llm.md) | SOS semlint source | Complete runnable repository scanner and calibration CLI. |
| [/docs/enable-jev](/docs/enable-jev/llm.md) | Add Jev to your application | Enable credentials, modes, budgets and application integration. |
| [/docs/vocabulary](/docs/vocabulary/llm.md) | Imports and vocabulary | SysOneScript 0.6: imports and vocabulary. |
| [/docs/tickets-source](/docs/tickets-source/llm.md) | Tickets source | Complete runnable tickets CLI source. |
| [/docs/parallel](/docs/parallel/llm.md) | Parallel maps and failures | Bounded workers, isolated state, ordered results and shared budgets. |
| [/docs/for-agents](/docs/for-agents/llm.md) | For agents | Read machine-friendly docs and connect the local project CLI or MCP. |
| [/docs/language](/docs/language/llm.md) | Language reference | SysOneScript 0.6: language reference. |
| [/docs/packages](/docs/packages/llm.md) | Packages and standard library | SysOneScript 0.6: packages and standard library. |
| [/docs/interpretation](/docs/interpretation/llm.md) | Jev interpretation | SysOneScript 0.6: jev interpretation. |
| [/docs/question-batches](/docs/question-batches/llm.md) | Questions and batches | First-class Jev questions and one-request batch evaluation. |
| [/docs/semlint-sos](/docs/semlint-sos/llm.md) | Build semlint in SOS | Repository scanning, parallel rule evaluation and calibration with the Go reference retained. |
| [/studio](/studio/llm.md) | Studio | Studio documentation. |
| [/tools](/tools/llm.md) | Tools and experiments | Tools and experiments documentation. |
| [/docs](/docs/llm.md) | SysOneScript | Language guides and reference. |
| [/docs/commands](/docs/commands/llm.md) | Commands and actions | SysOneScript 0.6: commands and actions. |
| [/docs/projects](/docs/projects/llm.md) | Studio projects | SysOneScript 0.6: studio projects. |
| [/docs/tickets](/docs/tickets/llm.md) | Tickets walkthrough | SysOneScript 0.6: tickets walkthrough. |
| [/docs/repository-cli](/docs/repository-cli/llm.md) | Build a repository CLI | SysOneScript 0.6: build a repository cli. |
| [/docs/io](/docs/io/llm.md) | Files, streams and values | Filesystem, subprocess, text and collection operations. |
| [/docs/external-modules](/docs/external-modules/llm.md) | External modules | Typed command and persistent stdio plugin modules. |

## Architecture

This application uses server-side rendering (SSR) with client-side hydration:

1. **Initial load:** Every page is fully server-rendered as HTML.
2. **Hydration:** `runtime.js` attaches event handlers to the existing DOM after first paint.
3. **Cross-page navigation:** Client-side fetch with content swap, no full page reload.
4. **In-page state:** Interactive regions (islands/widgets) update via RPC, not URL changes.
5. **Server push:** Real-time updates flow through SSE for background events only.

### Endpoints

| Endpoint | Purpose |
|----------|----------|
| `/{path}` | Full SSR HTML page |
| `/{path}/llm.md` | LLM-friendly documentation for that page |
| `/llm-pages.md` | This index document |
| `/__gofastr/runtime.js` | Client-side runtime (hydration, SPA nav, islands) |
| `/__gofastr/app.css` | Merged theme + component CSS |
| `/__gofastr/sse` | Server-Sent Events stream |
