This page is the admin reference for every GOVERN deliverable. It includes deploy commands, container images, and operational notes for each surface.
All 17 GOVERN Surfaces
| # | Surface | Type | Deploy target |
|---|
| 1 | GOVERN Dashboard | Web app | govern-dashboard.pages.dev |
| 2 | GOVERN App | Web app | govern-app.pages.dev |
| 3 | GOVERN Admin | Web app | govern-admin.pages.dev |
| 4 | GOVERN Customer | Web app | govern-customer.pages.dev |
| 5 | GOVERN API | REST + WebSocket | govern-api.archetypal.ai |
| 6 | GOVERN Probe | Docker proxy | archetypal/govern-probe:latest |
| 7 | GOVERN SDK (TypeScript) | npm | @archetypal-ai/govern |
| 8 | GOVERN SDK (Python) | PyPI | archetypal-govern |
| 9 | GOVERN SDK (Go) | Go module | github.com/archetypal-ai/govern-go |
| 10 | GOVERN CLI | npm global | @archetypal-ai/govern-cli |
| 11 | GOVERN Docs | Starlight site | govern-docs.pages.dev |
| 12 | GOVERN Developer Docs | Starlight site | govern-developer-docs.pages.dev |
| 13 | GOVERN Admin Docs | Starlight site (this site) | govern-admin-docs.pages.dev |
| 14 | GOVERN Internal Docs | Starlight site | Internal only |
| 15 | GOVERN GitHub Action | CI/CD action | archetypal-ai/govern-action@v1 |
| 16 | GOVERN Monitoring Agent | Docker container | archetypal/govern-agent:latest |
| 17 | GOVERN API Spec | OpenAPI 3.1 | See API documentation |
Deploy commands — Web apps (Cloudflare Pages)
# Deploy all four web apps
pnpm --filter @jarvis/govern-dashboard build
wrangler pages deploy packages/govern-dashboard/dist --project-name govern-dashboard
pnpm --filter @jarvis/govern-app build
wrangler pages deploy packages/govern-app/dist --project-name govern-app
pnpm --filter @jarvis/govern-admin build
wrangler pages deploy packages/govern-admin/dist --project-name govern-admin
pnpm --filter @jarvis/govern-customer build
wrangler pages deploy packages/govern-customer/dist --project-name govern-customer
Deploy commands — Documentation sites (Cloudflare Pages)
# Deploy all four docs sites
pnpm --filter @jarvis/govern-docs build
wrangler pages deploy packages/govern-docs/dist --project-name govern-docs
pnpm --filter @jarvis/govern-developer-docs build
wrangler pages deploy packages/govern-developer-docs/dist --project-name govern-developer-docs
pnpm --filter @jarvis/govern-admin-docs build
wrangler pages deploy packages/govern-admin-docs/dist --project-name govern-admin-docs
pnpm --filter @jarvis/govern-internal-docs build
wrangler pages deploy packages/govern-internal-docs/dist --project-name govern-internal-docs
Deploy commands — Containers
# Pull and start all containers
docker pull archetypal/govern-api:latest
docker pull archetypal/govern-probe:latest
docker pull archetypal/govern-agent:latest
# Start with Docker Compose
docker compose -f govern-docker-compose.yml up -d
curl https://localhost:8443/health
Deploy commands — API (Cloudflare Worker)
Version matrix
| Component | Current version | Min supported | EOL |
|---|
| GOVERN API | 1.0.0 | 0.8.0 | — |
| Probe | 1.0.0 | 0.9.0 | — |
| Agent | 1.0.0 | 0.9.5 | — |
| SDK (TS) | 1.0.0 | 0.7.0 | — |
| SDK (Python) | 1.0.0 | 0.7.0 | — |
| SDK (Go) | 1.0.0 | 0.8.0 | — |
| CLI | 1.0.0 | 0.9.0 | — |