lab project — the homelab repo, home for unattributed conversations
Conversations that never edit a `projects/<slug>` file — service work, skills, scripts, docs, plain questions — used to fall out of every project-shaped view as "(unattributed)". They now land on a root project card backed by the repo root itself. - projects.py: ROOT_SLUG (`lab`), attributed_projects() (derived at read time, never written to the sidecar), project_dir()/repo_rel() so callers resolve the slug to REPO_DIR instead of assuming projects/<dir>, plus the gallery record and detail view (repo CLAUDE.md, GOAL.md, git history). A real ~/projects/lab dir would win over the synthesised record. - main.py: _conv_meta applies the fallback (so tags, project pages, graph and dashboards all see it), and the goals board + goal-work resolve the unit's dir through project_dir()/repo_rel(). - project_costs.py: same fallback, so the lab's spend rolls up on its card. - gitdiff.py: `project:lab` resolves to the superproject. - count_loc: the lab's LoC comes from `git ls-files` (tracked source only) — a directory walk would count services/media and the untracked data/ tree. - Frontend: house icon, dashed tinted frame and a `root` badge on the card and detail page; no .env editor; the tag's repo path reads `.`.
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.