update_session_summary
Append current session information to the session summary file to maintain ongoing context without performing a full session closure.
Instructions
Update the session summary file with current session info without doing a full session close.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| summary | Yes | Session summary text to append to session-summary.md |
Input Schema (JSON Schema)
{
"properties": {
"summary": {
"description": "Session summary text to append to session-summary.md",
"type": "string"
}
},
"required": [
"summary"
],
"type": "object"
}