search_file_changes
Find file changes in conversation history by filtering on file path, query, project, operation type, or date range. Retrieve specific modifications from past sessions.
Instructions
Find file modifications in conversation history.
Use this when user asks:
- "What did we change in auth.dart?"
- "Show me recent edits to the config files"
- "What files did we create?"
Args:
file_path: Filter by file path (supports partial match)
query: Semantic query about changes
project_filter: Limit to specific project
operation_filter: Filter by "edit" or "write"
date_from: Inclusive lower timestamp bound. Accepts ISO-8601 datetime
or date-only values such as 2026-06-13.
date_to: Inclusive upper timestamp bound. Accepts ISO-8601 datetime
or date-only values such as 2026-06-15.
limit: Maximum results (default 10, min 1, max 50)
Returns:
Dict with file change results
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| date_to | No | ||
| date_from | No | ||
| file_path | No | ||
| project_filter | No | ||
| operation_filter | No |