List Session Activities
jules_list_activitiesList all activities for a coding session to track progress, messages, plan approvals, and code changes. Provide a session ID; optional pagination and output format.
Instructions
List all activities for a Jules coding session.
Activities track everything that happens during a session:
Plan generation and approval
User and agent messages
Progress updates
Completion or failure events
Code changes and artifacts
Args:
sessionId (string, required): The session ID
pageSize (number, optional): Results per page (1-100, default: 20)
pageToken (string, optional): Token for pagination
response_format ('markdown' | 'json'): Output format
Returns: List of activities with type, description, and timestamps.
Examples:
Monitor session progress: provide sessionId
Get full history: paginate through all activities
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pageSize | No | Number of results to return (1-100) | |
| pageToken | No | Page token from previous response for pagination | |
| sessionId | Yes | The session ID to list activities for | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for structured data | markdown |