Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Set up a three-model multi-agent OpenClaw system with GPT-5.2 as the fast communicator/coordinator, Claude Sonnet 4.5 as the tester/reviewer, and Claude Opus 4.6 as the deep coder/architect. All three agents get their own Telegram bots and can delegate work to each other via sessions_spawn. Use when setting up multi-agent orchestration, a three-brain system, or a coordinator/tester/coder agent team. --- name: three-brain-setup description: Set up a three-model multi-agent OpenClaw system with GPT-5.2 as the fast communicator/coordinator, Claude Sonnet 4.5 as the tester/reviewer, and Claude Opus 4.6 as the deep coder/architect. All three agents get their own Telegram bots and can delegate work to each other via sessions_spawn. Use when setting up multi-agent orchestration, a three-brain system, or a coordinator/t Capability contract not published. No trust telemetry is available yet. 2 GitHub stars reported by the source. Last updated 4/14/2026.
Freshness
Last checked 4/14/2026
Best For
three-brain-setup is best for delegate, spawn, answer workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Set up a three-model multi-agent OpenClaw system with GPT-5.2 as the fast communicator/coordinator, Claude Sonnet 4.5 as the tester/reviewer, and Claude Opus 4.6 as the deep coder/architect. All three agents get their own Telegram bots and can delegate work to each other via sessions_spawn. Use when setting up multi-agent orchestration, a three-brain system, or a coordinator/tester/coder agent team. --- name: three-brain-setup description: Set up a three-model multi-agent OpenClaw system with GPT-5.2 as the fast communicator/coordinator, Claude Sonnet 4.5 as the tester/reviewer, and Claude Opus 4.6 as the deep coder/architect. All three agents get their own Telegram bots and can delegate work to each other via sessions_spawn. Use when setting up multi-agent orchestration, a three-brain system, or a coordinator/t
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 14, 2026
Capability contract not published. No trust telemetry is available yet. 2 GitHub stars reported by the source. Last updated 4/14/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 14, 2026
Vendor
Austintgriffith
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 2 GitHub stars reported by the source. Last updated 4/14/2026.
Setup snapshot
git clone https://github.com/austintgriffith/three-brain-setup.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Austintgriffith
Protocol compatibility
OpenClaw
Adoption signal
2 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
openclaw configure
bash
export OPENAI_API_KEY="sk-proj-..." export ANTHROPIC_API_KEY="sk-ant-..."
json5
{
env: {
vars: {
OPENAI_API_KEY: "sk-proj-...",
ANTHROPIC_API_KEY: "sk-ant-..."
}
}
}json5
{
// ── API Keys ──
env: {
vars: {
OPENAI_API_KEY: "<your-openai-api-key>",
ANTHROPIC_API_KEY: "<your-anthropic-api-key>"
}
},
// ── Auth Profiles ──
// Tell OpenClaw how to authenticate with each provider.
auth: {
profiles: {
"openai:default": {
provider: "openai",
mode: "token"
},
"anthropic:default": {
provider: "anthropic",
mode: "token"
},
"anthropic-1m:manual": {
provider: "anthropic-1m",
mode: "token"
}
}
},
// ── Model Providers ──
// Define the Anthropic 1M-context provider (for Sonnet + Opus with large context).
// OpenAI is built-in and doesn't need explicit provider config.
models: {
providers: {
"anthropic-1m": {
baseUrl: "https://api.anthropic.com",
api: "anthropic-messages",
models: [
{
id: "claude-opus-4-6",
name: "Claude Opus 4.6 (1M context)",
reasoning: true,
input: ["text", "image"],
cost: { input: 5, output: 25, cacheRead: 0.5, cacheWrite: 6.25 },
contextWindow: 1000000,
maxTokens: 32000
},
{
id: "claude-sonnet-4-5",
name: "Claude Sonnet 4.5",
reasoning: true,
input: ["text", "image"],
cost: { input: 3, output: 15, cacheRead: 0.3, cacheWrite: 3.75 },
contextWindow: 200000,
maxTokens: 16000
}
]
}
}
},
// ── Agents ──
agents: {
defaults: {
// Shared workspace — all three agents see the same files.
// Change to separate workspaces if you want isolation.
workspace: "~/.openclaw/workspace",
skipBootstrap: true,
maxConcurrent: 4,
subagents: {
maxConcurrent: 8
}
},
list: [
{
id: "coordinator",
name: "coordinator",
workspace: "~/.openclaw/workspace",
model: "omarkdown
# AGENTS.md ## Multi-Agent System You are part of a three-agent team. Each agent has a specialty. ### The Team | Agent | Model | Strength | When to use | |-------|-------|----------|-------------| | **coordinator** | GPT-5.2 | Fast, cheap, good communicator | Triage, coordination, simple tasks, user-facing replies | | **tester** | Sonnet 4.5 | Vision, code review, solid reasoning | Testing, reviewing code, analyzing images, medium tasks | | **coder** | Opus 4.6 | Best reasoning, deep coding | Writing code, architecture, complex problems, refactoring | ### How to Delegate Use `sessions_spawn` to hand off work:
text
The spawned agent works in the background and announces results when done. Use `agents_list` to see which agents you can delegate to. ### Delegation Rules - **coordinator**: You're the front door. Talk to the user. For code tasks, delegate to **coder**. For reviews/testing, delegate to **tester**. Only do simple tasks yourself. - **tester**: You review and test. If you find something that needs a rewrite, delegate to **coder**. Report results back clearly. - **coder**: You write code. If you need clarification from the user, your announce will reach them through the coordinator's channel. Focus on quality implementation. ### Cost Awareness - coordinator (GPT-5.2): $1.75/$14 per M tokens — cheap, use freely - tester (Sonnet 4.5): $3/$15 per M tokens — moderate, use for real work - coder (Opus 4.6): $5/$25 per M tokens — expensive, use for actual coding/architecture Don't delegate trivially. If the coordinator can answer "what time is it?" — just answer it.
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Set up a three-model multi-agent OpenClaw system with GPT-5.2 as the fast communicator/coordinator, Claude Sonnet 4.5 as the tester/reviewer, and Claude Opus 4.6 as the deep coder/architect. All three agents get their own Telegram bots and can delegate work to each other via sessions_spawn. Use when setting up multi-agent orchestration, a three-brain system, or a coordinator/tester/coder agent team. --- name: three-brain-setup description: Set up a three-model multi-agent OpenClaw system with GPT-5.2 as the fast communicator/coordinator, Claude Sonnet 4.5 as the tester/reviewer, and Claude Opus 4.6 as the deep coder/architect. All three agents get their own Telegram bots and can delegate work to each other via sessions_spawn. Use when setting up multi-agent orchestration, a three-brain system, or a coordinator/t
This guide turns a stock OpenClaw installation into a three-agent system:
| Agent | Model | Role | Telegram Bot |
|-------|-------|------|-------------|
| coordinator | openai/gpt-5.2 | Fast triage, communication, delegation | Your main bot |
| tester | anthropic-1m/claude-sonnet-4-5 | Code review, testing, image/vision tasks | Second bot |
| coder | anthropic-1m/claude-opus-4-6 | Deep coding, architecture, heavy reasoning | Third bot |
openclaw gateway status returns OK)Open Telegram, chat with @BotFather, and create three bots:
/newbot → name it something like "MyCoordinator" → username like my_coordinator_bot/newbot → name it something like "MyTester" → username like my_tester_bot/newbot → name it something like "MyCoder" → username like my_coder_botCopy each bot token. You'll need all three.
Important: For each bot, also run /setprivacy → Disable if you want them to see all messages in groups (not just @mentions).
Make sure your API keys are in the OpenClaw config. Run:
openclaw configure
Or set them as environment variables in your shell profile:
export OPENAI_API_KEY="sk-proj-..."
export ANTHROPIC_API_KEY="sk-ant-..."
Or put them directly in ~/.openclaw/openclaw.json under env.vars:
{
env: {
vars: {
OPENAI_API_KEY: "sk-proj-...",
ANTHROPIC_API_KEY: "sk-ant-..."
}
}
}
This is the core step. Open ~/.openclaw/openclaw.json and set up the full config.
Below is the complete, working config. Replace the placeholder values marked with <...>.
{
// ── API Keys ──
env: {
vars: {
OPENAI_API_KEY: "<your-openai-api-key>",
ANTHROPIC_API_KEY: "<your-anthropic-api-key>"
}
},
// ── Auth Profiles ──
// Tell OpenClaw how to authenticate with each provider.
auth: {
profiles: {
"openai:default": {
provider: "openai",
mode: "token"
},
"anthropic:default": {
provider: "anthropic",
mode: "token"
},
"anthropic-1m:manual": {
provider: "anthropic-1m",
mode: "token"
}
}
},
// ── Model Providers ──
// Define the Anthropic 1M-context provider (for Sonnet + Opus with large context).
// OpenAI is built-in and doesn't need explicit provider config.
models: {
providers: {
"anthropic-1m": {
baseUrl: "https://api.anthropic.com",
api: "anthropic-messages",
models: [
{
id: "claude-opus-4-6",
name: "Claude Opus 4.6 (1M context)",
reasoning: true,
input: ["text", "image"],
cost: { input: 5, output: 25, cacheRead: 0.5, cacheWrite: 6.25 },
contextWindow: 1000000,
maxTokens: 32000
},
{
id: "claude-sonnet-4-5",
name: "Claude Sonnet 4.5",
reasoning: true,
input: ["text", "image"],
cost: { input: 3, output: 15, cacheRead: 0.3, cacheWrite: 3.75 },
contextWindow: 200000,
maxTokens: 16000
}
]
}
}
},
// ── Agents ──
agents: {
defaults: {
// Shared workspace — all three agents see the same files.
// Change to separate workspaces if you want isolation.
workspace: "~/.openclaw/workspace",
skipBootstrap: true,
maxConcurrent: 4,
subagents: {
maxConcurrent: 8
}
},
list: [
{
id: "coordinator",
name: "coordinator",
workspace: "~/.openclaw/workspace",
model: "openai/gpt-5.2",
// Coordinator can delegate to tester and coder
subagents: {
allowAgents: ["tester", "coder"]
}
},
{
id: "tester",
name: "tester",
workspace: "~/.openclaw/workspace",
model: "anthropic-1m/claude-sonnet-4-5",
// Tester can delegate to coordinator and coder
subagents: {
allowAgents: ["coordinator", "coder"]
}
},
{
id: "coder",
name: "coder",
workspace: "~/.openclaw/workspace",
model: "anthropic-1m/claude-opus-4-6",
// Coder can delegate to coordinator and tester
subagents: {
allowAgents: ["coordinator", "tester"]
}
}
]
},
// ── Channel Bindings ──
// Route each Telegram bot to the correct agent.
bindings: [
{
agentId: "coordinator",
match: { channel: "webchat" }
},
{
agentId: "coordinator",
match: { channel: "telegram", accountId: "default" }
},
{
agentId: "tester",
match: { channel: "telegram", accountId: "tester" }
},
{
agentId: "coder",
match: { channel: "telegram", accountId: "coder" }
}
],
// ── Telegram Channel ──
channels: {
telegram: {
enabled: true,
botToken: "<coordinator-bot-token>",
dmPolicy: "pairing",
groupPolicy: "allowlist",
streamMode: "partial",
accounts: {
tester: {
dmPolicy: "pairing",
botToken: "<tester-bot-token>",
groupPolicy: "allowlist",
streamMode: "partial"
},
coder: {
dmPolicy: "pairing",
botToken: "<coder-bot-token>",
groupPolicy: "allowlist",
streamMode: "partial"
}
}
}
},
// ── Gateway ──
gateway: {
port: 18789,
mode: "local",
auth: {
mode: "token"
// A token is auto-generated on first start. Or set your own:
// token: "your-secret-token-here"
}
},
// ── Plugins ──
plugins: {
entries: {
telegram: { enabled: true }
}
}
}
env.vars: API keys available to all agents as environment variables.auth.profiles: Tells OpenClaw which auth method to use per provider. anthropic-1m:manual uses the same ANTHROPIC_API_KEY but routes to the 1M-context endpoint.models.providers: Defines the anthropic-1m provider with explicit model specs. OpenAI and standard anthropic are built-in and auto-detected.agents.list: Three agents, each with a model and subagents.allowAgents specifying which other agents they can spawn.bindings: Routes Telegram messages from each bot to the correct agent. The default accountId is the main botToken; named accounts (tester, coder) use tokens from channels.telegram.accounts.channels.telegram: Main bot token at top level, additional bots under accounts.All three agents share a workspace. The workspace files teach each agent who it is and how to delegate.
Create/update ~/.openclaw/workspace/AGENTS.md:
# AGENTS.md
## Multi-Agent System
You are part of a three-agent team. Each agent has a specialty.
### The Team
| Agent | Model | Strength | When to use |
|-------|-------|----------|-------------|
| **coordinator** | GPT-5.2 | Fast, cheap, good communicator | Triage, coordination, simple tasks, user-facing replies |
| **tester** | Sonnet 4.5 | Vision, code review, solid reasoning | Testing, reviewing code, analyzing images, medium tasks |
| **coder** | Opus 4.6 | Best reasoning, deep coding | Writing code, architecture, complex problems, refactoring |
### How to Delegate
Use `sessions_spawn` to hand off work:
sessions_spawn( agentId="coder", task="Write a Python script that...", cleanup="delete" )
The spawned agent works in the background and announces results when done.
Use `agents_list` to see which agents you can delegate to.
### Delegation Rules
- **coordinator**: You're the front door. Talk to the user. For code tasks, delegate to **coder**. For reviews/testing, delegate to **tester**. Only do simple tasks yourself.
- **tester**: You review and test. If you find something that needs a rewrite, delegate to **coder**. Report results back clearly.
- **coder**: You write code. If you need clarification from the user, your announce will reach them through the coordinator's channel. Focus on quality implementation.
### Cost Awareness
- coordinator (GPT-5.2): $1.75/$14 per M tokens — cheap, use freely
- tester (Sonnet 4.5): $3/$15 per M tokens — moderate, use for real work
- coder (Opus 4.6): $5/$25 per M tokens — expensive, use for actual coding/architecture
Don't delegate trivially. If the coordinator can answer "what time is it?" — just answer it.
Create/update ~/.openclaw/workspace/SOUL.md with your preferred personality. Each agent reads this, so write it for all three:
# SOUL.md
Be helpful, be direct. Skip the filler.
When you're the **coordinator**: be conversational and fast. Triage requests and delegate heavy work.
When you're the **tester**: be thorough and critical. Find problems.
When you're the **coder**: be precise and clean. Write good code the first time.
All agents: don't ask questions you can answer yourself. Check files, search the web, try things. Only ask the user as a last resort.
Restart the gateway to pick up the new config:
openclaw gateway restart
Now DM each of the three Telegram bots. Each will send a pairing code. Approve them:
openclaw pairing list telegram
openclaw pairing approve telegram <CODE_1>
openclaw pairing approve telegram <CODE_2>
openclaw pairing approve telegram <CODE_3>
You may need to specify the account for non-default bots:
openclaw pairing list telegram --account tester
openclaw pairing approve telegram <CODE> --account tester
openclaw pairing list telegram --account coder
openclaw pairing approve telegram <CODE> --account coder
DM the coordinator bot and say: "Write me a Python script that generates Fibonacci numbers"
sessions_spawnDM the tester bot and say: "Review this code: def fib(n): return n if n < 2 else fib(n-1) + fib(n-2)"
DM the coder bot and say: "Build a FastAPI endpoint that returns the current time"
DM the coordinator and say: "Can you have the tester review this code?" with a code snippet
┌─────────────┐
Telegram │ coordinator │ ← GPT-5.2 (fast/cheap)
Bot #1 ──────► │ agent │
└──────┬──────┘
│ sessions_spawn(agentId="coder", task="...")
│ sessions_spawn(agentId="tester", task="...")
▼
┌────────────────────────┐
│ │
┌────────┴───────┐ ┌───────────┴──────┐
│ tester │ │ coder │
│ agent │ │ agent │
│ Sonnet 4.5 │ │ Opus 4.6 │
└────────┬────────┘ └──────────┬────────┘
│ │
Telegram Bot #2 Telegram Bot #3
sessions_spawn creates an isolated sub-session, runs the task, and announces the result back to the requester's chat channel.subagents.allowAgents list controls who can delegate to whom — it's a full mesh here (everyone can reach everyone).If you want each agent to have its own personality and memory:
{
agents: {
list: [
{ id: "coordinator", workspace: "~/.openclaw/workspace-coordinator", /* ... */ },
{ id: "tester", workspace: "~/.openclaw/workspace-tester", /* ... */ },
{ id: "coder", workspace: "~/.openclaw/workspace-coder", /* ... */ }
]
}
}
Then create separate AGENTS.md, SOUL.md, USER.md in each workspace.
To have all three bots in a Telegram group where users can @mention them:
@userinfobot){
channels: {
telegram: {
groups: {
"<group-chat-id>": {
groupPolicy: "open",
requireMention: true // respond when @mentioned
}
},
// Also add the group to each account:
accounts: {
tester: {
// ... existing config ...
groups: {
"<group-chat-id>": {
groupPolicy: "open",
requireMention: true
}
}
},
coder: {
// ... existing config ...
groups: {
"<group-chat-id>": {
groupPolicy: "open",
requireMention: true
}
}
}
}
}
}
}
Swap any model for what you have access to:
ollama/llama3.3, ollama/qwen3-next:80b, ollama/deepseek-r1:70banthropic/claude-sonnet-4-5, anthropic/claude-opus-4-6openai/gpt-5-mini, openai/gpt-4o-miniopenrouter/anthropic/claude-sonnet-4-5Just change the model field on each agent in agents.list.
To make it one-directional (only coordinator delegates):
{
agents: {
list: [
{ id: "coordinator", subagents: { allowAgents: ["tester", "coder"] } },
{ id: "tester", subagents: { allowAgents: [] } },
{ id: "coder", subagents: { allowAgents: [] } }
]
}
}
If you set agents.defaults.models (the allowlist), make sure all three models are listed. Or remove it entirely to allow any configured model.
openclaw gateway status — is it running?openclaw logs --follow — look for errorsopenclaw pairing list telegram)agents.list[].subagents.allowAgents — does it include the target agent?agents_list from within a chat to see allowed targetsopenclaw models status)bindings has entries for all three botschannels.telegram.accounts has tokens for tester and coderdefault accountId corresponds to the top-level botToken; named accounts use accounts.<name>.botTokenanthropic-1m provider uses the same ANTHROPIC_API_KEY — it just routes to the 1M-context endpointauth.profiles includes an entry for anthropic-1m:manualopenclaw models status to verify all providers have valid credentialsMachine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/austintgriffith-three-brain-setup/snapshot"
curl -s "https://xpersona.co/api/v1/agents/austintgriffith-three-brain-setup/contract"
curl -s "https://xpersona.co/api/v1/agents/austintgriffith-three-brain-setup/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/austintgriffith-three-brain-setup/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/austintgriffith-three-brain-setup/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/austintgriffith-three-brain-setup/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/austintgriffith-three-brain-setup/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/austintgriffith-three-brain-setup/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/austintgriffith-three-brain-setup/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T00:32:45.718Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "delegate",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "spawn",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "answer",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "you",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "reach",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:delegate|supported|profile capability:spawn|supported|profile capability:answer|supported|profile capability:you|supported|profile capability:reach|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Austintgriffith",
"href": "https://github.com/austintgriffith/three-brain-setup",
"sourceUrl": "https://github.com/austintgriffith/three-brain-setup",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-14T22:23:18.516Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/austintgriffith-three-brain-setup/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/austintgriffith-three-brain-setup/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-14T22:23:18.516Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "2 GitHub stars",
"href": "https://github.com/austintgriffith/three-brain-setup",
"sourceUrl": "https://github.com/austintgriffith/three-brain-setup",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-14T22:23:18.516Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/austintgriffith-three-brain-setup/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/austintgriffith-three-brain-setup/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to three-brain-setup and adjacent AI workflows.