trigger-tasks

Warn

Audited by Runlayer on Feb 21, 2026

Risk Level: MEDIUM
Scan Summary
Max Score
78%
Files
4
Flagged
4
Chunks
6
Flagged Files (4)
SKILL.mdHIGH
78.3%

Malicious tool definition detected

Tool: SKILL.md [1/2] Description: --- name: trigger-tasks description: Build AI agents, workflows and durable background tasks with Trigger.dev.

Tool: SKILL.md [2/2] Description: micro | 0.25 | 0.25 GB | | small-1x | 0.5 | 0.5 GB (default) | | small-2x | 1 | 1 GB | | medium-1x | 1 | 2 GB | | medium-2x | 2 | 4 GB | | large-1x | 4 | 8 GB | | large-2x | 8 | 16 GB | ## Best Practices 1.

references/advanced-tasks.mdHIGH
78.3%

Malicious tool definition detected

Tool: references/advanced-tasks.md [1/2] Description: # Trigger.dev Advanced Tasks (v4) **Advanced patterns and features for writing tasks** ## Tags & Organization ```ts import { task, tags } from "@trigger.dev/sdk"; export const processUser = task({ id: "process-user", run: async (payload: { userId: string; orgId: string }, { ctx }) => { // Add tags during execution await tags.add(`user_${payload.userId}`); await tags.add(`org_${payload.orgId}`); return { processed: true }; }, }); // Trigger wi

Tool: references/advanced-tasks.md [2/2]

references/basic-tasks.mdHIGH
78.3%

Malicious tool definition detected

Tool: references/basic-tasks.md Description: # Trigger.dev Basic Tasks (v4) **MUST use `@trigger.dev/sdk`, NEVER `client.defineJob`** ## Basic Task ```ts import { task } from "@trigger.dev/sdk"; export const processData = task({ id: "process-data", retry: { maxAttempts: 10, factor: 1.8, minTimeoutInMs: 500, maxTimeoutInMs: 30_000, randomize: false, }, run: async (payload: { userId: string; data: any[] }) => { // Task logic - runs for long time, no timeouts console.log(`Processing ${payload.data.

references/scheduled-tasks.mdHIGH
78.3%

Malicious tool definition detected

Tool: references/scheduled-tasks.md Description: # Scheduled Tasks (Cron) Recurring tasks using cron.

Audit Metadata
Max File Score
78%
Classification
UNKNOWN_SERVER
Files Scanned
4
Files Flagged
4
Chunks Analyzed
6
Analyzed
Feb 21, 2026, 09:24 AM
Security Audit — runlayer — trigger-tasks