Documentation Index
Fetch the complete documentation index at: https://docs.useterse.ai/llms.txt
Use this file to discover all available pages before exploring further.
Terse is currently in private beta. Email us at support@useterse.ai to request access, and let us know what use cases you’re looking to build.
Scaffold a project
terse init handles the full setup in one command:- Scaffolds your TypeScript project files (
src/index.ts, config, etc.) - Installs dependencies
- Opens the browser to authenticate via
terse login - Checks your connected integrations and prompts you to add more if needed
- Runs
terse generateto produce a typed SDK from your workspace
terse login during init stores CLI credentials in your user config, not in the project folder. Copy .env.example to .env when you want TERSE_API_KEY (or other secrets) available to your app or tooling as environment variables.Write your workflow
Open
src/index.ts and define a job. The scaffolded file includes a starter example. Your generated SDK gives you typed helpers for every integration you connected: trigger builders, skill constructors, resource constants, and deterministic tool wrappers.Test locally
Deploy
What to do next
Context as Code
Understand what
terse generate produces and why it matters.Templates
Start from a working workflow instead of a blank file.
