read_file
Read complete file contents from the file system to examine text before editing. Handles various text encodings and returns full file content using file path input.
Instructions
Read the complete contents of a file from the file system. Handles various text encodings and returns the full file content. Use this to examine file contents before editing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The path to the file to read (absolute or relative) |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The path to the file to read (absolute or relative)",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}