get_related_docs
Identify related documentation files by analyzing metadata from a specified project path and document file to enhance knowledge retrieval and organization.
Instructions
Find related documentation files based on metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
docFile | Yes | Name of the documentation file | |
projectPath | Yes | Path to the project root directory |
Input Schema (JSON Schema)
{
"properties": {
"docFile": {
"description": "Name of the documentation file",
"type": "string"
},
"projectPath": {
"description": "Path to the project root directory",
"type": "string"
}
},
"required": [
"projectPath",
"docFile"
],
"type": "object"
}