write_matrix_entry
Add entries to the Knowledge Matrix for tracking bugs, features, testing results, decisions, documentation updates, and session goals with timestamps.
Instructions
Write or append entry to Knowledge Matrix. Topics: Bugs & Fixes, Features Added, Testing Results, Decisions & Direction, Documentation Updates, Next Session Goals
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Entry content with timestamp (e.g., '3:45pm CST 🐛 Fixed bug in addTask') | |
date | No | Date in YYYY-MM-DD format (defaults to today) | |
topic | Yes | Matrix topic |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Entry content with timestamp (e.g., '3:45pm CST 🐛 Fixed bug in addTask')",
"type": "string"
},
"date": {
"description": "Date in YYYY-MM-DD format (defaults to today)",
"type": "string"
},
"topic": {
"description": "Matrix topic",
"enum": [
"Bugs & Fixes",
"Features Added",
"Testing Results",
"Decisions & Direction",
"Documentation Updates",
"Next Session Goals"
],
"type": "string"
}
},
"required": [
"topic",
"content"
],
"type": "object"
}