read_context
Access and retrieve content from specific project documentation files to understand codebase context and implementation details.
Instructions
Read the content of a specific context file within a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Relative path to the file within the project (e.g., 'backend/gin.md') | |
| project_name | Yes | Name of the project |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"description": "Relative path to the file within the project (e.g., 'backend/gin.md')",
"type": "string"
},
"project_name": {
"description": "Name of the project",
"type": "string"
}
},
"required": [
"project_name",
"file_path"
],
"type": "object"
}