find_file_context
Search Claude Historian to locate conversations referencing a specific filepath, enabling users to track file changes, revisit past solutions, and extract relevant context quickly.
Instructions
Find conversations related to a specific file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes | File path to search for in conversation history | |
limit | No | Maximum number of results (default: 20) |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"description": "File path to search for in conversation history",
"type": "string"
},
"limit": {
"default": 20,
"description": "Maximum number of results (default: 20)",
"type": "number"
}
},
"required": [
"filepath"
],
"type": "object"
}