save_session
Save key-value entries to named sessions for persisting decisions, context, plans, and findings between coding sessions. Keys update in place to maintain operational continuity.
Instructions
Save a key-value entry to a named session. Use to persist decisions, context, plans, and findings between coding sessions. Each session can hold multiple keys (e.g., 'summary', 'active_tasks', 'decisions'). Keys are updated in place if they already exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Entry key within the session (e.g., 'summary', 'active_tasks', 'decisions', 'blockers') | |
| value | Yes | Content to save — can be a summary, list of tasks, decisions, notes, code snippets, etc. | |
| session | Yes | Session name (e.g., 'admin-crowlr-upgrade', 'compr-app-v2'). Will be created if it doesn't exist. |