Prerequisites:
- This feature is available with the Paradime DinoAI plan.
- Your API keys must have DinoAI Agent capabilities.
- Programmable agents are defined as YAML files under
.dinoai/agents/<name>.ymlin your workspace repository.
Talk to a DinoAI Agent
Using the Paradime CLI, you can talk to a DinoAI programmable agent directly from your terminal. Theparadime dinoai command supports two modes:
- Interactive — drop into a chat-style REPL and have a multi-turn conversation with the agent.
- One-shot — pass
--message(or pipe a message viastdin), wait for the response, and exit.
CLI command
Options
Session lifetime: A DinoAI session pod stays alive for 24 hours after its last activity. Use
--session <id> to rejoin within that window — the agent retains full conversation context.Examples
- Start an interactive chat
- One-shot: send a message and exit
- One-shot: pipe a message via stdin
- Resume an existing session
- Resume and send a follow-up (one-shot)
Open an interactive prompt against a named agent. Each turn is sent to the agent and the streamed response is rendered in your terminal. Press Ctrl-C or submit an empty line to exit.