The prompt shaping RichInput used to do now lives here, where it belongs, and gets a graph while it moves. PromptShortcut grows a children[] adjacency list: a shortcut listed as someone's child only appears — and only contributes its line — while that parent is on, so 'Open PR' can hang off 'Commit & push' and a smoke-test note off 'Deploy'. It is a DAG, not a tree: several parents may reach the same child (drawn once, under the first that reveals it), and the traversal carries a visited set so a hand-made cycle terminates. lib/guidelineDag owns it: visibleGuidelines() derives the chips (with depth) from the graph plus the live selection, guidelineLines() turns that selection into prompt lines — including the guidelineOff branch for a visible-but-off either/or — and defaultGuidelineIds() seeds the default-on cascade so the composer's first paint shows what it would send. richComposer maps the result onto the now-generic RichTag and rebuilds the prompt in richComposePrompt. Settings gains the nesting: a child card is indented under its parent, a collapsed card says what reveals it and what it reveals, and a 'Nested under' chip row edits the edges (descendants excluded, so the graph stays acyclic). Deleting a shortcut also cuts the edges pointing at it, and a v1 store migration re-seeds the shipped links onto built-ins persisted before the DAG. Needs @gabvdl/ui 0.31.0.
ai-agent
A self-hosted agent layer for your computer — spawn and watch coding-agent sessions from an installable PWA, browse every conversation with real per-turn token costs, and manage the whole Claude context (CLAUDE.md files, skills, hooks, memories, projects) that shapes what the agent does.
Think Lovable, but open source and running on your own hardware: the agent builds things, the app shows you everything it touches — conversations, files, projects, costs, deploys — and nothing leaves your machine beyond the model API calls you configure.
Extracted from my homelab monorepo after ~280 commits; full history preserved. It runs my homelab's AI operations daily at
ai-agent.lab.gabvdl.xyz.
What it does
- Spawn / resume / interrupt agent sessions from the composer — pick a model (fetched live from the Anthropic API), an effort level, attach files — and watch the run stream into a live thread over SSE within seconds.
- Conversation archive — every Claude Code transcript parsed into a rich thread view: per-turn token usage and dollar cost, tool cards with duration and diff stats, thinking blocks, task panels — each element with its own visibility switch.
- Claude-context editor — every
CLAUDE.mdand the.claude/tree (skills, hooks, agents, settings) as an editable file list with real token counts and per-model costs, recomputed only when content changes. - Catalogs — projects gallery (git history, goals, costs per project), services catalog (static compose + Traefik parsing), assistant memories, scaffolding templates, plans with estimated-vs-actual metrics.
- Cron agents — scheduled sessions defined by a cron expression plus a prompt file; harness/model/effort declared in the prompt's frontmatter.
- Notification hub — the source of truth for the agent's "done"/"ask" push notifications (Home Assistant integration included), with tappable answers POSTed back to the blocked session.
Architecture
┌─────────────────────────── Docker container ───────────────────────────┐
│ FastAPI backend (:8080) ──serves── React PWA (Vite, installable) │
│ • transcript parser (resumable, O(new bytes) per live tick) │
│ • SQLite store: token counts, costs, skill analytics │
│ • SSE hub: one event bus invalidates the UI │
│ • cron scheduler, notification hub, trusted-caller gate │
└──────────────┬─────────────────────────────────────────────────────────┘
│ POST /spawn|/resume|/interrupt (Bearer token)
┌──────▼───────────────┐
│ sidecar (runner) │ launches `claude -p … --session-id …`
│ host process — or │ transcripts land in watched dirs and
│ inside the container │ stream back into the viewer
└──────────────────────┘
The same sidecar/sidecar.py runs in one of two places and the backend can't
tell the difference: on the host (a session then has the host user's own
auth, hooks and skills — exactly a terminal session) or inside the container
(RUNNER_IN_CONTAINER=1, the standalone default — the image bundles the Claude
Code CLI and spawns sessions with no host process at all).
Notable engineering, hard-won on a real archive (~900 transcripts / 458 MB):
- Resumable transcript parsing — a live session appends every couple of
seconds; a
ParserStateper growing file is fed only the new bytes instead of re-parsing from byte 0 (O(n²) over a session, before). - One git walk, not one per item — both catalogs share a HEAD-keyed
git log --name-onlybucketed per directory./api/serviceswent from twogit logforks per service per request (11 s) to <1 s. - Metadata-only list endpoints + per-file content loads + one-row SSE
patches: the conversation list went 1.3 MB → 89 KB,
/api/bundle12.5 s → 26 ms, idle CPU ~58% → ~7% while a session streams. - Blue-green deploys —
deploy.shhealth-gates a standby container on/api/health, cuts the reverse proxy over, recreates, restores: zero downtime, and a bad build never touches the live container. - Trusted-caller security gate — the API answers only the reverse proxy,
the host, or a shared token; read-only API keys allow safe methods only
(a desk phone reads notifications aloud but can never spawn a session);
uploaded bytes are served
nosniff+attachmentso user content never executes on the app origin. - Schema-drift canary — the Claude Code transcript format is internal and
undocumented;
scripts/schema-drift.pydiffs a structural footprint of fresh transcripts against a committed baseline and cross-checks the real parser against raw record counts. - In-browser mock backend —
?mock=1swapsfetch+EventSourcefor a deterministic, combinatorial in-memory seed (every UI state reachable from a cold load), so the PWA demos and tests with no backend at all.
Stack
FastAPI · Python 3.12 · SQLite (WAL) · React 18 · TypeScript · Vite · Tailwind · TanStack Query (IndexedDB-persisted) · Zustand (server-persisted) · SSE · orval (API types generated from the OpenAPI spec) · Docker · Traefik.
Run it
Standalone (no host mounts — catalogs degrade gracefully when a mount is absent):
docker compose -f docker-compose.standalone.yml up -d
# → http://localhost:8080 (set ANTHROPIC_API_KEY, or mount a logged-in
# Claude home at the runner's $HOME, to spawn sessions)
scripts/standalone-smoke.sh boots the image against a throwaway workspace
and asserts every catalog endpoint, the PWA shell and the bundled runner
answer correctly.
In my homelab it runs behind Traefik + Authelia with the host-side sidecar;
that deployment config (compose mounts, Traefik router, blue-green deploy.sh)
lives in the homelab repo's
services/ai-agent/ shim. The copies of those files in this repo's history are
kept as reference.
Where it's going
See GOAL.md — the north star is the open-source, intuitive, private and secure agent layer of any computer: one container, zipgo-backed hosting, in-container self-update.