# One-shot invocation
reminix agent invoke support-bot --prompt "How do I reset my password?"
# Stream the response token by token
reminix agent invoke support-bot --prompt "Summarize this report" --stream
# Multi-turn chat
reminix agent chat support-bot --message "Hello"
# With conversation history
reminix agent chat support-bot \
--message "What about pricing?" \
--history '[{"role": "user", "content": "Hello"}, {"role": "assistant", "content": "Hi! How can I help?"}]'
# Structured input
reminix agent invoke analyzer --input '{"data": [1, 2, 3]}' --stream