read_file
Extract and display file contents from a repository for code analysis, enabling quick access to data for understanding system architecture and data models.
Instructions
Read and display the contents of a file from the repository.
Args:
file_path: Path to the file relative to repository root
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"title": "File Path",
"type": "string"
}
},
"required": [
"file_path"
],
"title": "read_fileArguments",
"type": "object"
}