> ## Documentation Index
> Fetch the complete documentation index at: https://docs.guild.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# guild session

> List and inspect sessions, their events, and their tasks.

Inspect sessions in a workspace.

```bash theme={null}
guild session list                           # List sessions in the default workspace
guild session list --workspace <id>          # Specify a workspace
guild session list --type chat               # Filter by type: chat, webhook, time, agent_test
guild session get <session-id>               # Get session details
guild session events <session-id>            # List events in a session
guild session events <session-id> --events all        # Include system and debug events
guild session events <session-id> --limit 50 --offset 50   # Paginate (default limit: 100)
guild session tasks <session-id>             # List tasks in a session
guild session send <session-id> <message>    # Send a user message to a session
```
