read_repository_document
Extract and retrieve specific documents from the DeSo repository using a defined path and repository name, enabling efficient access to essential development resources.
Instructions
Read a specific document from the DeSo repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Relative path to the document (e.g., 'docs/deso-tutorial-build-apps.md') | |
repository | No | Repository name |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Relative path to the document (e.g., 'docs/deso-tutorial-build-apps.md')",
"type": "string"
},
"repository": {
"description": "Repository name",
"enum": [
"docs",
"core",
"identity",
"frontend",
"backend",
"deso-js"
],
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}