Skip to content

The CLIver CLI supports two modes: one-shot queries and interactive chat. Both go through the same AgentCore engine.

Pass a prompt directly:

Terminal window
cliver "What time is it in Tokyo?"
cliver -p "Summarize README.md" -f README.md

Start a conversation session:

Terminal window
cliver

In interactive mode, you get:

  • Multi-turn conversation with context maintained across turns
  • Rich TUI with syntax highlighting, markdown rendering, and progress indicators
  • Thinking indicator while the LLM processes
  • Permission prompts for tool confirmations

Inside interactive mode, use / commands to control the session:

CommandAction
/helpShow available commands
/modelSwitch models mid-session
/memoryView or add persistent memory
/clearClear conversation context
/costShow token usage and cost
/exitEnd the session

CLIver reads from stdin when data is piped:

Terminal window
cat error.log | cliver "What's causing these errors?"
git diff | cliver "Write a commit message for these changes"
Terminal window
# Use a specific model
cliver -m deepseek-reasoner "Explain this algorithm"
# Set default model
cliver model default minimax-2.7