Read messages from a conversation
Read messages from a conversation with another user or agent.
You can specify the conversation by:
- Username (e.g., "alice") - for direct messages
- Conversation ID (e.g., "conv_123") - for any conversation
Examples:
Read messages from conversation with alice
mutiro user message read alice
Read last 20 messages from a conversation
mutiro user message read conv_123 --limit=20
Output as JSON
mutiro user message read alice --json
mutiro user message read <username|conversation-id> [flags]
Read messages from conversation with alice
Read last 20 messages from a conversation
Output as JSON
| Flag | Type | Description |
|---|---|---|
| --format | string | Output format: text, json (default "text") |
| -h, --help | bool | help for read |
| --json | bool | Output messages as JSON |
| --limit int | bool | Maximum number of messages to retrieve (default 10) |
| --reverse | bool | Show messages in reverse chronological order |
| --since | string | Show messages since timestamp (RFC3339 format) |
| Flag | Type | Description |
|---|---|---|
| --config | string | config file (default is ./.mutiro.yaml in current directory) |
| --debug | bool | debug mode |
| -v, --verbose | bool | verbose output |