initialize_memory_bank
Set up a memory bank directory and initialize standard markdown templates to store project context for AI assistants, ensuring persistent information across sessions.
Instructions
Creates the memory-bank directory and standard .md files with initial templates.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_brief_content | No | (Optional) Content from projectBrief.md to pre-fill productContext.md |
Input Schema (JSON Schema)
{
"properties": {
"project_brief_content": {
"description": "(Optional) Content from projectBrief.md to pre-fill productContext.md",
"type": "string"
}
},
"required": [],
"type": "object"
}