read_memory_bank_file
Extracts and retrieves the complete content of a specified memory bank file to maintain persistent project context for AI assistants, ensuring information continuity across sessions.
Instructions
Reads the full content of a specified memory bank file.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_name | Yes | The name of the memory bank file (e.g., 'productContext.md') |
Input Schema (JSON Schema)
{
"properties": {
"file_name": {
"description": "The name of the memory bank file (e.g., 'productContext.md')",
"type": "string"
}
},
"required": [
"file_name"
],
"type": "object"
}