terse-improve
Installation
SKILL.md
Improve a Terse Workflow
Improve the Terse workflow named: $ARGUMENTS
A workflow is defined in code as a job (createJob in src/terse.jobs.ts); the CLI commands below take that job name.
Learning how to improve 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 job touches. 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 improve the workflow.
Do not search or read the dist files for the terse-sdk package.