9.1 KiB
v5 Upgrade, Install, Remote, And Admin Guide
This guide is the release-facing entry point for v5 operators. It links the existing detailed docs and keeps the happy path separate from optional automation layers.
For current release-safe dummy screenshots and GIFs of the v5 desktop shell, resizable Workbench, agent provider settings, task work view, Maintenance Center, and mobile/PWA shell, see v5 Visual Tour. Release evidence, when needed for a future candidate, belongs in the reusable v5 Release Candidate Evidence Packet.
Choose The Right Path
| Path | Use when | Start here | Do not configure on day one |
|---|---|---|---|
| Local board from source | You want a personal board and dev server. | docs/SETUP-PATHS.md and docs/GETTING-STARTED.md. |
OpenClaw, MCP writes, Squad Chat webhooks, workflow gates, notifications. |
| Mac desktop local | You want the packaged desktop app and bundled local server. | This guide plus docs/DESKTOP-RELEASE.md. |
Remote exposure, tunnels, multi-user invitations, external webhooks. |
| v4 to v5 upgrade | You have file-backed v4 data and need SQLite. | Migration steps below plus docs/MIGRATION-RECOVERY.md. |
Deleting old files before the SQLite migration is accepted. |
| Remote/server | You want trusted LAN, VPN, reverse proxy, or tunnel access. | docs/guides/SELF_HOST.md and ADR 0002. |
Public exposure without auth, HTTPS, backup, and WebSocket validation. |
| Mobile/PWA | You want phone/tablet access to a trusted host. | docs/guides/PWA_INSTALL.md. |
Native offline execution or queued writes. |
| Multi-user admin | You manage workspaces, roles, invites, devices, and tokens. | docs/IDENTITY-RBAC.md and the admin section below. |
Sharing owner/admin tokens with agents. |
Fresh Mac Desktop Install
-
Install the signed/notarized desktop app with Homebrew:
brew tap BradGroux/tap brew install --cask veritas-kanbanManual install is also supported from the stable GitHub release by downloading
Veritas-Kanban-5.0.0-mac-arm64.zip, unzipping it, and movingVeritas Kanban.appinto/Applications. -
Launch normally. A stable release should not show a Gatekeeper warning.
-
Pick the first-run path:
- Board Only for a local board with no agents.
- Agent Ready for local agent tooling.
- Remote Server to pair with a trusted host.
- Restore to import a backup.
-
Create the admin password and save the recovery key.
-
Open Settings -> Maintenance and verify health checks, storage, logs, backup, and debug-bundle previews.
Desktop data lives under:
~/Library/Application Support/@veritas-kanban/desktop/profiles/default/workspaces/local/
Desktop secrets use the native safe-storage/keychain path documented in the desktop architecture and release docs. Do not copy raw keychain payloads between machines.
v4 To v5 Upgrade
-
Stop the app and preserve the current repo or app data directory.
-
Run a dry-run migration:
POST /api/v1/sqlite/migration/dry-run -
Review warnings for malformed tasks, duplicate IDs, missing attachments, and backup copy issues.
-
Run the migration only after the dry run is clean enough to accept:
POST /api/v1/sqlite/migration/run -
Preserve the migration journal, backup directory, and report.
-
Boot v5 with SQLite storage and verify board, task detail, search, workflow, chat, settings, work products, Maintenance Center, and audit history.
-
Accept the migration only after backup/export and restore drills pass.
Rollback means restoring the pre-migration file-backed backup. Do not rely on
destructive SQLite down migrations for GA users. Follow
docs/MIGRATION-RECOVERY.md if the migration fails or an older app sees a
newer database.
Remote And Server Mode
Remote access is a trusted-host setup, not localhost mode. The supported happy
path serves the web app, /api, /ws, manifest, service worker, health routes,
and static assets from one HTTPS origin.
Minimum remote checks:
curl https://kanban.example.com/api/health
curl https://kanban.example.com/health/ready
curl https://kanban.example.com/api/auth/status
Then verify a WebSocket upgrade to wss://kanban.example.com/ws from the same
origin. Keep VERITAS_AUTH_ENABLED=true and
VERITAS_AUTH_LOCALHOST_BYPASS=false for remote/server mode.
Do not use browser password sessions as the remote access boundary. In v5 GA the password session cookie is accepted only for local-owner loopback clients. Remote browsers, mobile/PWA clients, CLI/MCP clients, and multi-user workflows must use trusted device sessions or scoped API tokens so workspace membership, role, revocation, and downgraded scopes are revalidated.
Use safe LAN, VPN, Tailscale, or reverse-proxy examples from
docs/guides/SELF_HOST.md. Split-origin deployments require exact CORS,
WebSocket, service-worker, cookie, and token handling as described in ADR 0002.
Mobile And PWA
Use mobile/PWA only from a trusted HTTPS host. Pair or sign in first, then
install from Safari or Chrome using docs/guides/PWA_INSTALL.md.
Mobile-safe behavior:
- Read board, notifications, work products, workflow runs, approvals, and settings-lite surfaces allowed by role.
- Status changes are disabled while offline.
- API responses and WebSocket data are not cached for offline replay.
- Writes are not queued for later sync.
Desktop-only behavior remains desktop-only: local app data paths, keychain management, desktop update checks, local backup/import filesystem actions, and native menu/deep-link commands.
Multi-User Admin
Use Settings to manage:
- users and memberships
- roles: owner, admin, member, reviewer, read-only, agent
- invitations and revocation
- trusted devices and paired sessions
- scoped API tokens
- workspaces and workspace switching
Rules:
- Keep at least one owner.
- Use admin/member/reviewer/read-only for humans.
- Use agent or service tokens for automation.
- Rotate and revoke scoped tokens from the UI when a client is lost.
- Keep owner/admin credentials out of task descriptions, prompts, logs, and support bundles.
Backup, Restore, Diagnostics, And Maintenance
Use Settings -> Maintenance for:
- health checks
- storage summaries
- redacted log tails
- redacted debug bundles
- SQLite export/import reporting
- cleanup previews
- skill security scans
For backup/import API details, see the SQLite portability and Maintenance
Center sections in docs/API-REFERENCE.md.
Assistant-Safe Setup Prompts
Local board:
Set up Veritas Kanban locally using the board-only path first. Verify
localhost:3000 and localhost:3001/api/health. Do not configure OpenClaw, MCP,
Squad Chat webhooks, workflow gates, notifications, or remote access unless I
ask for that layer.
Mac desktop:
Install the signed Veritas Kanban Mac app, choose Board Only first-run setup,
save the recovery key, and verify Settings -> Maintenance health. Do not expose
the app to the network or configure integrations yet.
Remote/server:
Configure Veritas Kanban as a trusted same-origin HTTPS host. Keep auth enabled,
disable localhost bypass, verify /api/health, /health/ready, /api/auth/status,
and /ws from the public origin, then document the reverse proxy and backup path.
MCP/CLI:
Build the CLI or MCP server from this checkout, set VK_API_URL and a scoped
VK_API_KEY, run the documented read/write smoke checks, and do not use owner or
admin credentials for routine agent writes.
Known v5 GA Limits
- Mac is the only desktop GA target. Linux and Windows artifacts are preview-only, unsigned, non-GA validation outputs documented in Desktop Release, not supported v5 install targets.
- Mobile GA is responsive web plus PWA, not native offline apps. Native mobile offline architecture is defined in ADR 0003; implementation remains post-GA.
- Hosted cloud sync/SaaS is out of v5 GA scope. The optional post-GA hosted model is defined in ADR 0004; v5 Mac GA has no hosted endpoint, hosted account requirement, or automatic cloud sync default.
- Deeper desktop agent workbench features are defined in Post-GA Desktop Agent Workbench Spec; implementation remains post-GA.
- App rollback after SQLite migration is limited by schema compatibility. Use the pre-migration backup when an older app cannot open a newer schema.