Skip to content

Latest commit

 

History

History
79 lines (60 loc) · 3.72 KB

File metadata and controls

79 lines (60 loc) · 3.72 KB
title Skills
description Install Trigger.dev skills to teach any AI coding assistant best practices for writing tasks, agents, and workflows.

What are agent skills?

Skills are portable instruction sets that teach AI coding assistants how to use Trigger.dev effectively. Unlike vendor-specific config files (.cursor/rules, CLAUDE.md), skills use an open standard that works across all major AI assistants. For example, Cursor users and Claude Code users can get the same knowledge from a single install.

Skills install as SKILL.md files that AI assistants automatically discover and follow. Each skill contains YAML frontmatter (name, description) and markdown instructions with patterns, examples, and best practices.

Installation

When you run npx skills add triggerdotdev/skills, the CLI detects your installed AI tools and copies the appropriate files to each tool's expected location. For example, .claude/skills/, .cursor/skills/, .github/skills/, etc.

npx skills add triggerdotdev/skills

skills is an open-source CLI by Vercel. Learn more at skills.sh.

The result: your AI assistant understands Trigger.dev's specific patterns for exports, schema validation, error handling, retries, and more.

Supported AI assistants

Skills work with any AI coding assistant that supports the Agent Skills standard, including:

Available skills

Install all skills at once, or pick the ones relevant to your current work:

# Install all Trigger.dev skills
npx skills add triggerdotdev/skills

# Or install individual skills
npx skills add triggerdotdev/skills --skill trigger-tasks
npx skills add triggerdotdev/skills --skill trigger-agents
npx skills add triggerdotdev/skills --skill trigger-config
npx skills add triggerdotdev/skills --skill trigger-realtime
npx skills add triggerdotdev/skills --skill trigger-setup
Skill Use for Covers
trigger-setup First time setup, new projects SDK install, npx trigger init, project structure
trigger-tasks Writing background tasks, async workflows, scheduled tasks Triggering, waits, queues, retries, cron, metadata
trigger-agents LLM workflows, orchestration, multi-step AI agents Prompt chaining, routing, parallelization, human-in-the-loop
trigger-realtime Live updates, progress indicators, streaming React hooks, progress bars, streaming AI responses
trigger-config Project setup, build configuration trigger.config.ts, extensions (Prisma, FFmpeg, Playwright)

Not sure which skill to install? Install trigger-tasks; it covers the most common patterns for writing Trigger.dev tasks.

Next steps

Give your AI assistant direct access to Trigger.dev tools and APIs. Learn the task patterns that skills teach your AI assistant. Build durable AI workflows with prompt chaining and human-in-the-loop. Browse the full Agent Skills ecosystem.