Introduce the @void-nav/api Hono + SQLite backend that powers the docs site: a persisted implementation board (kanban), a custom documentation-pages store with AI beautify, and an agentic orchestrator that runs `pi` agents per card. The orchestrator spawns `pi --mode rpc` inside an isolated git worktree per run, streams slim events over SSE, and lets the agent drive the board/docs via token-gated internal endpoints (all SQLite writes stay in-process). Interrupted runs are reconciled to "stopped" on boot. Workspace wiring: root `dev:api`/`dev:web` scripts with `concurrently`, the docs Vite `/api` proxy, and `.worktrees/` gitignore.
44 lines
503 B
Plaintext
44 lines
503 B
Plaintext
node_modules/
|
|
dist/
|
|
build/
|
|
coverage/
|
|
.turbo/
|
|
.nx/
|
|
.vite/
|
|
.parcel-cache/
|
|
.cache/
|
|
.DS_Store
|
|
|
|
# Environment files (never commit these)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# SpacetimeDB
|
|
spacetime.local.json
|
|
.spacetime-dev/
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
vite.config.js
|
|
vite.config.d.ts
|
|
|
|
# Playwright
|
|
.playwright-mcp/
|
|
|
|
# Rust
|
|
target/
|
|
|
|
# Agentic orchestrator worktrees
|
|
.worktrees/
|
|
|
|
# Database files (SQLite, SpacetimeDB, etc.)
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# CI/CD local testing
|
|
.github/workflows/.local*
|