Skip to main content

Comparison

Fully autonomous agentsTerse
ModeOpen-ended explorationDeterministic workflow with model judgment
Best atBroad research, loose tasksCRM updates, routing, alerts, reporting
Write controlAgent decidesYou decide (agent.tools.*)
ObservabilityVariesBuilt-in run history, stats, approvals
AI roleEnd-to-end autonomyJudgment step inside a controlled flow

The Terse pattern

  1. Deterministic fetch — pull data from your CRM or enrichment API.
  2. Model judgment — summarize, score, or recommend.
  3. Deterministic write — update the CRM, post to Slack.
The model handles judgment. Everything else is code you control.

Choose an agent platform when

  • the task is open-ended research or exploration
  • the output does not need to land in a specific system every time
  • a human supervises the session directly

Choose Terse when

  • the workflow must update your CRM correctly every time
  • you need reproducible, auditable behavior around writes
  • you want AI inside a system you can test, review, and deploy