Downloads & Deliverables
Every GOVERN surface has a corresponding deliverable. This page is the complete index. Each entry includes the surface name, what it is, and where to access or deploy it.
All 17 GOVERN Surfaces
| # | Surface | Type | URL / Access |
|---|---|---|---|
| 1 | GOVERN Dashboard | Web app — governance practitioner UI | govern-dashboard.pages.dev |
| 2 | GOVERN App | Web app — end-user governance portal | govern-app.pages.dev |
| 3 | GOVERN Admin | Web app — operator console | govern-admin.pages.dev |
| 4 | GOVERN Customer | Web app — customer self-service | govern-customer.pages.dev |
| 5 | GOVERN API | REST + WebSocket API | govern-api.archetypal.ai |
| 6 | GOVERN Probe | Docker proxy container | docker pull archetypal/govern-probe:latest |
| 7 | GOVERN SDK (TypeScript) | npm package | npm install @archetypal-ai/govern |
| 8 | GOVERN SDK (Python) | PyPI package | pip install archetypal-govern |
| 9 | GOVERN SDK (Go) | Go module | go get github.com/archetypal-ai/govern-go |
| 10 | GOVERN CLI | Command-line tool | npm install -g @archetypal-ai/govern-cli |
| 11 | GOVERN Docs (this site) | Documentation — user-facing | govern-docs.pages.dev |
| 12 | GOVERN Developer Docs | Documentation — SDK & CI/CD | govern-developer-docs.pages.dev |
| 13 | GOVERN Admin Docs | Documentation — operator guide | govern-admin-docs.pages.dev |
| 14 | GOVERN Internal Docs | Documentation — engineering reference | Internal only |
| 15 | GOVERN GitHub Action | CI/CD action | archetypal-ai/govern-action@v1 |
| 16 | GOVERN Monitoring Agent | Infrastructure agent container | docker pull archetypal/govern-agent:latest |
| 17 | GOVERN API Spec | OpenAPI 3.1 specification | govern-api-spec.md |
Quick install reference
Probe (zero-code integration)
docker run -d \ -e GOVERN_API_KEY=gvn_live_xxxx \ -e GOVERN_ORG_ID=org_xxxx \ -e UPSTREAM_URL=https://api.openai.com \ -p 8080:8080 \ archetypal/govern-probe:latestTypeScript SDK
npm install @archetypal-ai/governimport { GovernClient } from '@archetypal-ai/govern';
const govern = new GovernClient({ apiKey: process.env.GOVERN_API_KEY, orgId: process.env.GOVERN_ORG_ID,});
const result = await govern.assess({ model: 'claude-sonnet-4-20250514', prompt: messages, response: completion.content,});Python SDK
pip install archetypal-governfrom archetypal_govern import GovernClient
govern = GovernClient( api_key=os.environ["GOVERN_API_KEY"], org_id=os.environ["GOVERN_ORG_ID"],)
result = govern.assess( model="gpt-4o", prompt=messages, response=completion.content,)CLI
npm install -g @archetypal-ai/govern-cligovern auth logingovern assess --model gpt-4o --prompt "test prompt" --response "test response"GitHub Actions
- name: GOVERN assessment gate uses: archetypal-ai/govern-action@v1 with: api-key: ${{ secrets.GOVERN_API_KEY }} org-id: ${{ secrets.GOVERN_ORG_ID }} model: claude-sonnet-4-20250514 test-prompts: tests/govern/prompts.json fail-on: blockMonitoring Agent
docker run -d \ -e GOVERN_API_KEY=gvn_live_xxxx \ -e GOVERN_ORG_ID=org_xxxx \ archetypal/govern-agent:latestAPI key types
| Key prefix | Purpose |
|---|---|
gvn_live_ | Production — assessments stored in audit trail |
gvn_test_ | Testing — assessments scored but not stored |
gvn_admin_ | Admin operations — organization management |
Get your keys at govern.archetypal.ai → Settings → API Keys.