trigger-authoring-chat-agent

โดย triggerdotdev

เขียนและรันเอเจนต์แชท AI ที่ทนทานด้วย chat.agent จาก @trigger.dev/sdk/ai: ลูปการทำงานต่อเทิร์น, เหตุผลที่คุณต้อง spread ...chat.toStreamTextOptions()…

npx skills add https://github.com/triggerdotdev/trigger.dev --skill trigger-authoring-chat-agent

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, chat.toStreamTextOptions(), 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: forgetting ...chat.toStreamTextOptions().

    // Wrong - compaction / steering / background injection silently no-op
    return streamText({ model, messages, abortSignal: signal });
    // Correct - spread FIRST so explicit overrides win
    return streamText({ ...chat.toStreamTextOptions(), model, messages, abortSignal: signal });
    

    It wires the prepareStep callback behind compaction, mid-turn steering, and background injection, injects the system prompt from chat.prompt(), resolves the registry model, and adds telemetry. Omitting it makes all of those silently no-op with no error.

  • Declaring tools only on streamText. Also declare them on chat.agent({ tools }), read them back from run, and pass chat.toStreamTextOptions({ 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).

Skills เพิ่มเติมจาก triggerdotdev

trigger-dev-tasks
triggerdotdev
ใช้ทักษะนี้เมื่อเขียน ออกแบบ หรือปรับปรุงงานเบื้องหลังและเวิร์กโฟลว์ของ Trigger.dev ซึ่งรวมถึงการสร้างงานแบบอะซิงโครนัสที่เชื่อถือได้ การนำ AI ไปใช้...
official
trigger-agents
triggerdotdev
รูปแบบ AI agent กับ Trigger.dev - การจัดระเบียบ, การประมวลผลแบบขนาน, การกำหนดเส้นทาง, evaluator-optimizer, และ human-in-the-loop ใช้เมื่อสร้างงานที่ขับเคลื่อนด้วย LLM...
official
trigger-config
triggerdotdev
กำหนดค่าโปรเจกต์ Trigger.dev ด้วย trigger.config.ts ใช้เมื่อตั้งค่าส่วนขยายการ build สำหรับ Prisma, Playwright, FFmpeg, Python หรือปรับแต่งการ deploy…
official
trigger-cost-savings
triggerdotdev
วิเคราะห์งาน ตารางเวลา และการทำงานของ Trigger.dev เพื่อหาโอกาสในการปรับลดต้นทุน ใช้เมื่อถูกขอให้ลดค่าใช้จ่าย ปรับต้นทุนให้เหมาะสม ตรวจสอบการใช้งาน ปรับขนาดให้เหมาะสม...
official
trigger-realtime
triggerdotdev
สมัครรับข้อมูลการทำงานของทาสก์ใน Trigger.dev แบบเรียลไทม์จากฟรอนต์เอนด์และแบ็กเอนด์ ใช้เมื่อสร้างตัวบ่งชี้ความคืบหน้า แดชบอร์ดสด การสตรีมการตอบสนองของ AI/LLM …
official
trigger-setup
triggerdotdev
ตั้งค่า Trigger.dev ในโปรเจกต์ของคุณ ใช้เมื่อเพิ่ม Trigger.dev เป็นครั้งแรก สร้าง trigger.config.ts หรือเริ่มต้นไดเรกทอรี trigger
official
trigger-tasks
triggerdotdev
สร้าง AI agent, workflow และงานพื้นหลังที่คงทนด้วย Trigger.dev ใช้เมื่อสร้างงาน, เรียกใช้งาน, จัดการการลองใหม่, กำหนดเวลางาน cron หรือ...
official
trigger-tasks
triggerdotdev
ครอบคลุมการเขียนงาน backend ของ Trigger.dev ด้วย @trigger.dev/sdk: การกำหนด task() และ schemaTask(), ฟังก์ชัน run และ ctx ของมัน, retries, waits, queues และ...
official