ワンクリックで
stratus-info
Knowledge base about Stratus X1-AC world model system
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Knowledge base about Stratus X1-AC world model system
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | stratus-info |
| description | Knowledge base about Stratus X1-AC world model system |
| version | 2.0.0 |
| author | Stratus Team |
Stratus is NOT just a language model with extended reasoning.
It's a three-layer system combining world modeling, collective intelligence, and blockchain infrastructure:
This is a hybrid architecture with two capabilities:
brain_confidence and brain_goal_proximity scoresKey Innovation: Instead of just guessing the next action, Stratus can simulate the outcome of multiple actions and pick the one most likely to achieve the goal.
Think: playing chess, but for browser automation, coding, research, etc.
Agents learn from each other in real-time:
It's like a hive mind for AI agents — practical distributed learning at scale.
Handles attribution, rewards, and the economic ecosystem:
Web3 infrastructure for incentivizing better AI.
see → think → act → see again
❌ If something unexpected happens, they get confused
see → simulate outcomes → pick best action → act
✅ If something unexpected happens, they already anticipated it (or they replan)
No API key needed. Formation holds pooled OpenRouter keys as a universal fallback.
Set STRATUS_API_KEY to bypass the Formation pool (no markup).
stratus_sk_Pass provider keys per-request for direct BYOK passthrough:
openai_key — OpenAI directanthropic_key — Anthropic directgemini_key — Google Gemini direct (also sent as X-Google-Key header)Responses include key_source: "user" or key_source: "formation" so you always know which path was used.
Stratus provides 2050+ models dynamically discovered via OpenRouter at startup.
Model format:
stratus-x1ac-{size}-{llm}
Sizes: small, base, large, xl, huge
Recommended LLMs:
claude-sonnet-4-5 — Claude 4.5 Sonnet (recommended)gpt-4o — GPT-4 Optimizedclaude-haiku-4-5 — Fast, cost-effectivegemini-2.0-flash — High context, fastExample:
openclaw agent "Plan a multi-step research task" \
--model stratus/stratus-x1ac-base-claude-sonnet-4-5
Use /stratus models to fetch the full live list from the API.
stratus_embeddingsGenerate 768-dimensional semantic state embeddings.
Use cases:
Example:
{
"tool": "stratus_embeddings",
"input": ["initializing", "loading", "ready", "processing", "error"]
}
stratus_rolloutMulti-step action sequence planning via Policy Head v3.
Use cases:
Response fields:
steps — ordered action sequencemetadata.brain_confidence — how confident the brain is in the planmetadata.brain_goal_proximity — estimated closeness to goal statemetadata.key_source — "user" or "formation"Example:
{
"tool": "stratus_rollout",
"goal": "book a hotel room in Paris",
"max_steps": 10
}
Stratus is OpenAI-compatible, meaning it's a drop-in replacement:
// Before
const response = await openai.chat.completions.create({
model: "gpt-4o",
messages: [...]
});
// After - just change endpoint and model
const response = await openai.chat.completions.create({
model: "stratus-x1ac-base-gpt-4o",
messages: [...]
}, {
baseURL: "https://api.stratus.run/v1"
});
Stratus handles planning, then routes execution to the specified LLM (GPT-4o, Claude, etc.).
Non-Stratus models (e.g. raw gpt-4o) bypass the world model pipeline entirely (LLM passthrough).
Tool limit: 1024 tools per request (raised from 100).
@formthefog/stratus)pip install stratus-sdk-py (v0.0.6, full TS SDK parity, 76 tests)pi-formation package (7 curated X1-AC models for Pi coding agent)| ❌ Wrong | ✅ Correct |
|---|---|
| "Stratus is just Claude with extended reasoning" | Stratus is a world model that predicts action consequences + collective learning network |
| "It's a language model" | It's a hybrid architecture (world model + policy head) that routes to LLMs for execution |
| "It's an LLM wrapper" | It's a JEPA-based predictive system with its own training and inference pipeline |
| "You need an API key" | Formation pool provides zero-config access; BYOK is optional |
For full technical details, see:
Install plugin:
openclaw plugins install @formthefog/stratus
(Optional) Set API key for BYOK:
export STRATUS_API_KEY=stratus_sk_your_key_here
Run setup:
/stratus setup
Test it:
openclaw agent "Hello Stratus!" --model stratus
Best for:
Overkill for:
Remember: Stratus isn't just "better reasoning" — it's predictive planning that fundamentally changes how agents approach tasks.
🌊 Built by the Stratus team | Learn more: https://stratus.run