Audit Intent Spec
audit_intent_specAudits intent specifications against a validation checklist and anti-patterns to prevent agent failures. Accepts raw text or file input with pagination support.
Instructions
Audit an intent spec against the 25-item validation checklist and the 5 fatal anti-patterns from the intent-engineering skill. Provide either spec_text (raw spec) OR file_path (absolute path to a markdown or YAML file). For long inputs, use start_index + max_length to paginate; the response includes next_chunk_token when more content remains.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | No | Absolute path to a markdown or YAML intent spec file. Provide this OR spec_text, not both. | |
| spec_text | No | The raw intent spec text. Provide this OR file_path, not both. | |
| max_length | No | Max characters of input to process this call. Default 10000. | |
| start_index | No | Zero-based character offset for paginated input. Default 0. |