Jul 10, 2026, 9:36 AM
This commit is contained in:
@@ -935,3 +935,220 @@ Coordinator = zarządza przepływem pracy
|
||||
```
|
||||
|
||||
To jest już pełny model **Hub-and-Spoke Multi-Agent Organization** z przepływami wiedzy, decyzji i artefaktów między domenami.
|
||||
|
||||
|
||||
|
||||
Świetny kandydat na **Capability Map / AIOS Architecture Diagram**. Dla Mermaid najlepiej użyć **subgraph + style**, dzięki czemu każda domena ma własny kolor, a diagram przypomina oryginalny dashboard.
|
||||
|
||||
```mermaid
|
||||
flowchart TB
|
||||
|
||||
%% =====================================================
|
||||
%% ROOT
|
||||
%% =====================================================
|
||||
|
||||
ROOT["AI Operating System"]
|
||||
%% FOUNDATIONS
|
||||
%% =====================================================
|
||||
|
||||
subgraph Foundations
|
||||
Memory["MEMORY"]
|
||||
Productivity["PRODUCTIVITY"]
|
||||
end
|
||||
|
||||
%% =====================================================
|
||||
%% MEMORY
|
||||
%% =====================================================
|
||||
|
||||
subgraph MemoryDomain["MEMORY • Foundations"]
|
||||
Vault["Obsidian Vault"]
|
||||
Raw["/raw"]
|
||||
Wiki["/wiki"]
|
||||
Projects["/projects"]
|
||||
Claude["CLAUDE.md"]
|
||||
MemoryStore[".claude/memory"]
|
||||
|
||||
Vault --> Raw
|
||||
Vault --> Wiki
|
||||
Vault --> Projects
|
||||
end
|
||||
|
||||
%% =====================================================
|
||||
%% PRODUCTIVITY
|
||||
%% =====================================================
|
||||
|
||||
subgraph ProductivityDomain["PRODUCTIVITY • Foundations"]
|
||||
GWS["GWS CLI"]
|
||||
Inbox["Inbox Triage"]
|
||||
Calendar["Calendar Brief"]
|
||||
Sync["Drive Sync"]
|
||||
Daily["Daily Review"]
|
||||
Morning["Morning Routine"]
|
||||
end
|
||||
|
||||
%% =====================================================
|
||||
%% RESEARCH
|
||||
%% =====================================================
|
||||
|
||||
subgraph ResearchDomain["RESEARCH"]
|
||||
YT["YT Pipeline"]
|
||||
Deep["Deep Research"]
|
||||
LightRAG["LightRAG Query"]
|
||||
Trends["Morning Trend Scan"]
|
||||
Competitor["Competitor Watch"]
|
||||
NotebookLM["NotebookLM Bridge"]
|
||||
end
|
||||
|
||||
%% =====================================================
|
||||
%% CONTENT
|
||||
%% =====================================================
|
||||
|
||||
subgraph ContentDomain["CONTENT"]
|
||||
Outlines["Outlines"]
|
||||
Hooks["Hooks"]
|
||||
Cascade["Content Cascade"]
|
||||
Carousel["Carousel Generator"]
|
||||
Repurpose["Short Form Repurpose"]
|
||||
Thumbnail["Thumbnail Briefs"]
|
||||
end
|
||||
|
||||
%% =====================================================
|
||||
%% COMMUNITY
|
||||
%% =====================================================
|
||||
|
||||
subgraph CommunityDomain["COMMUNITY"]
|
||||
PostDrafts["Post Drafts"]
|
||||
Classroom["AI Classroom"]
|
||||
MemberOnboarding["Member Onboarding"]
|
||||
WeeklyQA["Weekly QA Digest"]
|
||||
CommentTriage["Comment Triage"]
|
||||
Pulse["Community Pulse"]
|
||||
end
|
||||
|
||||
%% =====================================================
|
||||
%% AGENCY
|
||||
%% =====================================================
|
||||
|
||||
subgraph AgencyDomain["AGENCY"]
|
||||
ClientOnboarding["Client Onboarding"]
|
||||
Scope["Scope of Work Generator"]
|
||||
ClientStatus["Weekly Client Status"]
|
||||
DeliverableQA["Deliverable QA"]
|
||||
Renewal["Retainer Renewal"]
|
||||
AIOSBuilder["Client AIOS Builder"]
|
||||
end
|
||||
|
||||
%% =====================================================
|
||||
%% SALES
|
||||
%% =====================================================
|
||||
|
||||
subgraph SalesDomain["SALES"]
|
||||
Pitch["Sponsor Pitch Deck"]
|
||||
LeadEnrichment["Lead Enrichment"]
|
||||
Followup["Follow-up Cadence"]
|
||||
Proposal["Proposal Drafts"]
|
||||
Pipeline["Pipeline Review"]
|
||||
InboxSales["Sponsor Inbox Triage"]
|
||||
end
|
||||
|
||||
%% =====================================================
|
||||
%% FINANCE
|
||||
%% =====================================================
|
||||
|
||||
subgraph FinanceDomain["FINANCE"]
|
||||
Books["Books Categorizer"]
|
||||
PL["Monthly P&L"]
|
||||
Tax["Tax Prep"]
|
||||
Anomaly["Anomaly Scan"]
|
||||
Audit["Subscription Audit"]
|
||||
Receipts["Receipts Tracker"]
|
||||
end
|
||||
|
||||
%% =====================================================
|
||||
%% OPS
|
||||
%% =====================================================
|
||||
|
||||
subgraph OpsDomain["OPS / CUSTOM"]
|
||||
Cleanup["Vault Cleanup"]
|
||||
SkillCreator["Skill Creator"]
|
||||
Cron["Cron Manager"]
|
||||
HooksCfg["Hook Config"]
|
||||
Spawn["Sub-Agent Spawn"]
|
||||
end
|
||||
|
||||
%% =====================================================
|
||||
%% RELATIONSHIPS
|
||||
%% =====================================================
|
||||
|
||||
ROOT --> Memory
|
||||
ROOT --> Productivity
|
||||
|
||||
ROOT --> ResearchDomain
|
||||
ROOT --> ContentDomain
|
||||
ROOT --> CommunityDomain
|
||||
ROOT --> AgencyDomain
|
||||
ROOT --> SalesDomain
|
||||
ROOT --> FinanceDomain
|
||||
ROOT --> OpsDomain
|
||||
|
||||
%% KNOWLEDGE FLOW
|
||||
|
||||
Raw -. Raw Data .-> Deep
|
||||
Raw -. Raw Data .-> Trends
|
||||
Raw -. Raw Data .-> Competitor
|
||||
|
||||
Deep -. Findings .-> Wiki
|
||||
Trends -. Findings .-> Wiki
|
||||
Competitor -. Findings .-> Wiki
|
||||
NotebookLM -. Insights .-> Wiki
|
||||
|
||||
Wiki -. Context .-> ContentDomain
|
||||
Wiki -. Context .-> CommunityDomain
|
||||
Wiki -. Context .-> AgencyDomain
|
||||
|
||||
Projects -. Work Items .-> ContentDomain
|
||||
Projects -. Work Items .-> AgencyDomain
|
||||
Projects -. Work Items .-> CommunityDomain
|
||||
|
||||
ContentDomain -. Assets .-> CommunityDomain
|
||||
ContentDomain -. Assets .-> SalesDomain
|
||||
|
||||
CommunityDomain -. Audience Signals .-> ResearchDomain
|
||||
CommunityDomain -. Leads .-> SalesDomain
|
||||
|
||||
SalesDomain -. Opportunities .-> AgencyDomain
|
||||
|
||||
AgencyDomain -. Revenue .-> FinanceDomain
|
||||
|
||||
FinanceDomain -. Budgets .-> AgencyDomain
|
||||
|
||||
OpsDomain -. Automation .-> ResearchDomain
|
||||
OpsDomain -. Automation .-> ContentDomain
|
||||
OpsDomain -. Automation .-> CommunityDomain
|
||||
OpsDomain -. Automation .-> AgencyDomain
|
||||
OpsDomain -. Automation .-> SalesDomain
|
||||
OpsDomain -. Automation .-> FinanceDomain
|
||||
|
||||
%% =====================================================
|
||||
%% COLORS
|
||||
%% =====================================================
|
||||
|
||||
style MemoryDomain fill:#052e16,stroke:#22c55e,stroke-width:3px,color:#ffffff
|
||||
style ProductivityDomain fill:#052e16,stroke:#22c55e,stroke-width:3px,color:#ffffff
|
||||
|
||||
style ResearchDomain fill:#0f172a,stroke:#60a5fa,stroke-width:3px,color:#ffffff
|
||||
style ContentDomain fill:#0f172a,stroke:#60a5fa,stroke-width:3px,color:#ffffff
|
||||
style CommunityDomain fill:#0f172a,stroke:#60a5fa,stroke-width:3px,color:#ffffff
|
||||
style AgencyDomain fill:#0f172a,stroke:#60a5fa,stroke-width:3px,color:#ffffff
|
||||
style SalesDomain fill:#0f172a,stroke:#60a5fa,stroke-width:3px,color:#ffffff
|
||||
style FinanceDomain fill:#0f172a,stroke:#60a5fa,stroke-width:3px,color:#ffffff
|
||||
|
||||
style OpsDomain fill:#3b0764,stroke:#c084fc,stroke-width:3px,color:#ffffff
|
||||
```
|
||||
|
||||
Ten wariant wizualnie odpowiada kolorystyce z obrazka:
|
||||
|
||||
* 🟢 **Memory / Productivity** = fundamenty (always-on)
|
||||
* 🔵 **Research / Content / Community / Agency / Sales / Finance** = capability domains
|
||||
* 🟣 **Ops / Custom** = warstwa administracyjna i automatyzacyjna
|
||||
* Linie przerywane pokazują przepływ wiedzy i artefaktów między domenami.
|
||||
|
||||
Reference in New Issue
Block a user