routing_exception_add
Bypass validate_routing_guard for tasks by adding an exception rule with specified type and pattern.
Instructions
Add a routing bypass rule so that matching tasks skip validate_routing_guard.
exception_type must be one of: skill, filetype, project, command, caller, path. pattern supports glob wildcards (e.g. 'tgsd-*', '.md', '/home/user/notes').
Examples: routing_exception_add(exception_type='skill', pattern='auto-time') routing_exception_add(exception_type='skill', pattern='tgsd-*') routing_exception_add(exception_type='filetype', pattern='.md') routing_exception_add(exception_type='project', pattern='/home/me/notes') routing_exception_add(exception_type='command', pattern='Write') routing_exception_add(exception_type='caller', pattern='github-copilot') routing_exception_add(exception_type='path', pattern='/tmp/')
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note | No | Optional human-readable note / reason for this exception | |
| pattern | Yes | Pattern to match (supports * globs, case-insensitive) | |
| exception_type | Yes | One of: skill, filetype, project, command, caller, path |