with one click
cortex-manage
Manage memories - search, view, update, delete, rename projects
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Manage memories - search, view, update, delete, rename projects
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | cortex-manage |
| description | Manage memories - search, view, update, delete, rename projects |
| allowed-tools | mcp__cortex-memory__cortex_recall, mcp__cortex-memory__cortex_update, mcp__cortex-memory__cortex_rename_project, mcp__cortex-memory__cortex_delete, mcp__cortex-memory__cortex_forget_project, AskUserQuestion |
| user-invocable | true |
Help the user manage their Cortex memories.
Use cortex_recall to find specific memories:
Use cortex_update to edit a memory:
cortex_update(memoryId: 123, content: "corrected content")
cortex_update(memoryId: 123, projectId: "new-project")
Use cortex_rename_project to move all memories from one project to another:
cortex_rename_project(oldProjectId: "old-name", newProjectId: "new-name")
Use cortex_delete to remove a memory fragment:
confirm: true to preview what will be deletedconfirm: true to deleteUse cortex_forget_project to delete all memories for a project:
confirm: true to get countconfirm: true to proceedALWAYS follow these rules for destructive actions:
User: "Fix the typo in memory 42"
First recall to see the memory:
cortex_recall(query: "...")
Update with corrected content:
cortex_update(memoryId: 42, content: "corrected content here")
User: "Move memory 42 to project 'cortex'"
cortex_update(memoryId: 42, projectId: "cortex")
User: "I renamed my project folder from 'old-name' to 'new-name'"
cortex_rename_project(oldProjectId: "old-name", newProjectId: "new-name")
User: "Delete the memory about the auth bug fix"
Search for memories about auth bug:
cortex_recall(query: "auth bug fix")
Show results and ask which one to delete
Preview the deletion:
cortex_delete(memoryId: 123)
Show preview to user: "This will delete: 'Fixed auth bug by...' from project X"
Ask: "Are you sure you want to delete this memory?"
If yes:
cortex_delete(memoryId: 123, confirm: true)
User: "Clear all memories for the old-project"
Preview:
cortex_forget_project(projectId: "old-project")
Show: "This will delete 45 memories from old-project"
Ask: "This action cannot be undone. Are you sure?"
If yes:
cortex_forget_project(projectId: "old-project", confirm: true)