create_research_template
Generate structured research template files to document findings, supporting organized analysis and decision records in codebases.
Instructions
Create a research template file for documenting findings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Research category | general |
researchPath | No | Path to research directory | docs/research |
title | Yes | Title of the research |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"default": "general",
"description": "Research category",
"type": "string"
},
"researchPath": {
"default": "docs/research",
"description": "Path to research directory",
"type": "string"
},
"title": {
"description": "Title of the research",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}