Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add ashish7802/awesome-api-skills --skill trigger-devgit clone --depth 1 https://github.com/ashish7802/awesome-api-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/ashish7802/awesome-api-skills/trigger-dev)<a href="https://agentmods.dev/skills/ashish7802/awesome-api-skills/trigger-dev"><img src="https://agentmods.dev/badge/skills/ashish7802/awesome-api-skills/trigger-dev/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/ashish7802/awesome-api-skills/trigger-dev"><img src="https://agentmods.dev/badge/skills/ashish7802/awesome-api-skills/trigger-dev.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00533 |
| Opus 5 | $0.00000 | $0.00267 |
| Sonnet 5 | $0.00000 | $0.00107 |
| Haiku 4.5 | $0.00000 | $0.00053 |
Grade A, and why
trigger-dev scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Trigger.dev v3 API Skill
Overview
Trigger.dev v3 is a full-featured background jobs platform for TypeScript, enabling long-running tasks (hours), AI generation pipelines, chunked batch jobs, and crons without serverless timeout limits.
Installation
npm install @trigger.dev/sdk@latest
Configuration
// trigger.config.ts
import { defineConfig } from '@trigger.dev/sdk/v3';
export default defineConfig({
project: 'proj_myproject123',
runtime: 'node',
maxDuration: 3600, // 1 hour max execution
});
Task Definition (v3)
// src/trigger/video-processor.ts
import { task, logger } from '@trigger.dev/sdk/v3';
export const processVideoTask = task({
id: 'process-video-task',
retry: {
maxAttempts: 3,
},
run: async (payload: { videoUrl: string; quality: '1080p' | '4k' }) => {
logger.info('Starting video encoding', { url: payload.videoUrl });
// Execute long-running processing without timeout constraints
const resultUrl = await encodeVideo(payload.videoUrl, payload.quality);
logger.info('Video encoding completed', { resultUrl });
return { success: true, resultUrl };
},
});
Triggering Tasks from Application Backend
import { tasks } from '@trigger.dev/sdk/v3';
import { processVideoTask } from '@/trigger/video-processor';
// Trigger async job
const handle = await tasks.trigger<typeof processVideoTask>(
'process-video-task',
{
videoUrl: 'https://storage.example.com/raw.mp4',
quality: '1080p',
}
);
console.log('Task run ID:', handle.id);
AI Pitfalls & Anti-Hallucination Guidelines
- v2 vs v3 Architecture: Trigger.dev v3 eliminated HTTP webhook roundtrips and runs direct Node worker processes. Do not use legacy
client.defineJob(). Usetask({ id, run }). - Logging: Use
logger.info()from@trigger.dev/sdk/v3to stream real-time logs to the Trigger.dev dashboard.
Production Verification Checklist
-
trigger.config.tsspecifies active project reference - Deployments sync tasks via
npx trigger.dev@latest deploy - Task payload types validated with TypeScript
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 73 lines · 0 tokens per session scan A 0f9949b45a49
trigger-dev is a skill published in the GitHub repository ashish7802/awesome-api-skills (13 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 533 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-10.
Other skills, from other repositories
composio
Build AI agents and apps with Composio - access 200+ external tools with Tool Router or direct execution.
event-driven-architecture
Kafka, RabbitMQ, SQS/SNS, event sourcing, CQRS, saga patterns, dead letter queues, and idempotency. Use when designing asynchronous systems, implementing message-driven workflows, or building event streaming pipelines.
edge-computing
Edge computing with Cloudflare Workers, Deno Deploy, Bun, Vercel Edge Functions, AWS Lambda@Edge, and edge databases (Turso, D1, DynamoDB Global Tables). Use when building low-latency edge applications, edge-side rendering, or globally distributed compute.
API Designer
Skill "API Designer" from databayt/hogwarts, covering api design skill, server action pattern and checklist.
analyzing-api-gateway-access-logs
Parses API Gateway access logs (AWS API Gateway, Kong, Nginx) to detect BOLA/IDOR attacks, rate limit bypass, credential scanning, and injection attempts. Uses pandas for statistical analysis of request patterns and anomaly detection. Use when investigating API abuse or building API-specific threat detection rules.
mobile-backend-infra
Baseline infrastructure for a mobile backend -- edge caching, feature flags, and multi-region strategy. Use when planning or auditing the deployment shape of a mobile backend.