Skip to main content
Stratus X1 × OpenClaw OpenClaw is a developer-native autonomous agent framework built on UNIX principles — composable tools, explicit config, clean interfaces, no magic. It runs SIGBART, its agent runtime, across TUI, Telegram, and Discord with a plugin system that actually respects your boundaries. This is the official Stratus X1 plugin for OpenClaw. One install drops the full model catalog, semantic state embeddings, and multi-step rollout planning directly into your SIGBART agent. No postinstall scripts. No automatic rewrites to your config. You opt in, you run the wizard, you’re done.

Full Model Catalog

Every X1-AC model across GPT-4o, Claude 4.x/3.x, and more — fetched live from the API at gateway start.

Native Tools

stratus_embeddings for 768-dim semantic state vectors. stratus_rollout for multi-step action planning.

Zero Config

/stratus setup in any OpenClaw chat interface handles everything. No manual JSON editing required. 🧈
Plugin Status: Public Beta — @formthefog/stratus · Version 2026.2.24

Installation

The recommended method is the OpenClaw plugin registry:
Or install directly:
No auto-setup. The plugin does not run a postinstall script — consistent with OpenClaw’s philosophy that tools are opt-in. Run the setup wizard manually after installation.

Setup

What Gets Configured

Two files are updated during setup: ~/.openclaw/openclaw.json — registers Stratus as a model provider:
At gateway start, the plugin fetches the live model list from GET /v1/models and overwrites this models array with the full current catalog. ~/.openclaw/agents/main/agent/auth-profiles.json — stores your API key:
These two files do not sync automatically. Updating openclaw.json does NOT update the auth cache. The gateway uses the auth cache. This is the #1 cause of 401 errors — if you update your key, you must update both files or re-run /stratus setup.

Slash Commands


Using Stratus in OpenClaw

Switching Models

Available Models

The plugin fetches the live model list at gateway start — run /stratus models to refresh. Models follow the format stratus-x1ac-{size}-{llm} across five size tiers: small · base · large · xl · huge. Native LLM backends: Recommended picks: See Models for the complete list.

Native Tools

The plugin ships two tools for agent workflows. OpenClaw’s security model requires explicit allowlisting — nothing runs without your say-so.
Generate 768-dimensional semantic state vectors for similarity search, memory indexing, and context clustering.
Tool schema:
Returns 768-dimensional float vectors per input.
Enable both tools:

Advanced Configuration

Custom Model Aliases

Adding entries to agents.defaults.models activates OpenClaw’s model allowlist, which blocks all models not explicitly listed. Only add aliases here if you intend to restrict available models.

Environment Variables

macOS LaunchAgent (Persistent Gateway)


Troubleshooting

”Stratus API key not configured”

Key not found in environment or config.

”Invalid Stratus API key format”

Key doesn’t start with stratus_sk_. Get a fresh key from stratus.run/dashboard and re-run /stratus setup.

401 Unauthorized / Stale Auth Cache

The config file and the auth cache don’t sync automatically. Update both:

429 Rate Limit

Wait and retry, or purchase additional credits from the dashboard.

Silent Fallback to Anthropic (SIGBART Ignoring Stratus)

Symptoms: /model stratus appears to work but SIGBART announces “NOW RUNNING: Anthropic” and Stratus metadata is absent from responses. Cause: The auth cache (auth-profiles.json) is stale. The gateway uses the cache, not the config file.
Then manually verify the API key works:
See the full troubleshooting guide for detailed debugging steps.

”Tool not available"

"Model not found”

Use the Stratus-prefixed model name, not the raw provider name:

Uninstall

OpenClaw doesn’t support plugin lifecycle hooks, so cleanup is always manual. After uninstall, oc models may still show Stratus models until the config patch above removes the aliases.
See the full uninstallation guide for complete cleanup including plugin files and environment variables.

Resources

Quickstart

New to Stratus? Start here.

Models

Browse all available models.

API Reference

Full endpoint docs and parameters.