muse_session_history
Save, retrieve, search, and manage past coding sessions with their code contexts and design decisions for documentation and reference.
Instructions
Manages vibe coding session history. Save, retrieve, search, and manage past coding sessions with their code contexts and design decisions.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action to perform: save (create new), get (retrieve by ID), update (modify existing), delete (remove), list (get all), search (find by keyword), stats (storage statistics) | |
| sessionId | No | Session ID (required for get, update, delete actions) | |
| title | No | Session title (required for save, optional for update) | |
| summary | No | Session summary (required for save, optional for update) | |
| tags | No | Tags for categorization | |
| codeContexts | No | Array of code context objects | |
| designDecisions | No | Array of design decision objects | |
| metadata | No | Additional metadata | |
| limit | No | Maximum results to return (for list/search, default: 50) | |
| offset | No | Number of results to skip (for list, default: 0) | |
| filterTags | No | Filter by tags (for list) | |
| sortBy | No | Sort field (for list, default: updatedAt) | |
| sortOrder | No | Sort order (for list, default: desc) | |
| keyword | No | Search keyword (required for search action) | |
| searchIn | No | Fields to search in (for search, default: all) |