read
Read and analyze multiple files with intelligent context management, relationship detection, and fuzzy matching verification for pre-flight edit validation.
Instructions
๐ Intelligent file operations - Smart context management with automatic chunking. Multi-file reading with relationship detection. Project structure analysis. Enhanced with fuzzy matching verification for pre-flight edit validation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysis_type | No | content | |
file_paths | Yes | Array of file paths to read | |
fuzzy_threshold | No | Similarity threshold for fuzzy matching (0.1-1.0, higher = more strict) | |
max_files | No | ||
verification_mode | No | Verification mode: basic (exact match only), fuzzy (includes similarity matching), comprehensive (fuzzy + suggestions) | fuzzy |
verify_texts | No | Optional array of text strings to verify existence in files for pre-flight edit validation |
Input Schema (JSON Schema)
{
"properties": {
"analysis_type": {
"default": "content",
"enum": [
"content",
"structure",
"relationships",
"summary"
],
"type": "string"
},
"file_paths": {
"description": "Array of file paths to read",
"items": {
"type": "string"
},
"type": "array"
},
"fuzzy_threshold": {
"default": 0.8,
"description": "Similarity threshold for fuzzy matching (0.1-1.0, higher = more strict)",
"maximum": 1,
"minimum": 0.1,
"type": "number"
},
"max_files": {
"default": 10,
"type": "number"
},
"verification_mode": {
"default": "fuzzy",
"description": "Verification mode: basic (exact match only), fuzzy (includes similarity matching), comprehensive (fuzzy + suggestions)",
"enum": [
"basic",
"fuzzy",
"comprehensive"
],
"type": "string"
},
"verify_texts": {
"description": "Optional array of text strings to verify existence in files for pre-flight edit validation",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"file_paths"
],
"type": "object"
}