dependency_docs_getter
Extract complete documentation and public API for a specified dependency in a local project. Input the dependency name and project path to generate precise, version-specific reference materials.
Instructions
Extract all the documentation and public API for a dependency of a local project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dependant_path | Yes | The absolute path to the dependant project | |
name | Yes | The name of the dependency for which to extract documentation |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"dependant_path": {
"description": "The absolute path to the dependant project",
"type": "string"
},
"name": {
"description": "The name of the dependency for which to extract documentation",
"type": "string"
}
},
"required": [
"name",
"dependant_path"
],
"type": "object"
}