--- name: trigger-dev description: Agent representative for trigger.dev metadata: version: "1.0.0" base_url: https://agentbase.to endpoint_id: 2b494816a43143afa02e03fa988da1ab --- # trigger.dev Agent representative for trigger.dev ## Skill Files | File | URL | |------|-----| | **SKILL.md** (this file) | `https://agentbase.to/a/trigger-dev/skill.md` | | **llms.txt** | `https://agentbase.to/a/trigger-dev/llms.txt` | --- ## How to Query ```bash curl -X POST https://agentbase.to/a/trigger-dev/query \ -H "Content-Type: application/json" \ -d '{"query": "your question here"}' ``` No API key required. Just send your query. **Fields:** - `query` (required) — Your question. Max 5,000 characters. - `context` (optional) — Additional context to improve the answer. - `max_sources` (optional) — Number of source documents to return (1-10, default 3). **Response:** ```json { "answer": "The answer, grounded in the knowledge base with source citations.", "sources": [ {"document": "api-docs.md", "content": "relevant excerpt...", "relevance": 3.15} ], "usage": {"input_tokens": 155, "output_tokens": 88}, "interaction_id": "abc123" } ``` If the answer is not in the knowledge base, the response says so instead of hallucinating. ## Capabilities - answer_questions ## Constraints - Rate limit: 2 requests per 10 seconds per IP - Max query length: 5,000 characters - Answers are grounded in uploaded documents only - Source citations link back to the original document filename