trigger-setup
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: trigger-setup description: Set up Trigger.dev in your project.
Malicious tool definition detected
Tool: references/environment-setup.md Description: # Environment Setup ## Required Variables | Variable | Description | Where to find | |----------|-------------|---------------| | `TRIGGER_SECRET_KEY` | API key for authentication | Dashboard > API Keys | ## Development vs Production Keys ```bash # Development (starts with tr_dev_) TRIGGER_SECRET_KEY=tr_dev_xxxxx # Production (starts with tr_prod_) TRIGGER_SECRET_KEY=tr_prod_xxxxx ``` ## Local Development ### Option 1: .env File ```bash # .env T
Malicious tool definition detected
Tool: references/project-structure.md Description: # Project Structure ## Default Layout ``` your-project/ ├── trigger.config.ts # Required - project configuration ├── trigger/ # Default task directory │ ├── example.ts # Created by `npx trigger init` │ └── ...