read_doc
Access and read documentation files from a project directory to enable updates. Input project path and file name to retrieve the required document for modification or review.
Instructions
Read a documentation file (required before updating)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
docFile | Yes | Name of the documentation file to read | |
projectPath | Yes | Path to the project root directory |
Input Schema (JSON Schema)
{
"properties": {
"docFile": {
"description": "Name of the documentation file to read",
"type": "string"
},
"projectPath": {
"description": "Path to the project root directory",
"type": "string"
}
},
"required": [
"projectPath",
"docFile"
],
"type": "object"
}