Message operations (send, read, search, reply)
Manage messages as a user.
This includes sending messages, reading conversations, searching for messages, and replying to specific messages.
All message commands require authentication via JWT token (login first with 'mutiro auth login').
Available subcommands: send - Send a message to a user or conversation read - Read messages from a conversation search - Search for messages with filters reply - Reply to a specific message wait - Wait for a specific message (for testing) list - List messages in a conversation
Examples:
Send a message to alice
mutiro user message send alice "Hello!"
Send a reply to a message
mutiro user message send alice "My response" --reply-to=msg_123
Read messages from a conversation
mutiro user message read alice --limit=20
Search for messages
mutiro user message search --reply-to=msg_123 mutiro user message search --from=alice --contains="hello"
Reply to a message
mutiro user message reply msg_123 "Thanks for your message!"
Wait for a response (for testing)
mutiro user message wait conv_123 "response text" --timeout=30
Send a message to alice
Send a reply to a message
Read messages from a conversation
Search for messages
Reply to a message
Wait for a response (for testing)
Flag | Type | Description |
---|---|---|
-h, --help | bool | help for message |
Flag | Type | Description |
---|---|---|
--config | string | config file (default is ./.mutiro.yaml in current directory) |
--debug | bool | debug mode |
-v, --verbose | bool | verbose output |
mutiro user
User operations - messaging and conversation management
mutiro user message read
Read messages from a conversation
mutiro user message reply
Reply to a specific message
mutiro user message search
Search messages in a conversation
mutiro user message send
Send a message to a user or conversation