read_skill_document
Retrieve specific documents, scripts, and resources from Claude skills to access Python scripts, reference materials, example data files, and images using pattern matching.
Instructions
Retrieve specific documents (scripts, references, assets) from a skill. Use this after searching for skills to access additional resources like Python scripts, example data files, reference materials, or images. Supports pattern matching to retrieve multiple files at once (e.g., 'scripts/*.py' for all Python scripts).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
document_path | No | Path or pattern to match documents. Examples: 'scripts/example.py', 'scripts/*.py', 'references/*', 'assets/diagram.png'. If not provided, returns a list of all available documents. | |
include_base64 | No | For images: if True, return base64-encoded content; if False, return only URL. Default: False (URL only for efficiency) | |
skill_name | Yes | Name of the skill (as returned by search_skills) |
Input Schema (JSON Schema)
{
"properties": {
"document_path": {
"description": "Path or pattern to match documents. Examples: 'scripts/example.py', 'scripts/*.py', 'references/*', 'assets/diagram.png'. If not provided, returns a list of all available documents.",
"type": "string"
},
"include_base64": {
"default": false,
"description": "For images: if True, return base64-encoded content; if False, return only URL. Default: False (URL only for efficiency)",
"type": "boolean"
},
"skill_name": {
"description": "Name of the skill (as returned by search_skills)",
"type": "string"
}
},
"required": [
"skill_name"
],
"type": "object"
}