Docs

Quick Start & CLI Guide

Follow these steps to install FemtoClaw, configure your brain and run your first deterministic agent on any platform【93068253089653†L299-L315】.

Installation

Install FemtoClaw

Use the one‑line installer to download and install the latest FemtoClaw binary. This script fetches the correct build for your platform and sets up your environment.

curl -sSL https://femtoclaw.ai/install.sh | sh
          
Quick Start

Run Your First Agent

After installing the CLI, set up a local or remote brain and start the runtime. The following commands initialise the runtime and run your first agent with a local brain provider【93068253089653†L299-L315】.

# Install the CLI via Cargo (optional if using the installer)
cargo install femtoclaw-cli
# Set your inference provider
export FEMTO_BRAIN=ollama
# Start the runtime
femtoclaw run
# Replay durable state if needed
femtoclaw --wal-replay
          
Advanced CLI

CLI Options

FemtoClaw’s CLI provides additional options to customise your deployment. You can specify local or remote brains, enforce policies and configure logging levels【93068253089653†L299-L315】.

femtoclaw run --brain local
femtoclaw run --brain remote --policy Strict
femtoclaw run --log-level debug