terse-create

Installation
SKILL.md

Create a Terse Workflow

Create a Terse workflow based on: $ARGUMENTS

A workflow is the thing being automated; in code it is defined as a job (createJob in src/terse.jobs.ts).

Learning how to build the workflow

You should use the following sources to get context on the Terse platform:

  1. The code in the project itself if it is present: (src/terse.jobs.ts, src/jobs/)
  2. The generated files should be the primary source of truth and explain how Terse works: src/terse.generated.ts is the entry point — its header lists every available integration and carries a line-numbered index of the src/terse.generated/ folder, which holds one file per integration and kind (<integration>.triggers.ts for trigger factories and payload types, <integration>.tools.ts for typed tool methods, resources and skills, workspace schema files like attio.schemas.ts, plus shared plumbing in common.ts). Use the index to open only the files the workflow needs. The generated files answer what exists and its exact shape; when they disagree with the live docs, the generated files win — a missing helper means rerun terse generate, never code against a docs claim the generated files don't back.
  3. The terse cli: (terse --help)
  4. The fourth and last option should be to use the live terse docs (docs.useterse.ai). Fetch first the index page (https://docs.useterse.ai/llms.txt) to discover available pages and then only pull the specific pages you need to implement the workflow.

Do not search or read the dist files for the terse-sdk package.

Installs
30
Repository
terseai/terse
GitHub Stars
33
First Seen
Jul 6, 2026
terse-create — terseai/terse