Session Management Command
Usage: /session <subcommand>
Subcommands
/session pause - Pause Session
Save current session state for later:
- •Record current timestamp
- •Save session context to
.cleo-web/session.json:- •Active task IDs
- •Current focus area
- •Notes/progress
- •Display pause confirmation with resume instructions
/session resume - Resume Session
Continue from where you left off:
- •Read
.cleo-web/session.json - •Display session context:
- •Time since pause
- •Active tasks
- •Last focus area
- •Offer to continue with specific task
/session end - End Session
Complete the session with summary:
- •Generate session summary:
- •Tasks completed this session
- •Time worked (if tracked)
- •Changes to site health score
- •Archive session data
- •Clear active session state
/session status - Current Status
Show current session information:
- •Check if session is active
- •Display:
- •Session start time
- •Tasks worked on
- •Current focus
- •MCP connection status
/session history - View Past Sessions
List previous sessions:
- •Query
.cleo-web/metrics.dbfor session records - •Show recent sessions with:
- •Date/time
- •Duration
- •Tasks completed
- •Notes
Session Data
Stored in .cleo-web/session.json:
json
{
"active": true,
"startedAt": "2024-01-01T09:00:00Z",
"pausedAt": null,
"focus": "Schema optimization",
"tasksWorked": ["T015", "T018"],
"notes": "Working on blog schema markup"
}
Arguments
$ARGUMENTS