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:
- The code in the project itself if it is present: (src/terse.jobs.ts, src/jobs/)
- The generated files should be the primary source of truth and explain how Terse works:
src/terse.generated.tsis the entry point — its header lists every available integration and carries a line-numbered index of thesrc/terse.generated/folder, which holds one file per integration and kind (<integration>.triggers.tsfor trigger factories and payload types,<integration>.tools.tsfor typed tool methods, resources and skills, workspace schema files likeattio.schemas.ts, plus shared plumbing incommon.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 rerunterse generate, never code against a docs claim the generated files don't back. - The terse cli: (terse --help)
- 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.