CLI Reference

On this page

Base command

ANTHROPIC_API_KEY=<key> uv run make_agent [run] [flags]

Common flags

  • -f FILE - Makefile to load
  • --model MODEL - any-llm model string
  • --prompt PROMPT - send one prompt and exit
  • --prompt-file FILE - read prompt from file
  • --with-memory - enable persistent memory
  • --disable-builtin-tools TOOLS - disable built-in tools (comma-separated names or all)
  • --max-tool-output CHARS - truncate tool output

Model providers

Supported providers include OpenAI, Anthropic, OpenRouter, and Ollama.

You can also run against a llama.cpp-compatible server if exposed through a compatible provider endpoint/model string.

uv run make_agent --agent-model ollama/gpt-oss:120b --model ollama/gpt-oss:120b

Notes

CLI flags always override values in settings.yaml.

Tip: For locked-down specialist runs, use --disable-builtin-tools all or --disable-builtin-tools run_agent,create_agent.