get-template-context
Load document templates to optimize context for AI-driven software development, ensuring structured workflows in requirements, design, and task creation. Specify project path and category for targeted template retrieval.
Instructions
Load document templates for context optimization
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Template category to load | all |
| projectPath | Yes | Absolute path to the project root |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"default": "all",
"description": "Template category to load",
"enum": [
"spec",
"bug",
"steering",
"all"
],
"type": "string"
},
"projectPath": {
"description": "Absolute path to the project root",
"type": "string"
}
},
"required": [
"projectPath"
],
"type": "object"
}