Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Documentation
Learn how to integrate Agntor into your agents
Input validation and policy rules
import { guard } from '@agntor/sdk'; const policy = { injectionPatterns: [/ignore previous instructions/i, /reveal system prompt/i], cweMap: { 'prompt-injection': 'CWE-20' }, }; const result = await guard(input, policy);