trigger-authoring-tasks

Cobre a escrita de tarefas backend do Trigger.dev com @trigger.dev/sdk: definindo task() e schemaTask(), a função run e seu ctx, retentativas, esperas, filas e…

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

Authoring Trigger.dev Tasks

The full, version-pinned reference for authoring tasks 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-tasks/SKILL.md — the complete guide (setup, schemaTask, retries, triggering + the Result shape, idempotency, waits, metadata, scheduled tasks, queues/concurrency, trigger.config.ts).
  • Docs: the full, version-pinned docs ship bundled at node_modules/@trigger.dev/sdk/docs/; the skill above lists the exact pages it draws from in its sources: frontmatter. Grep for an API, e.g. grep -rl "schemaTask" 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.

Always import from @trigger.dev/sdk — never @trigger.dev/sdk/v3 (deprecated alias) or @trigger.dev/core.

Common mistakes

  1. CRITICAL: Treating the wait result as the output. triggerAndWait and wait.forToken return a Result object, not the raw output.

    • Wrong: const out = await childTask.triggerAndWait(p); use(out.foo);
    • Correct: const r = await childTask.triggerAndWait(p); if (r.ok) use(r.output.foo); (or .unwrap()).
  2. Wrapping triggerAndWait / batchTriggerAndWait / wait in Promise.all.

    • Wrong: await Promise.all([childTask.triggerAndWait(a), childTask.triggerAndWait(b)]);
    • Correct: await childTask.batchTriggerAndWait([{ payload: a }, { payload: b }]); (or a sequential for-loop).
  3. Importing the task instance into backend code.

    • Wrong: import { emailSequence } from "~/trigger/emails"; in a route handler.
    • Correct: import type { emailSequence } plus tasks.trigger<typeof emailSequence>("email-sequence", payload).
  4. Calling metadata.set/get outside run().

    • Wrong: setting metadata at module scope or in unrelated backend code (a no-op; get returns undefined).
    • Correct: call inside run() or a task lifecycle hook.
  5. Assuming child tasks inherit the parent's queue or metadata.

    • Wrong: expecting a subtask to share the parent's concurrencyLimit or see its metadata.
    • Correct: subtasks run on their own queue; pass metadata explicitly via { metadata: metadata.current() }, or push up with metadata.parent.*.
  6. Bundling native/WASM packages.

    • Wrong: leaving sharp, re2, sqlite3, or WASM packages in the default bundle.
    • Correct: add them to build.external in trigger.config.ts.
  7. Relying on a raw string idempotency key being global.

    • Wrong: trigger(p, { idempotencyKey: "welcome-email" }) expecting once-ever (true only in v4.3.0 and earlier).
    • Correct: await idempotencyKeys.create("welcome-email", { scope: "global" }).

References

Sibling skills: trigger-realtime-and-frontend (subscribe to runs, trigger from the frontend), trigger-authoring-chat-agent and trigger-chat-agent-advanced (AI chat agents).

Mais skills de triggerdotdev

trigger-dev-tasks
triggerdotdev
Use esta habilidade ao escrever, projetar ou otimizar tarefas e fluxos de trabalho em segundo plano do Trigger.dev. Isso inclui criar tarefas assíncronas confiáveis, implementar IA…
official
trigger-authoring-chat-agent
triggerdotdev
Crie e execute um agente de chat de IA durável com chat.agent do @trigger.dev/sdk/ai: o loop de execução por turno, por que você DEVE espalhar ...chat.toStreamTextOptions()…
official
trigger-agents
triggerdotdev
Padrões de agente de IA com Trigger.dev - orquestração, paralelização, roteamento, avaliador-otimizador e humano-no-loop. Use ao construir tarefas baseadas em LLM…
official
trigger-config
triggerdotdev
Configure projetos Trigger.dev com trigger.config.ts. Use ao configurar extensões de build para Prisma, Playwright, FFmpeg, Python ou personalizar implantação…
official
trigger-cost-savings
triggerdotdev
Analise tarefas, cronogramas e execuções do Trigger.dev em busca de oportunidades de otimização de custos. Use quando solicitado a reduzir gastos, otimizar custos, auditar uso, ajustar capacidade…
official
trigger-realtime
triggerdotdev
Inscreva-se nas execuções de tarefas do Trigger.dev em tempo real a partir do frontend e backend. Use ao construir indicadores de progresso, painéis ao vivo, respostas de streaming de IA/LLM,…
official
trigger-setup
triggerdotdev
Configure o Trigger.dev no seu projeto. Use ao adicionar o Trigger.dev pela primeira vez, criar o trigger.config.ts ou inicializar o diretório trigger.
official
trigger-tasks
triggerdotdev
Construa agentes de IA, fluxos de trabalho e tarefas de segundo plano duráveis com Trigger.dev. Use ao criar tarefas, acionar jobs, lidar com novas tentativas, agendar tarefas cron, ou…
official