context_restore_session
Restore previous work context in AI development sessions by generating a restoration prompt based on specified project path, ensuring continuity after token limits.
Instructions
Generate a context restoration prompt for continuing work
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectPath | Yes | Path to project directory |
Input Schema (JSON Schema)
{
"properties": {
"projectPath": {
"description": "Path to project directory",
"type": "string"
}
},
"required": [
"projectPath"
],
"type": "object"
}