Documentation Index
Fetch the complete documentation index at: https://docs.tovuk.com/llms.txt
Use this file to discover all available pages before exploring further.
Week of May 25, 2026
New
- Tovuk is the new name for the platform. The CLI, packages, and Homebrew
formula now ship under
tovuk. Install withnpx tovuk,brew install tovuk/tovuk/tovuk,pipx install tovuk, orcargo install tovuk. See Packages. - One-URL full-stack deploys. Ship a Rust backend and static frontend from
one repo with a single root
tovuk.toml. Runnpx tovuk deploy --databaseto get one*.tovuk.appURL serving static assets at/and the backend at/api/*. See Full Stack. - Project templates and local preview. Scaffold a Rust API, TanStack static
frontend, or full-stack project with
npx tovuk init, then runnpx tovuk previewto test locally before deploying. See Templates. - Custom domain verification. Verify and connect custom domains from the CLI without leaving your terminal.
- Agent and deploy inspection commands. New
overview,builds, andlogscommands return structured JSON for app, build, and deploy state so agents can debug failed deploys end to end. See the Agent Loop. - Homebrew tap. Install the CLI on macOS with
brew tap tovuk/tovuk https://github.com/tovuk/tovuk && brew install tovuk. - Structured support tickets from the CLI. Open, list, and resolve tickets
with
npx tovuk supportand attach app, build, deploy, and log context for faster triage. See the Support loop.
Updates
- Deploy
--waitmode in SDKs. The npm, PyPI, and Cargo SDKs now wait for builds to finish and stream a final status, with concurrent waits for full-stack workspaces. - Preflight deploy limits in SDKs. Plan-limit checks now run before a
deploy starts, returning a Stripe checkout link via
tovuk billing checkoutwhen an upgrade is needed. - Actionable doctor feedback.
npx tovuk doctornow returns a concreteagent_instructionfor every failed check so agents can repair issues in one loop. See the Agent Loop. - Improved workspace doctor UX. Faster checks and clearer output for full-stack workspaces.
- Inline CLI flag values. Flags now accept inline values
(
--app=app_1) alongside the existing space-separated form. - CLIs are aligned across npm, PyPI, and Cargo. The same commands, flags, and JSON responses are available from every package.
Fixes
- Reject unknown CLI flags. The CLI now errors clearly instead of silently ignoring typos.
- Stable npm signature verification. Signature checks no longer fail intermittently during scoped publishes.
- Fixed broken agent readiness link in
llms.txt.