mirror of
https://github.com/triggerdotdev/skills.git
synced 2026-09-19 02:35:32 +08:00
namespace-skills-trigger-prefix
Rename all skills to avoid clashes with other skill providers: - setup → trigger-setup - tasks → trigger-tasks - config → trigger-config - agents → trigger-agents - realtime → trigger-realtime Updates folder names, SKILL.md name fields, README, and AGENTS.md.
Trigger.dev agent skills
Agent skills for building AI agents, workflows and durable background tasks with Trigger.dev.
Installation
# Install all skills
npx skills add triggerdotdev/skills
# Or install specific skills
npx skills add triggerdotdev/skills --skill trigger-setup
npx skills add triggerdotdev/skills --skill trigger-tasks
npx skills add triggerdotdev/skills --skill trigger-config
npx skills add triggerdotdev/skills --skill trigger-agents
npx skills add triggerdotdev/skills --skill trigger-realtime
Available Skills
trigger-setup
Use when getting started with Trigger.dev:
- Installing the SDK
- Running
npx trigger init - Creating trigger.config.ts
- Project structure
- First task walkthrough
- Environment variables
trigger-tasks
Use when creating background jobs, async workflows, or scheduled tasks. Core patterns for building durable tasks:
- Basic and schema-validated tasks
- Triggering tasks (single, batch, with wait)
- Waits and checkpointing
- Concurrency and queues
- Debouncing and idempotency
- Error handling and retries
- Scheduled tasks (cron)
- Metadata and progress tracking
trigger-config
Use when setting up trigger.config.ts or adding build extensions:
- Build extensions (Prisma, Playwright, FFmpeg, Python)
- System packages and additional files
- Environment variable sync
- Telemetry integration
- Global lifecycle hooks
trigger-agents
Use when building LLM-powered workflows, orchestration, or multi-step AI agents:
- Prompt chaining with validation gates
- Routing (classify → dispatch)
- Parallelization with batch operations
- Orchestrator-workers (fan-out/fan-in)
- Evaluator-optimizer loops
- Human-in-the-loop with waitpoints
trigger-realtime
Use when subscribing to task runs in real-time from frontend or backend:
- Progress indicators and live dashboards
- React hooks for triggering and monitoring tasks
- Streaming AI/LLM responses to UI
- Wait tokens for human-in-the-loop workflows
What is Trigger.dev?
Trigger.dev is a durable execution platform for AI agents, workflows and background tasks. Long-running TypeScript functions with automatic retries, queuing, and real-time observability.
Key features:
- Durable execution — Tasks survive restarts and scale automatically
- Automatic retries — Exponential backoff with configurable retry policies
- Concurrency control — Queues and rate limiting built-in
- Long waits — Tasks can wait for up to a year
- Real-time — Subscribe to task progress from anywhere
- Multi-environment — Dev, staging, and production from one dashboard
- No infrastructure to manage — our cloud product is fully managed
- Open-source — The platform can also be self-hosted on your own infrastructure
Resources
Description
trigger-tasks: Covers writing backend Trigger.dev tasks with @trigger.dev/sdk: defining task() and schemaTask(), the run function and its ctx, retries, waits, queues and…; trigger-setup: Bootstrap Trigger.dev into an existing project from scratch: authenticate the CLI, install @trigger.dev/sdk and @trigger.dev/build, write trigger.config.ts…; trigger-realtime: Trigger.dev client/frontend surface: subscribe to runs in realtime (runs.subscribeToRun and the @trigger.dev/react-hooks hook useRealtim…
Languages
JavaScript
100%
