openbrain-chat-mermaid
High-contrast Mermaid mesh diagrams for OpenBrain chat and RAG replies.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
High-contrast Mermaid mesh diagrams for OpenBrain chat and RAG replies.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Browser automation via Playwright MCP (official Microsoft headless browser)
Image generation and manipulation via MCP
PDF parsing and extraction via MCP
Autonomous tool discovery, evaluation, and integration for agent self-enhancement
Route OpenOS tasks to the correct product skill.
Enrich CRM contacts with LinkedIn and décideur data.
| name | openbrain-chat-mermaid |
| description | High-contrast Mermaid mesh diagrams for OpenBrain chat and RAG replies. |
| version | 1.0.0 |
| author | OpenPro |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"openagents":{"tags":["openbrain","mermaid","mesh","diagram","architecture"],"category":"open-ecosystem","related_skills":["open-brain","open-ecosystem-hub","open-dev-workflow","open-orchestrator-ops"]}} |
Use when OpenBrain Command Center (or any agent answering about OpenOS mesh) needs a readable architecture diagram in chat.
OpenBrain web chat applies a high-contrast theme automatically:
%%{init}%% — it overrides the UI theme (purple/unreadable)%%{init}%% block if presentAppend at end of every mesh diagram (slate + blue/cyan — never purple/violet fills):
classDef meshCtrl fill:#1a2744,stroke:#38bdf8,color:#f5f5f5,stroke-width:2px
classDef meshApp fill:#161616,stroke:#60a5fa,color:#f5f5f5,stroke-width:2px
classDef meshData fill:#232323,stroke:#94a3b8,color:#f5f5f5,stroke-width:1px
classDef meshPlane fill:#0f0f0f,stroke:#475569,color:#e5e5e5,stroke-width:1px
| Node type | class |
|---|---|
| OpenOrchestrator, control plane | meshCtrl |
| OpenAgents, OpenCode, OpenBrain, OpenTicket, OpenCRM, app APIs | meshApp |
| Connectors, OpenPro, OpenTeam, external data | meshData |
| Subgraph / plane wrapper (Brain, Audit, MCP) | meshPlane |
Example: class OpenOrchestrator,Orch meshCtrl
flowchart TB or flowchart LRsubgraph per layer: Control plane / Apps / Brain & audit<br/>POST /v1/runs, MCP, RecEvent)| OpenOrchestrator | OpenAgents | |
|---|---|---|
| Role | Plan, approve, route | Execute profiles |
| Stack | TypeScript :3050 | Python gateway |
| OpenCode | Never | Yes via invoke_opencode |
```mermaid
flowchart TB
subgraph ctrl[Control plane]
Orch[OpenOrchestrator<br/>:3050]
end
subgraph apps[Apps]
Agents[OpenAgents<br/>runtime]
Code[OpenCode<br/>coder]
end
Orch -->|POST /v1/runs| Agents
Agents -->|invoke_opencode| Code
classDef meshCtrl fill:#1a2744,stroke:#38bdf8,color:#f5f5f5,stroke-width:2px
classDef meshApp fill:#161616,stroke:#60a5fa,color:#f5f5f5,stroke-width:2px
class Orch meshCtrl
class Agents,Code meshApp
```
%%{init}%%