read_file
Access and retrieve the contents of a specified file by providing its path, enabling integration with architectural decision record analysis workflows.
Instructions
Read contents of a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the file to read |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the file to read",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}