| title | Session Commands Reference | ||
|---|---|---|---|
| description | Complete reference for all session-related commands — start, end, list, and compact. | ||
| sidebar |
|
Complete reference for all session-related commands.
Start a new working session.
> jumbo session startNone.
- Records a session start event
- Returns a workflow router packet
- Tells the agent which workflow-specific command should load the next context packet
- Preserves brownfield onboarding guidance when the project has no registered solution context
Displays:
- Session ID and status
- A prompt asking whether the user wants to design/define, refine, execute, review, codify, or do something different
- Route commands for each workflow
jumbo project show --northstar --format jsonfor design or definition workflowsjumbo goals list --format jsonfallbacks for goal-id workflows
session start no longer includes project context, goal backlog summaries, or recent decisions. Those are loaded by the selected workflow command.
> jumbo session startEnd the current active session.
> jumbo session end --focus <text> [--summary <text>]| Option | Description |
|---|---|
--focus <text> |
Summary of what was accomplished (required) |
--summary <text> |
Detailed session summary (optional) |
- Validates an active session exists
- Records focus and summary
- Transitions session to
endedstatus
The focus becomes orientation context for the next session.
End session with focus summary:
> jumbo session end --focus "Completed authentication implementation"End session with detailed summary:
> jumbo session end --focus "Bug fixes" --summary "Fixed 3 critical bugs in payment processing"List session history.
> jumbo sessions list [--status <status>]| Option | Description |
|---|---|
-s, --status <status> |
Filter by status: active, paused, ended, or all (default: all) |
Queries the session store and displays matching sessions. Without a status filter, all sessions are returned.
List all sessions:
> jumbo sessions listList only active sessions:
> jumbo sessions list --status activeList ended sessions:
> jumbo sessions list --status endedTrigger context compaction for the current session.
> jumbo session compactNone.
Signals the LLM agent to compact its context window. Use this when the conversation has grown long and the agent is approaching context limits. Compaction preserves essential project and goal context while reducing token usage.
> jumbo session compact