recall_file
Retrieve the complete edit history of any file, with per-edit user-intent context. Understand why a file was modified historically by querying session_file_edits instead of summary memories.
Instructions
Get the COMPLETE edit history of a file across all sessions, with per-edit user-intent context. Returns: total edit count, daily breakdown, list of distinct user intents that drove the edits, and the linked memories. Use this when you need to understand WHY a file was modified historically — far more accurate than recall() for file-centric questions because it queries session_file_edits (every physical edit) instead of summary memories.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path_substring | Yes | Substring to match against file_path (e.g. "search-services.ts" or full absolute path) | |
| max_intents | No | Max distinct user-intent snippets to return. Default 10. |