prioritize_memory
Identify and rank key memories, tasks, and decisions to focus on what matters most. Automatically triggered for prioritization needs.
Instructions
IMPORTANT: This tool should be automatically called when users say "중요한 거", "우선순위", "prioritize", "important ones", "what matters", "priority" or similar keywords. Prioritize memories by importance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blockers | No | Current blockers or issues | |
codeChanges | No | Important code changes | |
criticalDecisions | No | List of critical decisions made | |
currentTask | Yes | Current task description | |
nextSteps | No | Planned next steps |
Input Schema (JSON Schema)
{
"properties": {
"blockers": {
"description": "Current blockers or issues",
"items": {
"type": "string"
},
"type": "array"
},
"codeChanges": {
"description": "Important code changes",
"items": {
"type": "string"
},
"type": "array"
},
"criticalDecisions": {
"description": "List of critical decisions made",
"items": {
"type": "string"
},
"type": "array"
},
"currentTask": {
"description": "Current task description",
"type": "string"
},
"nextSteps": {
"description": "Planned next steps",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"currentTask"
],
"type": "object"
}