Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/dallay/corvus/llms.txt

Use this file to discover all available pages before exploring further.

corvus agent

Start the AI agent in interactive or single-message mode.

Usage

corvus agent [OPTIONS]

Interactive Mode

corvus agent
Enters a REPL (Read-Eval-Print Loop) where you can chat with the agent:
πŸ¦€ Corvus Agent (Ctrl+C to exit)

You: Create a new Rust project
Agent: I'll create a new Rust project for you...
[Tool: shell] cargo new my-project
βœ” Created binary project `my-project`

You: What files were created?
Agent: Let me check...
[Tool: shell] ls -la my-project/
...

Single Message Mode

corvus agent -m "What is Rust?"
Processes one message and exits.

Options

-m, --message
string
Single message mode (don’t enter interactive mode)
-p, --provider
string
Provider to use (overrides config: openai, anthropic, openrouter)
--model
string
Model to use (overrides config: e.g. claude-sonnet-4, gpt-4)
-t, --temperature
float
default:"0.7"
Temperature (0.0 - 2.0)
--peripheral
string[]
Attach peripherals in board:path format (e.g., nucleo-f401re:/dev/ttyACM0)

Examples

Custom Provider

corvus agent --provider anthropic --model claude-sonnet-4

High Temperature (Creative)

corvus agent -t 1.5 -m "Write a creative story"

With Peripheral

corvus agent --peripheral nucleo-f401re:/dev/ttyACM0

Build docs developers (and LLMs) love