Authoring a chat.agent
The full, version-pinned reference ships inside your installed @trigger.dev/sdk. Read it before writing code — it always matches the SDK version in this project, so it never drifts:
- Skill:
node_modules/@trigger.dev/sdk/skills/trigger-authoring-chat-agent/SKILL.md — the per-turn run loop, the managed streamText, the two server actions, typed tools/data parts, and the React transport.
- Docs: the full, version-pinned docs ship bundled at
node_modules/@trigger.dev/sdk/docs/ai-chat/; the skill above lists the exact pages it draws from in its sources: frontmatter. Grep for an API, e.g. grep -rl "toStreamTextOptions" node_modules/@trigger.dev/sdk/docs/.
If those paths don't exist, @trigger.dev/sdk isn't installed yet — install it first. In a non-hoisted layout, resolve the package with node -p "require.resolve('@trigger.dev/sdk/package.json')" and read skills/ + docs/ beside it.
Common mistakes
CRITICAL: calling the streamText imported from ai.
// Wrong - compaction / steering / background injection silently no-op
import { streamText } from "ai";
run: async ({ messages, signal }) => streamText({ model, messages, abortSignal: signal });
// Correct - the run argument's streamText carries the managed options
run: async ({ messages, signal, streamText }) => streamText({ model, messages, abortSignal: signal });
The SDK's one carries the prepareStep behind compaction, mid-turn steering and background
injection, the system prompt from chat.prompt() or chat.agent({ system }), the registry-resolved
model, and telemetry. The imported one carries none of it, with no error.
...chat.toStreamTextOptions() does the same job by hand, and is what a custom agent has to use,
since it has no run argument. A chat.headStart route gets a bound streamText too, and there it
also owns messages, stopWhen and abortSignal.
Declaring tools only on streamText. Also declare them on chat.agent({ tools }), read them
back from run, and pass that set as tools. Otherwise each tool's
toModelOutput runs on turn 1 but is dropped when history is re-converted on later turns.
Not forwarding signal for stop. Without abortSignal: signal, Stop updates the UI but the
model keeps generating server-side.
Initializing chat.local in onChatStart. Initialize it in onBoot. onChatStart fires
once per chat, so continuation runs skip it and crash with
chat.local can only be modified after initialization. onBoot fires on every fresh worker.
Minting tokens in the browser. Never expose the environment secret key client-side. Mint via
the two server actions; the transport calls them.
Clearing lastEventId on chat.endRun(). Keep the cursor for the Session lifetime; clear it
only when the Session itself closes. It is sessionId-keyed, so clearing forces a resubscribe from
seq_num=0 that can hit the prior turn's stale turn-complete and close the stream empty.
Returning the raw error from uiMessageStreamOptions.onError. It leaks internals (keys,
stack traces). Return a sanitized string instead.
References
Sibling skills: trigger-chat-agent-advanced (Sessions primitive, custom transports, sub-agents, HITL, fast starts, resilience, testing, upgrades), trigger-authoring-tasks and trigger-realtime-and-frontend (the task + frontend foundations chat builds on).
1---2name: trigger-authoring-chat-agent3description: Author and run a durable AI chat agent with chat.agent from @trigger.dev/sdk/ai: the per-turn run loop, why you MUST take streamText from the run argument rather than importing it from ai, returning a StreamTextResult vs calling chat.pipe(), the two server actions (chat.createStartSessionAction + auth.createPublicToken), and wiring useChat to useTriggerChatTransport. Load this when building, modifying, or debugging a chat backend (the agent task or its lifecycle hooks) or its React transport, when declaring typed tools or custom data parts, or when migrating a plain AI SDK streamText route to chat.agent.4---5
6# Authoring a chat.agent
7
8The full, version-pinned reference ships **inside your installed `@trigger.dev/sdk`**. Read it before writing code — it always matches the SDK version in this project, so it never drifts:
9
10- **Skill:** `node_modules/@trigger.dev/sdk/skills/trigger-authoring-chat-agent/SKILL.md` — the per-turn run loop, the managed `streamText`, the two server actions, typed tools/data parts, and the React transport.
11- **Docs:** the full, version-pinned docs ship bundled at `node_modules/@trigger.dev/sdk/docs/ai-chat/`; the skill above lists the exact pages it draws from in its `sources:` frontmatter. Grep for an API, e.g. `grep -rl "toStreamTextOptions" node_modules/@trigger.dev/sdk/docs/`.
12
13If those paths don't exist, `@trigger.dev/sdk` isn't installed yet — install it first. In a non-hoisted layout, resolve the package with `node -p "require.resolve('@trigger.dev/sdk/package.json')"` and read `skills/` + `docs/` beside it.
14
15## Common mistakes
16
17- **CRITICAL: calling the `streamText` imported from `ai`.**
18 ```ts
19 // Wrong - compaction / steering / background injection silently no-op
20 import { streamText } from "ai";
21 run: async ({ messages, signal }) => streamText({ model, messages, abortSignal: signal });
22 // Correct - the run argument's streamText carries the managed options
23 run: async ({ messages, signal, streamText }) => streamText({ model, messages, abortSignal: signal });
24 ```
25 The SDK's one carries the `prepareStep` behind compaction, mid-turn steering and background
26 injection, the system prompt from `chat.prompt()` or `chat.agent({ system })`, the registry-resolved
27 model, and telemetry. The imported one carries none of it, with no error.
28 `...chat.toStreamTextOptions()` does the same job by hand, and is what a custom agent has to use,
29 since it has no `run` argument. A `chat.headStart` route gets a bound `streamText` too, and there it
30 also owns `messages`, `stopWhen` and `abortSignal`.
31
32- **Declaring tools only on `streamText`.** Also declare them on `chat.agent({ tools })`, read them
33 back from `run`, and pass that set as `tools`. Otherwise each tool's
34 `toModelOutput` runs on turn 1 but is dropped when history is re-converted on later turns.
35
36- **Not forwarding `signal` for stop.** Without `abortSignal: signal`, Stop updates the UI but the
37 model keeps generating server-side.
38
39- **Initializing `chat.local` in `onChatStart`.** Initialize it in `onBoot`. `onChatStart` fires
40 once per chat, so continuation runs skip it and crash with
41 `chat.local can only be modified after initialization`. `onBoot` fires on every fresh worker.
42
43- **Minting tokens in the browser.** Never expose the environment secret key client-side. Mint via
44 the two server actions; the transport calls them.
45
46- **Clearing `lastEventId` on `chat.endRun()`.** Keep the cursor for the Session lifetime; clear it
47 only when the Session itself closes. It is sessionId-keyed, so clearing forces a resubscribe from
48 `seq_num=0` that can hit the prior turn's stale `turn-complete` and close the stream empty.
49
50- **Returning the raw error from `uiMessageStreamOptions.onError`.** It leaks internals (keys,
51 stack traces). Return a sanitized string instead.
52
53## References
54
55Sibling skills: **trigger-chat-agent-advanced** (Sessions primitive, custom transports, sub-agents, HITL, fast starts, resilience, testing, upgrades), **trigger-authoring-tasks** and **trigger-realtime-and-frontend** (the task + frontend foundations chat builds on).