restore_session
Recover session state after interruptions like /clear or breaks. Choose restoration depth: last checkpoint, key highlights, or full session replay. Works with COA Goldfish MCP for context-aware AI task recovery.
Instructions
Restore session state after /clear or break. Default shows last checkpoint + highlights. Use depth: "full" for complete session replay when returning after days away.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | Restoration depth: minimal=last checkpoint only, highlights=last+key points, full=entire session | |
sessionId | No | Specific session ID to restore (optional - defaults to latest) | |
workspace | No | Workspace to restore from (optional) |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"description": "Restoration depth: minimal=last checkpoint only, highlights=last+key points, full=entire session",
"enum": [
"minimal",
"highlights",
"full"
],
"type": "string"
},
"sessionId": {
"description": "Specific session ID to restore (optional - defaults to latest)",
"type": "string"
},
"workspace": {
"description": "Workspace to restore from (optional)",
"type": "string"
}
},
"type": "object"
}