init-memory-bank
Set up a memory-bank directory and generate core files for structured project context tracking. Integrates existing project briefs and provides guidance for next steps. Uses a root directory path to initialize or overwrite files as needed.
Instructions
Initialize memory-bank directory and core files. This tool will:
Create memory-bank directory
Generate initial templates for 5 core files
Read and integrate projectBrief.md if it exists
Provide next steps guidance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force | No | Force re-initialization (will overwrite existing files) | |
rootPath | Yes | Project root directory path Windows example: "C:/Users/name/project" macOS/Linux example: "/home/name/project" |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"force": {
"description": "Force re-initialization (will overwrite existing files)",
"type": "boolean"
},
"rootPath": {
"description": "Project root directory path\n Windows example: \"C:/Users/name/project\" \n macOS/Linux example: \"/home/name/project\"",
"type": "string"
}
},
"required": [
"rootPath"
],
"type": "object"
}