get_user_directive_notes
Retrieve user directive notes from a database with optional filters for note type, reference, and severity. Apply AND logic to narrow results, or get all notes when no filters are used.
Instructions
Get notes from user_directives.db with optional filters. All filters are AND logic. No filters returns all notes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note_type | No | Filter by note_type | |
| reference_type | No | Filter by reference_type | |
| reference_name | No | Filter by reference_name | |
| reference_id | No | Filter by reference_id | |
| severity | No | Filter by severity | |
| limit | No | Maximum number of notes to return (default 100) | |
| exclude_note_types | No | List of note_type values to exclude from results (e.g., ['completed', 'obsolete']) |