
Secure, private AI agent operating system with local encrypted storage, OAuth/SSO authentication, policy-based access control, and extensible tool-building framework for personal and production deployments.
Your secure personal AI assistant, always on your side
English | 简体中文 | Русский | 日本語 | 한국어
Reborn Quick Start • Philosophy • Features • Installation • Configuration • Security • Architecture
IronClaw Reborn is the standalone runtime on the reborn-integration branch.
It uses the separate ironclaw-reborn binary from the
ironclaw_reborn_cli package and a separate Reborn state root. It does not use
the legacy ironclaw state directory as its config root.
For the older ironclaw binary, see Installation and
Legacy IronClaw Usage.
From the repo root:
cargo run -q -p ironclaw_reborn_cli --bin ironclaw-reborn -- --help
Or build it first:
cargo build -p ironclaw_reborn_cli --bin ironclaw-reborn
./target/debug/ironclaw-reborn --help
The default Reborn home is $HOME/.ironclaw/reborn. Override it with an
absolute path when you want isolated state:
export IRONCLAW_REBORN_HOME="$PWD/.reborn-home"
cargo run -q -p ironclaw_reborn_cli --bin ironclaw-reborn -- config path
config path and doctor are safe diagnostics; they report the resolved home,
profile, config.toml, providers.json, and v1_state: not-used.
They do not create Reborn state or seed config files.
The CLI-native way to configure Reborn's default model route is:
export IRONCLAW_REBORN_HOME="$PWD/.reborn-home"
cargo run -q -p ironclaw_reborn_cli --bin ironclaw-reborn -- models set-provider openai --model gpt-5-mini
That writes $IRONCLAW_REBORN_HOME/config.toml with [llm.default] and the
provider's credential env-var name. Check it with:
cargo run -q -p ironclaw_reborn_cli --bin ironclaw-reborn -- models status
cargo run -q -p ironclaw_reborn_cli --bin ironclaw-reborn -- models list openai
For OpenAI, set the secret value in the environment before starting:
export OPENAI_API_KEY="sk-..."
cargo run -q -p ironclaw_reborn_cli --bin ironclaw-reborn -- run --message "hello"
Omit --message or use repl for an interactive stdin session:
cargo run -q -p ironclaw_reborn_cli --bin ironclaw-reborn -- repl
config.toml shapeconfig init creates editable starter files:
cargo run -q -p ironclaw_reborn_cli --bin ironclaw-reborn -- config init
It writes:
$IRONCLAW_REBORN_HOME/config.toml$IRONCLAW_REBORN_HOME/providers.jsonA minimal configured model route looks like:
[llm.default]
provider_id = "openai"
model = "gpt-5-mini"
api_key_env = "OPENAI_API_KEY"
config.toml may also include optional sections such as [boot],
[identity], [runner], and [skills]; config init writes commented
guidance for the supported fields.
If config.toml is missing, the first stateful runtime start through run,
repl, or serve seeds a sparse file with api_version and the safe
local-dev boot profile. Read-only commands and run --dry-run stay
side-effect-free. One-off environment selections such as
IRONCLAW_REBORN_PROFILE=local-dev-yolo are not persisted into the seeded
file.
Important: api_key_env is the name of an environment variable, not the secret
itself. Reborn rejects inline secret-shaped values in config.toml and
providers.json.
Production storage uses the same env-only pattern. A production Reborn config may name the PostgreSQL URL variable, but must not contain the raw URL:
[storage]
backend = "postgres"
url_env = "IRONCLAW_REBORN_POSTGRES_URL"
secret_master_key_env = "IRONCLAW_REBORN_SECRET_MASTER_KEY"
# Optional; defaults to 2. Keep below the PostgreSQL server or managed
# session-pool cap after reserving capacity for restarts and operator sessions.
pool_max_size = 2
[policy]
deployment_mode = "hosted_multi_tenant"
default_profile = "secure_default"
Set IRONCLAW_REBORN_POSTGRES_URL in the process environment, and set
IRONCLAW_REBORN_SECRET_MASTER_KEY to independent cryptographic key material.
Managed remote PostgreSQL providers must use TLS, for example by appending
sslmode=require.
Production run also requires an explicit [policy] section. The first
production launch slice supports runtime policies that do not require a
tenant-sandbox process binding.
Once [llm.default] exists, that config selects the provider. LLM_BACKEND is
only an env fallback when no default LLM slot is configured. To switch providers
after writing config, use models set-provider <provider> or edit
[llm.default].provider_id.
If $IRONCLAW_REBORN_HOME/config.toml is absent or has no [llm.default],
Reborn can resolve the LLM from environment variables. A sparse first-run
seeded config does not include [llm.default], so env-only model selection
continues to work:
export IRONCLAW_REBORN_HOME="$PWD/.reborn-env-only"
export LLM_BACKEND=openai
export OPENAI_API_KEY="sk-..."
cargo run -q -p ironclaw_reborn_cli --bin ironclaw-reborn -- run --message "hello"
Common provider env vars:
Use models list <provider> to see the exact provider metadata compiled into
the current branch.
run and repl currently support local-runtime composition through
local-dev, local-dev-yolo, and hosted-single-tenant-volume.
hosted-single-tenant-volume uses the local-runtime libSQL substrate under
$IRONCLAW_REBORN_HOME/hosted-single-tenant-volume, resolves the hosted
secure-default runtime policy, and disables process-backed tools such as shell.
It is intended for single-tenant preview deployments on a persistent volume,
not as the full PostgreSQL production composition.
local-dev-yolo grants trusted-laptop host access and must be confirmed
explicitly:
export IRONCLAW_REBORN_PROFILE=local-dev-yolo
cargo run -q -p ironclaw_reborn_cli --bin ironclaw-reborn -- repl --confirm-host-access
The Reborn WebUI is compiled behind the webui-v2-beta Cargo feature. Builds
with this feature require Node.js 22 with Corepack/pnpm so Cargo can generate
and embed the SPA bundle. Build or run the binary with that feature to enable the serve
command:
cargo run -q -p ironclaw_reborn_cli --features webui-v2-beta --bin ironclaw-reborn -- serve --help
cargo build -p ironclaw_reborn_cli --features webui-v2-beta --bin ironclaw-reborn
The WebUI listener defaults to 127.0.0.1:3000. The service requires an
env-bearer token and a user id at startup. It also needs the model route from
the earlier section, including that provider's credential env var:
export IRONCLAW_REBORN_HOME="$PWD/.reborn-home"
export OPENAI_API_KEY="sk-..." # or the required env var for your configured provider
export IRONCLAW_REBORN_WEBUI_TOKEN="$(openssl rand -hex 32)"
export IRONCLAW_REBORN_WEBUI_USER_ID="reborn-cli"
cargo run -q -p ironclaw_reborn_cli --features webui-v2-beta --bin ironclaw-reborn -- serve
Equivalent config.toml listener configuration:
[webui]
listen_host = "127.0.0.1"
listen_port = 3000
env_token_var = "IRONCLAW_REBORN_WEBUI_TOKEN"
env_user_id_var = "IRONCLAW_REBORN_WEBUI_USER_ID"
allowed_origins = ["http://127.0.0.1:3000", "http://localhost:3000"]
canonical_host = "127.0.0.1:3000"
env_token_var and env_user_id_var are env-var names. Keep the actual token
and user id in the environment.
Required WebUI env vars:
| Variable | Purpose |
|---|---|
IRONCLAW_REBORN_WEBUI_TOKEN | Bearer token for WebUI requests. If SSO is enabled, this also signs sessions and must be at least 32 bytes. |
IRONCLAW_REBORN_WEBUI_USER_ID | Reborn owner/user id for env-bearer requests. If [identity].default_owner is configured, it must match this value. |
Optional WebUI OAuth env vars:
For Google SSO, create a Google OAuth web client and register the Reborn WebUI redirect URI as:
{IRONCLAW_REBORN_WEBUI_BASE_URL}/auth/callback/google
For example, with IRONCLAW_REBORN_WEBUI_BASE_URL=https://ironclaw.example.com,
the authorized redirect URI in Google Cloud is:
https://ironclaw.example.com/auth/callback/google
Notion MCP and other product-auth OAuth setup flows use the same public WebUI
base URL when registering provider callback URLs. Do not include a trailing
slash in IRONCLAW_REBORN_WEBUI_BASE_URL; Reborn trims it before building
callback URLs. If the base URL is omitted, Reborn uses the actual listener
address, such as http://127.0.0.1:3000, which is suitable only for
loopback/local OAuth testing. Public or non-loopback OAuth deployments must set
an https:// base URL.
Complete Google SSO startup env:
export IRONCLAW_REBORN_HOME="/var/lib/ironclaw-reborn"
export IRONCLAW_REBORN_PROFILE=local-dev
export OPENAI_API_KEY="sk-..." # or the required env var for your configured provider
export IRONCLAW_REBORN_WEBUI_TOKEN="$(openssl rand -hex 32)"
export IRONCLAW_REBORN_WEBUI_USER_ID="reborn-cli"
export IRONCLAW_REBORN_WEBUI_BASE_URL="https://ironclaw.example.com"
export IRONCLAW_REBORN_WEBUI_ALLOWED_EMAIL_DOMAINS="example.com,team.example.com"
export IRONCLAW_REBORN_WEBUI_GOOGLE_CLIENT_ID="..."
export IRONCLAW_REBORN_WEBUI_GOOGLE_CLIENT_SECRET="..."
cargo run -q -p ironclaw_reborn_cli --features webui-v2-beta --bin ironclaw-reborn -- serve --host 0.0.0.0 --port 3000
IRONCLAW_REBORN_WEBUI_ALLOWED_EMAIL_DOMAINS is the actual admission
allowlist. Google hd is only an optional provider-side hosted-domain hint; do
not rely on it instead of the Reborn allowed-domain list. IRONCLAW_REBORN_HOME
selects the state/config root for this service. IRONCLAW_REBORN_PROFILE
defaults to local-dev; local-dev-yolo grants trusted-laptop host access and
cannot be served on a non-loopback host.
Use serve --host <ip> --port <port> to override the listener from the CLI.
Binding to a non-loopback host is production-sensitive. local-dev-yolo serve
mode also requires --confirm-host-access and refuses non-loopback hosts.
Slack support is compiled behind the slack-v2-host-beta Cargo feature. That
feature includes webui-v2-beta, so Slack runs on the same serve command:
export IRONCLAW_REBORN_HOME="$PWD/.reborn-home"
export OPENAI_API_KEY="sk-..." # or the required env var for your configured provider
export IRONCLAW_REBORN_WEBUI_TOKEN="$(openssl rand -hex 32)"
export IRONCLAW_REBORN_WEBUI_USER_ID="reborn-cli"
export IRONCLAW_REBORN_SLACK_ENABLED="true"
cargo run -q -p ironclaw_reborn_cli --features slack-v2-host-beta --bin ironclaw-reborn -- serve
Enable Slack by setting IRONCLAW_REBORN_SLACK_ENABLED=true, or by adding a
[slack] section to config.toml:
[slack]
enabled = true
The env var overrides only the Slack route enablement gate: true/1 mounts
Slack, while false/0 acts as a deployment kill switch. After the server
starts, configure the Slack app ids, bot token, signing secret, and channel
mappings from WebUI channel setup.
Required Slack settings:
| Name | Purpose |
|---|---|
[slack].enabled = true or IRONCLAW_REBORN_SLACK_ENABLED=true | Mounts the Slack route during serve. |
| WebUI Slack workspace setup | Stores Slack installation ids, channel mappings, and Slack bot/signing secrets. |
More detailed Slack setup notes live in
docs/reborn/setup-slack-for-reborn-binary.md.
IronClaw is built on a simple principle: your AI assistant should work for you, not against you.
In a world where AI systems are increasingly opaque about data handling and aligned with corporate interests, IronClaw takes a different approach:
IronClaw is the AI assistant you can actually trust with your personal and professional life.
webui-v2-beta featurelibclang and a working C toolchain if you build the WeChat voice/SILK path from sourceVisit Releases page to see the latest updates.
Download the Windows Installer and run it.
irm https://github.com/nearai/ironclaw/releases/latest/download/ironclaw-installer.ps1 | iex
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/nearai/ironclaw/releases/latest/download/ironclaw-installer.sh | sh
brew install ironclaw
Install it with cargo, just make sure you have Rust installed on your computer.
# Clone the repository
git clone https://github.com/nearai/ironclaw.git
cd ironclaw
# Build
cargo build --release
# Run tests
cargo test
For full release (after modifying channel sources), run ./scripts/build-all.sh to rebuild channels first.
Optional: WeChat voice notes (
audio/silk) require the standaloneironclaw-silk-decoderhelper to be transcribable. It's excluded from the default workspace build becausesilk-codecpulls inbindgen/libclang. Build it separately with./crates/ironclaw_silk_decoder/build.sh(needs libclang + a C toolchain) and put the resulting binary on$PATH, beside theironclawbinary, or pointed at by . Without it, voice messages are still delivered — just as raw blobs.
# Create database
createdb ironclaw
# Enable pgvector
psql ironclaw -c "CREATE EXTENSION IF NOT EXISTS vector;"
Run the setup wizard to configure IronClaw:
ironclaw onboard
The wizard handles database connection, NEAR AI authentication (via browser OAuth),
and secrets encryption (using your system keychain). Settings are persisted in the
connected database; bootstrap variables (e.g. DATABASE_URL, LLM_BACKEND) are
written to ~/.ironclaw/.env so they are available before the database connects.
IronClaw defaults to NEAR AI but supports many LLM providers out of the box. Built-in providers include Anthropic, OpenAI, GitHub Copilot, Google Gemini, MiniMax, Mistral, and Ollama (local). OpenAI-compatible services like OpenRouter (300+ models), Together AI, Fireworks AI, and self-hosted servers (vLLM, LiteLLM) are also supported.
Select your provider in the wizard, or set environment variables directly:
# Example: MiniMax (built-in, 204K context)
LLM_BACKEND=minimax
MINIMAX_API_KEY=...
# Example: OpenAI-compatible endpoint
LLM_BACKEND=openai_compatible
LLM_BASE_URL=https://openrouter.ai/api/v1
LLM_API_KEY=sk-or-...
LLM_MODEL=anthropic/claude-sonnet-4
See docs/capabilities/llm-providers.md for a full provider guide.
IronClaw implements defense in depth to protect your data and prevent misuse.
All untrusted tools run in isolated WebAssembly containers:
WASM ──► Allowlist ──► Leak Scan ──► Credential ──► Execute ──► Leak Scan ──► WASM
Validator (request) Injector Request (response)
External content passes through multiple security layers:
┌────────────────────────────────────────────────────────────────┐
│ Channels │
│ ┌──────┐ ┌──────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ REPL │ │ HTTP │ │WASM Channels│ │ Web Gateway │ │
│ └──┬───┘ └──┬───┘ └──────┬──────┘ │ (SSE + WS) │ │
│ │ │ │ └──────┬──────┘ │
│ └─────────┴──────────────┴────────────────┘ │
│ │ │
│ ┌─────────▼─────────┐ │
│ │ Agent Loop │ Intent routing │
│ └────┬──────────┬───┘ │
│ │ │ │
│ ┌──────────▼────┐ ┌──▼───────────────┐ │
│ │ Scheduler │ │ Routines Engine │ │
│ │(parallel jobs)│ │(cron, event, wh) │ │
│ └──────┬────────┘ └────────┬─────────┘ │
│ │ │ │
│ ┌─────────────┼────────────────────┘ │
│ │ │ │
│ ┌───▼─────┐ ┌────▼────────────────┐ │
│ │ Local │ │ Orchestrator │ │
│ │Workers │ │ ┌───────────────┐ │ │
│ │(in-proc)│ │ │ Docker Sandbox│ │ │
│ └───┬─────┘ │ │ Containers │ │ │
│ │ │ │ ┌───────────┐ │ │ │
│ │ │ │ │Worker / CC│ │ │ │
│ │ │ │ └───────────┘ │ │ │
│ │ │ └───────────────┘ │ │
│ │ └─────────┬───────────┘ │
│ └──────────────────┤ │
│ │ │
│ ┌───────────▼──────────┐ │
│ │ Tool Registry │ │
│ │ Built-in, MCP, WASM │ │
│ └──────────────────────┘ │
└────────────────────────────────────────────────────────────────┘
# First-time setup (configures database, auth, etc.)
ironclaw onboard
# Start interactive REPL
cargo run
# REPL with debug logging
RUST_LOG=ironclaw=debug cargo run
# Format code
cargo fmt
# Lint
cargo clippy --all --benches --tests --examples --all-features
# Run tests
createdb ironclaw_test
cargo test
# Run specific test
cargo test test_name
./channels-src/telegram/build.sh before cargo build so the updated WASM is bundled.IronClaw is a Rust reimplementation inspired by OpenClaw. See FEATURE_PARITY.md for the complete tracking matrix.
Key differences:
Licensed under either of:
at your option.
| Provider | Selector | Required env |
|---|
| OpenAI | LLM_BACKEND=openai | OPENAI_API_KEY; optional OPENAI_MODEL, OPENAI_BASE_URL |
| Anthropic | LLM_BACKEND=anthropic | ANTHROPIC_API_KEY; optional ANTHROPIC_MODEL, ANTHROPIC_BASE_URL |
| OpenAI-compatible | LLM_BACKEND=openai_compatible | LLM_BASE_URL; optional LLM_API_KEY, LLM_MODEL |
| OpenRouter | LLM_BACKEND=openrouter | OPENROUTER_API_KEY; optional OPENROUTER_MODEL |
| Ollama | LLM_BACKEND=ollama | no key; optional OLLAMA_BASE_URL, OLLAMA_MODEL |
| Codex auth | LLM_BACKEND=openai_codex | LLM_USE_CODEX_AUTH=true or CODEX_AUTH_PATH; optional OPENAI_CODEX_MODEL |
| Variable | Purpose |
|---|
IRONCLAW_REBORN_HOME | Absolute Reborn state root. Defaults to $HOME/.ironclaw/reborn. The resolver rejects unsafe paths and v1 state-root aliases such as $HOME/.ironclaw. |
IRONCLAW_REBORN_PROFILE | Boot profile selector. Supported values: local-dev, local-dev-yolo, hosted-single-tenant, hosted-single-tenant-volume, production, migration-dry-run. |
IRONCLAW_REBORN_POSTGRES_URL | Production PostgreSQL storage URL when [storage].backend = "postgres" and [storage].url_env names this variable. Keep it out of config.toml; remote providers must use TLS. |
IRONCLAW_REBORN_POSTGRES_POOL_MAX_SIZE | Optional override for the Reborn PostgreSQL client pool size. Use this when a managed provider enforces a small session-pool cap. |
IRONCLAW_FILESYSTEM_POSTGRES_MIGRATION_CONNECT_MAX_WAIT_SECS | Optional startup wait window for Postgres filesystem migration connection retries. Defaults to 300 seconds. |
IRONCLAW_REBORN_SECRET_MASTER_KEY | Production Reborn secret master key when [storage].secret_master_key_env names this variable. Keep it independent from the database URL and out of config.toml. |
IRONCLAW_REBORN_LOG | Tracing filter for the Reborn binary, for example debug,ironclaw_runner=trace. |
| Variable | Purpose |
|---|
IRONCLAW_REBORN_WEBUI_BASE_URL | Public base URL used for WebUI login and product-auth OAuth callbacks. Non-loopback deployments must use https://. |
IRONCLAW_REBORN_WEBUI_GOOGLE_CLIENT_ID | Enables Google SSO when set. |
IRONCLAW_REBORN_WEBUI_GOOGLE_CLIENT_SECRET | Required when Google SSO is enabled. |
IRONCLAW_REBORN_WEBUI_GOOGLE_ALLOWED_HD | Optional Google hosted-domain restriction. |
IRONCLAW_REBORN_WEBUI_GITHUB_CLIENT_ID | Enables GitHub SSO when set. |
IRONCLAW_REBORN_WEBUI_GITHUB_CLIENT_SECRET | Required when GitHub SSO is enabled. |
IRONCLAW_REBORN_WEBUI_ALLOWED_EMAIL_DOMAINS | Required when any SSO provider is enabled. Comma-separated verified email domains. |
IRONCLAW_REBORN_WEBUI_OAUTH_HTTP_TIMEOUT_SECS | Optional OAuth HTTP timeout override. |
IRONCLAW_SILK_DECODERaudio/silk| Component | Purpose |
|---|
| Agent Loop | Main message handling and job coordination |
| Router | Classifies user intent (command, query, task) |
| Scheduler | Manages parallel job execution with priorities |
| Worker | Executes jobs with LLM reasoning and tool calls |
| Orchestrator | Container lifecycle, LLM proxying, per-job auth |
| Web Gateway | Browser UI with chat, memory, jobs, logs, extensions, routines |
| Routines Engine | Scheduled (cron) and reactive (event, webhook) background tasks |
| Workspace | Persistent memory with hybrid search |
| Safety Layer | Prompt injection defense and content sanitization |