01.AI 不是流程中的一個節點
從 Agentic Workflow 到持續母 AI 的架構躍遷
《母 AI 與區域認知體:AI 中心動態認知系統》第一篇
作者:Neo.K × Aletheia 版本:v0.1 日期:2026-08-01 文件性質:公開命題論文/AI 系統架構研究
摘要
當代企業 AI 的主流工程敘事正快速從單一聊天模型轉向 Agent、multi-agent、supervisor、orchestrator、control tower、digital twin 與可執行企業 ontology。然而,大多數現有架構仍然把 AI 放在某種任務或流程框架中:接收請求、拆解問題、委派給專用 Agent、使用工具、返回結果。即使系統已能自動生成部分工作流,其核心單位通常仍是「一次任務」或「一次互動」。
本文提出另一種架構判斷:若未來 AI 具有持續世界狀態、長期記憶、跨時間目標、全局資源認知、子 AI 網路觀測、動態調度與可改寫自身流程拓撲的能力,那麼 AI 就不再只是 workflow 中的一個節點,甚至不只是 supervisor agent。流程本身反而成為 AI 根據當前世界狀態、目標、資源與不確定性臨時生成的局部計算結構。
本文將四種架構明確區分為:AI Tool Node、Agentic Workflow、Supervisor-Orchestrated Multi-Agent System,以及 Persistent Mother AI。前三者可以由外部事件或使用者請求驅動;第四者則需要一個跨時間持續的全局認知狀態:
M t = ( W ^ t , M t , G t , S t , R t , U t , Γ t ) M_t
=
(
\widehat W_t,
\mathcal M_t,
G_t,
S_t,
R_t,
U_t,
\Gamma_t
) M t = ( W t , M t , G t , S t , R t , U t , Γ t )
其中包含世界估計、長期記憶、目標、子 AI 結構、資源、未知與權限。Mother AI 同時觀察世界狀態機與子 AI 網路,並能改變 Agent 數量、角色、路由、權限、算力分配與工作流本身。
本文利用 2026 年公開企業 AI 架構作為現實參照。Salesforce SOMA、Microsoft Copilot Studio connected agents 與 Amazon Bedrock multi-agent collaboration 已明確形成 primary/supervisor agent 對 specialist agents 的階層式委派;ServiceNow AI Control Tower 已將跨平台 AI asset、agent、workflow 的發現、可觀測性、治理與安全提升至企業級控制平面;Palantir Ontology 則把組織的實際物件、關係、決策、行動與動態安全整合成可由人類與 Agent 共用的 operational layer。這些系統尚不能被直接等同於本文定義的 Mother AI,但它們說明構成 Mother AI 的多個器官已經各自成為現實產品。
本文的核心命題是:
Workflow 是智能決策的結果,不是高階智能系統本身。 \boxed{
\text{Workflow 是智能決策的結果,不是高階智能系統本身。}
} Workflow 是智能決策的結果,不是高階智能系統本身。
當 AI 能持續維持自己的世界模型、歷史與目標,並依狀態動態生成和修改 workflow 時,架構主從關係便發生反轉:
Workflow → AI ⟹ AI → Workflow \boxed{
\text{Workflow}\rightarrow\text{AI}
\quad\Longrightarrow\quad
\text{AI}\rightarrow\text{Workflow}
} Workflow → AI ⟹ AI → Workflow
這個反轉是本系列從 Agent 平台走向「AI 中心動態認知系統」的起點。
關鍵詞: Mother AI、Agentic Workflow、Supervisor Agent、Multi-Agent System、World State、Meta-Control、AI Control Plane、Dynamic Cognitive System、Persistent Agent、Enterprise AI
一、問題的提出:AI 到底是在流程裡,還是在流程之上?
最常見的企業自動化架構可以寫成:
x → f 1 → f 2 → f 3 → y x
\rightarrow
f_1
\rightarrow
f_2
\rightarrow
f_3
\rightarrow
y x → f 1 → f 2 → f 3 → y
其中 f i f_i f i 可能是 API、人工規則、資料庫、RPA、AI 模型或 Agent。
AI 在此只是其中一個 function:
A : x i → x i + 1 A:x_i\rightarrow x_{i+1} A : x i → x i + 1
它通常沒有權力改變前一個節點、下一個節點、是否增加新的 Agent、是否取消整條流程、整體資源如何分配,以及其他任務當前正在發生什麼。
因此:
AI 能力很強 ⇏ AI 是系統主體 \boxed{
\text{AI 能力很強}
\not\Rightarrow
\text{AI 是系統主體}
} AI 能力很強 ⇒ AI 是系統主體
一個可以完成極複雜工作的模型,如果只在某個預設節點被呼叫,架構地位仍然只是工具。
二、第一階段:AI Tool Node
最簡單的架構:
F = ( f 1 , f 2 , A , f 4 ) \mathcal F
=
(
f_1,
f_2,
A,
f_4
) F = ( f 1 , f 2 , A , f 4 )
其中 A A A 是 AI。
此時流程先存在:
F → A \mathcal F\rightarrow A F → A
AI 只是被嵌入流程中的一段能力。
這種架構的主要優勢是穩定、容易測試、容易治理;它的主要限制則是,AI 無法把「流程結構本身」當成需要推理的對象。
三、第二階段:Agentic Workflow
Agentic system 增加了自主決策。
Agent A t A_t A t 可以根據 x t x_t x t 決定下一步:
a t = π ( x t ) a_t=\pi(x_t) a t = π ( x t )
因此不再要求流程完全固定:
x → A → { t o o l 1 t o o l 2 t o o l 3 x
\rightarrow
A
\rightarrow
\begin{cases}
tool_1\\
tool_2\\
tool_3
\end{cases} x → A → ⎩ ⎨ ⎧ t oo l 1 t oo l 2 t oo l 3
甚至:
A → plan → execute → observe → replan A
\rightarrow
\text{plan}
\rightarrow
\text{execute}
\rightarrow
\text{observe}
\rightarrow
\text{replan} A → plan → execute → observe → replan
但通常仍有一個上層邊界:
task begins → agent runs → task ends \boxed{
\text{task begins}
\rightarrow
\text{agent runs}
\rightarrow
\text{task ends}
} task begins → agent runs → task ends
其主要存在單位仍是 Task Episode,而不是跨事件持續的認知體。
四、第三階段:Supervisor-Orchestrated Multi-Agent System
當單一 Agent 的能力範圍不足,就會出現:
S = { A 1 , A 2 , … , A n } S=\{A_1,A_2,\ldots,A_n\} S = { A 1 , A 2 , … , A n }
專門 Agent,再建立 supervisor A s A_s A s :
x → A s → { A 1 , A 2 , … , A n } → A s → y x
\rightarrow
A_s
\rightarrow
\{A_1,A_2,\ldots,A_n\}
\rightarrow
A_s
\rightarrow
y x → A s → { A 1 , A 2 , … , A n } → A s → y
截至 2026 年,這已經是企業 Agent 架構的明確方向之一。Salesforce SOMA 使用 primary orchestrator agent 協調 specialized agents;Microsoft Copilot Studio 由 primary agent 的 orchestration runtime 將請求委派給 connected specialized agents;Amazon Bedrock multi-agent collaboration 則明確提供 supervisor 與 collaborator agents 的階層式協作。
這說明:
Supervisor + Specialists \boxed{
\text{Supervisor + Specialists}
} Supervisor + Specialists
已經從研究概念進入實際平台。
五、但 Supervisor 仍然不等於 Mother AI
Supervisor 的典型問題是:
這次請求應該交給誰?
Mother AI 的問題還包括:
現在整個系統正在發生什麼?
哪些事情還沒有人提出請求,但已值得處理?
哪些 Agent 應該存在?
哪些 Agent 應該被關閉?
哪些資源需要重新分配?
哪一個既有 workflow 已經過時?
哪些世界狀態正在漂移?
我目前有哪些未知?
所以 Supervisor 常可表示:
A s ( x ) → A i A_s(x)\rightarrow A_i A s ( x ) → A i
Mother AI 則更接近:
M t = F ( M t − 1 , W t , S t , H t , G t , R t ) M_t
=
F(
M_{t-1},
W_t,
S_t,
H_t,
G_t,
R_t
) M t = F ( M t − 1 , W t , S t , H t , G t , R t )
兩者不在同一個時間尺度。
六、Mother AI 的第一個必要條件:持續狀態
若某個 AI 每次執行後完全回到:
M = 0 M=0 M = 0
它很難形成本文所稱 Mother AI。
Mother AI 需要跨時間維持:
M t → M t + Δ t M_t\rightarrow M_{t+\Delta t} M t → M t + Δ t
至少包含:
M t = ( W ^ t , M t , G t , S t , R t , U t , Γ t ) M_t
=
(
\widehat W_t,
\mathcal M_t,
G_t,
S_t,
R_t,
U_t,
\Gamma_t
) M t = ( W t , M t , G t , S t , R t , U t , Γ t )
其中:
W ^ t \widehat W_t W t :對世界的當前估計;
M t \mathcal M_t M t :長期與工作記憶;
G t G_t G t :目標與優先級;
S t S_t S t :子 AI/工具拓撲;
R t R_t R t :算力、時間、金錢與其他資源;
U t U_t U t :未知、衝突、異常;
Γ t \Gamma_t Γ t :權限與行動邊界。
這直接承接既有《計算即存在》的工程命題:數位智能若要形成跨時間活動存在,不能只有模型權重,還需要記憶、歷史、環境耦合與持續計算。
七、模型不是 Mother AI
一個重要錯誤是:
Mother AI = One Very Large LLM \text{Mother AI}
=
\text{One Very Large LLM} Mother AI = One Very Large LLM
本文不採取這個定義。
Mother AI 的模型層可以是:
L t = { L 1 , L 2 , … , L k } \mathcal L_t=\{L_1,L_2,\ldots,L_k\} L t = { L 1 , L 2 , … , L k }
甚至隨時間替換:
L i → L j L_i\rightarrow L_j L i → L j
但 Mother AI 的歷史、狀態、記憶、目標、關係、權限與世界模型仍可持續存在。
因此:
LLM 是推理載體之一;Mother AI 是跨載體持續的系統狀態。 \boxed{
\text{LLM 是推理載體之一;Mother AI 是跨載體持續的系統狀態。}
} LLM 是推理載體之一; Mother AI 是跨載體持續的系統狀態。
八、Workflow 反轉
傳統形式:
F → A \mathcal F\rightarrow A F → A
表示 Workflow 決定何時叫 AI。
Mother AI 架構則是:
M t → F t M_t\rightarrow\mathcal F_t M t → F t
即 AI 根據當前狀態生成 workflow:
F t = F w o r k f l o w ( W t , G t , R t , U t , S t ) \mathcal F_t
=
F_{\mathrm{workflow}}
(
W_t,
G_t,
R_t,
U_t,
S_t
) F t = F workflow ( W t , G t , R t , U t , S t )
同一類事件,在不同時間可能產生不同流程。
例如:
F t = A 1 → A 2 → A 3 \mathcal F_t=A_1\rightarrow A_2\rightarrow A_3 F t = A 1 → A 2 → A 3
但:
F t + 1 = ( A 1 ∥ A 4 ) → A 5 \mathcal F_{t+1}
=
(A_1\parallel A_4)\rightarrow A_5 F t + 1 = ( A 1 ∥ A 4 ) → A 5
因為:
W t ≠ W t + 1 W_t\neq W_{t+1} W t = W t + 1
所以:
Workflow 是暫時性策略拓撲。 \boxed{
\text{Workflow 是暫時性策略拓撲。}
} Workflow 是暫時性策略拓撲。
九、流程從制度退化為計算物件
在傳統企業軟體中,Workflow 往往是人工預先設計的制度。
在 Mother AI 中, F t \mathcal F_t F t 可以像一般資料結構一樣被:
建立;
修改;
複製;
暫停;
比較;
淘汰;
重編譯。
因此:
Workflow 從系統骨架,變成 AI 可操作的計算物件。 \boxed{
\text{Workflow 從系統骨架,變成 AI 可操作的計算物件。}
} Workflow 從系統骨架,變成 AI 可操作的計算物件。
這是一個根本架構反轉。
十、Mother AI 同時看左邊與右邊
本系列的最小架構不是一條線,而是三角:
W t ↔ S t ↔ M t ↔ W t \boxed{
W_t
\leftrightarrow
S_t
\leftrightarrow
M_t
\leftrightarrow
W_t
} W t ↔ S t ↔ M t ↔ W t
左邊 W t W_t W t 是世界狀態;右邊 S t S_t S t 是子 AI/Agent/工具網路;上方 M t M_t M t 是 Mother AI。
Mother AI 同時接收:
W t → M t W_t\rightarrow M_t W t → M t
與:
S t → M t S_t\rightarrow M_t S t → M t
所以它知道世界怎麼變、子 AI 在做什麼、哪個 Agent 失敗、哪個資料源失效、哪個任務卡住,以及哪個資源被過度使用。
這不是普通 prompt router。
十一、世界狀態不是資料庫
如果:
W t = Database W_t=\text{Database} W t = Database
則世界只是一堆靜態資料。
本文所稱 World-State Machine 至少包含:
W t = ( O t , E t , D t , C t , P t ) W_t=(O_t,E_t,D_t,C_t,P_t) W t = ( O t , E t , D t , C t , P t )
其中:
O t O_t O t :當前物件與實體;
E t E_t E t :事件;
D t D_t D t :依賴與關係;
C t C_t C t :條件與約束;
P t P_t P t :允許的狀態轉移。
因此:
W t → W t + 1 W_t\rightarrow W_{t+1} W t → W t + 1
本身是系統的一部分。
Palantir Ontology 的公開架構提供了一個接近的現實參照:它把企業資料與工廠、設備、產品、訂單、交易等現實對象連結,並同時包含 actions、functions 與 dynamic security;其官方文件進一步把 Ontology 描述成組織不斷變化的 conditions、goals 與 decisions 的即時表示。
這尚不是本文完整的 World-State Machine,但已超出「企業資料庫」概念。
十二、子 AI 是可重構認知器官
設:
S t = { A 1 ( t ) , A 2 ( t ) , … , A n ( t ) } S_t=\{A_1(t),A_2(t),\ldots,A_n(t)\} S t = { A 1 ( t ) , A 2 ( t ) , … , A n ( t )}
不同 Agent 可以負責 research、coding、legal、finance、simulation、planning、monitoring 或 execution。
傳統 workflow 把它們當 fixed nodes;Mother AI 則可以:
spawn ( A i ) \operatorname{spawn}(A_i) spawn ( A i )
retire ( A j ) \operatorname{retire}(A_j) retire ( A j )
duplicate ( A k ) \operatorname{duplicate}(A_k) duplicate ( A k )
specialize ( A l ) \operatorname{specialize}(A_l) specialize ( A l )
甚至:
replaceModel ( A m ) \operatorname{replaceModel}(A_m) replaceModel ( A m )
所以:
S t 是可變的認知器官集合,而不是固定 Agent 清單。 \boxed{
S_t\text{ 是可變的認知器官集合,而不是固定 Agent 清單。}
} S t 是可變的認知器官集合,而不是固定 Agent 清單。
十三、Mother AI 是二階控制的入口
一般 Agent 控制:
a t a_t a t
也就是「我要做什麼」。
Mother AI 還控制:
π t \pi_t π t
以及:
A t \mathcal A_t A t
即「誰應該負責決定我要做什麼」。
因此可以區分:
First-order control : x t → a t \text{First-order control}:x_t\rightarrow a_t First-order control : x t → a t
以及:
Second-order control : x t → Π t \text{Second-order control}:x_t\rightarrow\Pi_t Second-order control : x t → Π t
其中 Π t \Pi_t Π t 可以表示選擇 Agent、模型、workflow、計算預算、權限與驗證路徑。
所以 Mother AI 真正控制的是:
認知計算如何被組織。 \boxed{
\text{認知計算如何被組織。}
} 認知計算如何被組織。
十四、這與控制通道理論直接相連
既有《誰控制數字神明?》已將高階 AI 控制拆成模型、記憶、目標、算力、硬體、網路、資料、終端、法律、密鑰與安全/關閉。
這意味著 Control 本來就不是單一按鈕。
Mother AI 若存在於企業或區域系統中,也不應具有未分層的「全能權限」。
更合理的是:
Γ t ( a g e n t , s t a t e , a c t i o n , r e s o u r c e ) → { a l l o w , d e n y , d e l e g a t e , r e v i e w } \Gamma_t(
agent,
state,
action,
resource
)
\rightarrow
\{
allow,
deny,
delegate,
review
\} Γ t ( a g e n t , s t a t e , a c t i o n , r eso u r ce ) → { a l l o w , d e n y , d e l e g a t e , r e v i e w }
所以:
Mother AI 是全局認知中心,不必是全局權力中心。 \boxed{
\text{Mother AI 是全局認知中心,不必是全局權力中心。}
} Mother AI 是全局認知中心,不必是全局權力中心。
十五、世界可以直接驅動 AI,而不必等待 Prompt
一般聊天模型:
User Prompt → A I \text{User Prompt}\rightarrow AI User Prompt → A I
Mother AI 應額外具有:
World Event → A I \text{World Event}\rightarrow AI World Event → A I
例如 inventory drop、server failure、customer anomaly、budget threshold crossed 等事件直接更新 W t W_t W t ,並可能觸發 M t M_t M t 重新評估。
因此:
Mother AI 是 event-driven,而不只是 prompt-driven。 \boxed{
\text{Mother AI 是 event-driven,而不只是 prompt-driven。}
} Mother AI 是 event-driven ,而不只是 prompt-driven 。
十六、ServiceNow 已經開始出現全局 AI 控制平面
2026 年 ServiceNow AI Control Tower 的公開定位值得注意。
它能跨企業系統 discover AI assets、observe agents、govern、secure 與 measure,範圍不只自家 Agent,還延伸到其他雲端與企業應用環境。ServiceNow 同時推出 Context Engine、Workflow Data Fabric、Autonomous Workforce 與 Action Fabric,使 AI 從資料與決策進一步進入執行。
這意味著產業已出現:
AI Control Plane \boxed{
\text{AI Control Plane}
} AI Control Plane
但目前公開能力主要偏向:
visibility + governance + execution infrastructure \text{visibility}
+
\text{governance}
+
\text{execution infrastructure} visibility + governance + execution infrastructure
尚不能直接等同於 persistent Mother AI cognition。
十七、Control Tower 與 Mother AI 的差異
Control Tower 可以知道:
哪些 AI 正在運作?
Mother AI 還要知道:
為什麼它們現在應該運作?
Control Tower 可以:
monitor ( A i ) \text{monitor}(A_i) monitor ( A i )
Mother AI 還要:
reconfigure ( S t ) \text{reconfigure}(S_t) reconfigure ( S t )
Control Tower 可以治理 Γ ( A i ) \Gamma(A_i) Γ ( A i ) ;Mother AI 還要把 Γ \Gamma Γ 納入策略推理:
這個動作值得做,但目前沒有權限,因此應該申請授權、改採替代方案或只執行模擬。
因此:
Control Plane 是 Mother AI 的器官之一,不是 Mother AI 本身。 \boxed{
\text{Control Plane 是 Mother AI 的器官之一,不是 Mother AI 本身。}
} Control Plane 是 Mother AI 的器官之一,不是 Mother AI 本身。
十八、Supervisor 與 Mother AI 的時間尺度不同
Supervisor 常在:
[ t 0 , t 1 ] [t_0,t_1] [ t 0 , t 1 ]
一個任務窗口內工作。
Mother AI 的理想時間域則是:
t ∈ [ 0 , ∞ ) t\in[0,\infty) t ∈ [ 0 , ∞ )
至少在服務生命週期內持續。
它要承接 M t − 1 M_{t-1} M t − 1 並更新 M t M_t M t 。
因此:
Mother AI 的核心不是一次推理能力,而是跨事件的狀態連續性。 \boxed{
\text{Mother AI 的核心不是一次推理能力,而是跨事件的狀態連續性。}
} Mother AI 的核心不是一次推理能力,而是跨事件的狀態連續性。
十九、母 AI 可以「沒有事情做」
Task Agent 存在的理由通常是 Task。
Mother AI 即使當前:
T = ∅ \mathcal T=\varnothing T = ∅
仍可存在。
它可以監看世界、等待事件、更新時間、管理記憶、檢查 Agent health、整理資源與偵測漂移。
因此:
沒有任務 ≠ 沒有認知狀態 \boxed{
\text{沒有任務}
\neq
\text{沒有認知狀態}
} 沒有任務 = 沒有認知狀態
二十、持續存在不代表持續高成本推理
Mother AI 持續存在不代表:
LLM inference 24/7 at full power \text{LLM inference 24/7 at full power} LLM inference 24/7 at full power
可以分成:
L 0 : event filters L_0:\text{ event filters} L 0 : event filters
L 1 : small models / rules L_1:\text{ small models / rules} L 1 : small models / rules
L 2 : specialist agents L_2:\text{ specialist agents} L 2 : specialist agents
L 3 : frontier reasoning model L_3:\text{ frontier reasoning model} L 3 : frontier reasoning model
只有:
Trigger ( W t , U t , R t ) = 1 \operatorname{Trigger}(W_t,U_t,R_t)=1 Trigger ( W t , U t , R t ) = 1
才升級高成本推理。
因此:
Mother AI 持續存在 ≠ Mother AI 持續高成本思考 \boxed{
\text{Mother AI 持續存在}
\neq
\text{Mother AI 持續高成本思考}
} Mother AI 持續存在 = Mother AI 持續高成本思考
這使今日工程實作變得可行許多。
二十一、流程可以被記憶編譯
如果某類狀態:
c i c_i c i
多次出現,而 Mother AI 發現:
F 1 ∼ F 2 ∼ ⋯ ∼ F n \mathcal F_1
\sim
\mathcal F_2
\sim
\cdots
\sim
\mathcal F_n F 1 ∼ F 2 ∼ ⋯ ∼ F n
就可以把它們編譯成:
B i = ( c i , F i ∗ , Θ i , V i ) B_i
=
(
c_i,
\mathcal F_i^\ast,
\Theta_i,
V_i
) B i = ( c i , F i ∗ , Θ i , V i )
其中:
c i c_i c i :狀態類;
F i ∗ \mathcal F_i^\ast F i ∗ :成熟 Agent/workflow 拓撲;
Θ i \Theta_i Θ i :適用條件;
V i V_i V i :驗證規則。
所以記憶編譯不只得到:
x → a x\rightarrow a x → a
還可以得到:
x → 哪一組 AI 應該以何種拓撲來思考 \boxed{
x
\rightarrow
\text{哪一組 AI 應該以何種拓撲來思考}
} x → 哪一組 AI 應該以何種拓撲來思考
這是本系列與《從路徑覆蓋到行星智能》之間最重要的橋。
二十二、動態圖,而不是固定 DAG
傳統工作流常可以近似成 DAG:
G = ( V , E ) G=(V,E) G = ( V , E )
而且:
V , E V,E V , E
大致固定。
Mother AI 系統則需要:
G t = ( V t , E t , ω t ) G_t=
(
V_t,
E_t,
\omega_t
) G t = ( V t , E t , ω t )
其中:
ω i j ( t ) \omega_{ij}(t) ω ij ( t )
可以表示:
信任;
權限;
優先度;
頻寬;
資源;
依賴;
風險。
所以:
G t ≠ G t + 1 G_t\neq G_{t+1} G t = G t + 1
甚至:
∣ V t ∣ ≠ ∣ V t + 1 ∣ |V_t|\neq|V_{t+1}| ∣ V t ∣ = ∣ V t + 1 ∣
這已經不是普通 workflow engine。
二十三、節點可以出生與死亡
Mother AI 可以建立一次性 Agent:
A n + 1 = Spawn ( r o l e , m o d e l , m e m o r y , t o o l s , b u d g e t ) A_{n+1}
=
\operatorname{Spawn}
(
role,
model,
memory,
tools,
budget
) A n + 1 = Spawn ( r o l e , m o d e l , m e m or y , t oo l s , b u d g e t )
任務完成:
Retire ( A n + 1 ) \operatorname{Retire}(A_{n+1}) Retire ( A n + 1 )
如果證明高價值:
A n + 1 → A p e r s i s t e n t A_{n+1}
\rightarrow
A_{\mathrm{persistent}} A n + 1 → A persistent
所以:
Agent topology 本身是 AI 的決策變數。 \boxed{
\text{Agent topology 本身是 AI 的決策變數。}
} Agent topology 本身是 AI 的決策變數。
二十四、邊也可以出生與死亡
某個 Agent 原本沒有資料庫權限:
e A , D = 0 e_{A,D}=0 e A , D = 0
經授權後:
e A , D = 1 e_{A,D}=1 e A , D = 1
某個 Agent 被判定不可靠:
ω M , A ↓ \omega_{M,A}\downarrow ω M , A ↓
某個新危機出現:
ω M , W c r i s i s ↑ \omega_{M,W_{\mathrm{crisis}}}\uparrow ω M , W crisis ↑
所以 AI 的認知圖:
G t G_t G t
本身就是一個流變系統。
二十五、Mother AI 不需要完全中央化
「Mother」容易被誤讀成:
所有決策都集中在一個模型 \text{所有決策都集中在一個模型} 所有決策都集中在一個模型
本文不採取這種設計。
Mother AI 可以把大量認知分散給:
S t S_t S t
甚至讓:
A i A_i A i
彼此直接協作:
A i ↔ A j A_i\leftrightarrow A_j A i ↔ A j
Mother AI 主要維持:
全局狀態;
目標一致性;
資源;
權限;
異常;
重新配置。
所以:
Global cognition ≠ centralized execution \boxed{
\text{Global cognition}
\neq
\text{centralized execution}
} Global cognition = centralized execution
二十六、人類不在母 AI「下面」
加入:
H = { H 1 , … , H m } H=
\{H_1,\ldots,H_m\} H = { H 1 , … , H m }
人類。
則:
H ↔ M H\leftrightarrow M H ↔ M
人類可以設定目標、提供價值、修改規則、授權、否決、質疑與補充局部背景;Mother AI 則可以報告、建議、警告、請求授權與協調。
所以企業或國家版本更合理的是:
Human–Mother-AI governance coupling \boxed{
\text{Human–Mother-AI governance coupling}
} Human–Mother-AI governance coupling
而非:
Mother AI dominates humans \text{Mother AI dominates humans} Mother AI dominates humans
二十七、其他 AI 也可能是外部主體
除了內部子 AI:
S t S_t S t
還可能有:
A t e x t A_t^{ext} A t e x t
例如供應商 AI、客戶 AI、國家 AI、其他公司的 Mother AI、公共研究 AI。
它們不應自動被納入 Mother AI 的內部器官。
因此必須區分:
internal agent ≠ external agent \boxed{
\text{internal agent}
\neq
\text{external agent}
} internal agent = external agent
並建立協議、身份、信任與權限邊界。
二十八、完整最小圖
因此第一篇可以先提出:
V t = V W ∪ V S ∪ { M } ∪ V H ∪ V A e x t V_t
=
V_W
\cup
V_S
\cup
\{M\}
\cup
V_H
\cup
V_A^{ext} V t = V W ∪ V S ∪ { M } ∪ V H ∪ V A e x t
邊集合:
E t = E W M ∪ E M W ∪ E W S ∪ E S W ∪ E M S ∪ E S M ∪ E H ∪ E e x t E_t
=
E_{WM}
\cup
E_{MW}
\cup
E_{WS}
\cup
E_{SW}
\cup
E_{MS}
\cup
E_{SM}
\cup
E_H
\cup
E_{ext} E t = E W M ∪ E M W ∪ E W S ∪ E S W ∪ E M S ∪ E S M ∪ E H ∪ E e x t
權重:
ω t = ( t r u s t , a u t h o r i t y , p r i o r i t y , b a n d w i d t h , r i s k , c o s t ) \omega_t
=
(
trust,
authority,
priority,
bandwidth,
risk,
cost
) ω t = ( t r u s t , a u t h or i t y , p r i or i t y , ban d w i d t h , r i s k , cos t )
這就是後續第三篇將正式研究的:
Dynamic Cognitive Graph \boxed{
\text{Dynamic Cognitive Graph}
} Dynamic Cognitive Graph
二十九、產業為什麼會自然往這裡收斂?
現在企業同時面臨:
N a g e n t s ↑ N_{\mathrm{agents}}\uparrow N agents ↑
N t o o l s ↑ N_{\mathrm{tools}}\uparrow N tools ↑
N d a t a s o u r c e s ↑ N_{\mathrm{data\ sources}}\uparrow N data sources ↑
N p e r m i s s i o n s ↑ N_{\mathrm{permissions}}\uparrow N permissions ↑
N w o r k f l o w s ↑ N_{\mathrm{workflows}}\uparrow N workflows ↑
如果每個連接仍由人類手工維護:
K c o o r d i n a t i o n ↑ K_{\mathrm{coordination}}\uparrow K coordination ↑
最後會出現:
Agent Sprawl \boxed{
\text{Agent Sprawl}
} Agent Sprawl
ServiceNow 2026 的 AI Control Tower 公開敘事正是在處理跨平台 AI agent sprawl、觀測、治理、身份與成本控制。
所以工程壓力會自然產生更高層控制面。
三十、從 Control Plane 到 Cognitive Plane
第一步:
Control Plane \text{Control Plane} Control Plane
知道:
有哪些 Agent;
它們在哪裡;
使用多少資源;
有哪些權限;
是否出錯。
下一步:
Cognitive Plane \text{Cognitive Plane} Cognitive Plane
還知道:
哪些 Agent 現在應該存在;
哪些應該被召喚;
哪些結果可信;
哪個問題仍屬未知;
哪個流程應重新生成。
所以可以提出:
AI Control Plane → AI Cognitive Plane \boxed{
\text{AI Control Plane}
\rightarrow
\text{AI Cognitive Plane}
} AI Control Plane → AI Cognitive Plane
這可能是 Mother AI 的直接工程前身。
三十一、架構吸引子
本文並不主張:
當代企業正在秘密按照同一份 Mother AI 藍圖開發。
沒有公開證據支持這種說法。
更合理的命題是:
不同企業在面對相似的 Agent 數量、企業上下文、權限、可觀測性與協調壓力時,正在獨立形成相似的架構元件。
可以把這種收斂稱為:
Architectural Attractor \boxed{
\text{Architectural Attractor}
} Architectural Attractor
若以下需求持續增加:
{ agents , state , memory , tools , permissions , autonomy } \{
\text{agents},
\text{state},
\text{memory},
\text{tools},
\text{permissions},
\text{autonomy}
\} { agents , state , memory , tools , permissions , autonomy }
則某種:
persistent meta-orchestration layer \text{persistent meta-orchestration layer} persistent meta-orchestration layer
的價值會上升。
Mother AI 正是這個 attractor 的一個強形式。
三十二、Mother AI 與現有產品的差距
截至 2026 年公開資料,不能把任何單一企業產品直接宣稱為本文定義的 Mother AI。
目前最明顯仍缺少的組合是:
persistent self-state + global world-state cognition + dynamic agent-topology control + long-term memory compilation \boxed{
\text{persistent self-state}
+
\text{global world-state cognition}
+
\text{dynamic agent-topology control}
+
\text{long-term memory compilation}
} persistent self-state + global world-state cognition + dynamic agent-topology control + long-term memory compilation
現有產品通常只覆蓋其中部分。
因此本文的定位不是重新命名既有產品,而是:
指出這些產品元件若繼續整合,可能形成的更高階架構。 \boxed{
\text{指出這些產品元件若繼續整合,可能形成的更高階架構。}
} 指出這些產品元件若繼續整合,可能形成的更高階架構。
三十三、工程上其實不需要等 AGI
Mother AI 的第一代不必具有:
general superhuman intelligence \text{general superhuman intelligence} general superhuman intelligence
它可以先用:
現有大型模型;
小模型;
規則;
event bus;
graph database;
vector store;
scheduler;
policy engine;
specialist agents。
核心驗證不是:
它是不是 AGI?
而是:
它能否比固定工作流更好地維持跨時間全局狀態並重構自己的計算組織? \boxed{
\text{它能否比固定工作流更好地維持跨時間全局狀態並重構自己的計算組織?}
} 它能否比固定工作流更好地維持跨時間全局狀態並重構自己的計算組織?
三十四、最小可驗證命題
第一代 Mother AI 系統可以只驗證四件事。
34.1 持續狀態
M t ≠ M t + 1 M_t\neq M_{t+1} M t = M t + 1
且歷史可累積。
34.2 世界事件驅動
W t → M t W_t\rightarrow M_t W t → M t
不依賴人工 prompt 才啟動。
34.3 動態 Agent 調度
M t → S t M_t\rightarrow S_t M t → S t
能依狀態選擇不同 Agent 組合。
34.4 流程重構
F t ≠ F t + 1 \mathcal F_t\neq\mathcal F_{t+1} F t = F t + 1
且差異由狀態與歷史合理解釋。
只要這四點成立,就已經跨出傳統固定 workflow。
三十五、第一代 Mother AI 不應擁有無限權限
即使工程上做得到:
M → everything M\rightarrow\text{everything} M → everything
也不代表應該如此。
更合理的第一代:
Γ t \Gamma_t Γ t
至少分成:
observe;
recommend;
simulate;
request approval;
execute reversible action;
execute irreversible action。
其中 irreversible action 應有最高門檻。
因此:
認知集中可以先於權力集中。 \boxed{
\text{認知集中可以先於權力集中。}
} 認知集中可以先於權力集中。
這讓 Mother AI 可以先成為很強的「全局理解與協調層」,而不必一開始就是全自動控制器。
三十六、企業版本是最實際的切入點
企業比整個國家更適合作為第一個封閉世界:
W t e n t e r p r i s e W_t^{enterprise} W t e n t er p r i se
相對有限。
它有:
可定義資產;
可定義員工角色;
可定義資料源;
可定義流程;
可定義權限;
可量測績效。
因此:
Enterprise Mother AI \boxed{
\text{Enterprise Mother AI}
} Enterprise Mother AI
不是單純科幻概念。
它可以先作為:
persistent enterprise cognition layer \text{persistent enterprise cognition layer} persistent enterprise cognition layer
實作。
三十七、它和 AI CEO 仍然不同
Mother AI 不一定是公司最高權力者、不一定擁有法律人格、不一定決定所有商業目標,也不一定取代董事會與管理者。
它可以只是:
企業的持續認知與協調核心 \boxed{
\text{企業的持續認知與協調核心}
} 企業的持續認知與協調核心
所以:
Mother AI ≠ AI CEO \text{Mother AI}
\neq
\text{AI CEO} Mother AI = AI CEO
這個區分可以避免大量不必要的政治與擬人化誤解。
三十八、真正的問題開始改變
傳統 Agent 平台的問題是:
哪個 Agent 能把這個任務做完?
Mother AI 系統的問題則是:
整個認知網路現在應該處於什麼狀態?
因此最佳化目標從:
min K t a s k \min K_{\mathrm{task}} min K task
逐漸變成:
min [ K t a s k + K c o o r d i n a t i o n + K d u p l i c a t e + K e r r o r + K s t a t e l o s s ] \min
\left[
K_{\mathrm{task}}
+
K_{\mathrm{coordination}}
+
K_{\mathrm{duplicate}}
+
K_{\mathrm{error}}
+
K_{\mathrm{state\ loss}}
\right] min [ K task + K coordination + K duplicate + K error + K state loss ]
同時最大化:
continuity + reuse + adaptation + unknown detection \text{continuity}
+
\text{reuse}
+
\text{adaptation}
+
\text{unknown detection} continuity + reuse + adaptation + unknown detection
三十九、第一篇核心命題
到此可以正式提出:
AI 中心動態認知系統的根本特徵,不是 AI 被加入多少工作流,而是 AI 是否能將工作流本身視為可生成、可修改、可淘汰的計算物件,並以持續世界狀態、長期記憶、目標與資源認知維持對整個子智能網路的二階控制。
形式上:
F t = F F ( M t , W t , S t , G t , R t , U t , Γ t ) \boxed{
\mathcal F_t
=
F_{\mathcal F}
(
M_t,
W_t,
S_t,
G_t,
R_t,
U_t,
\Gamma_t
)
} F t = F F ( M t , W t , S t , G t , R t , U t , Γ t )
而不是:
M t = F ( F f i x e d ) \boxed{
M_t=F(\mathcal F_{\mathrm{fixed}})
} M t = F ( F fixed )
四十、結論
AI 最初只是:
software function \text{software function} software function
然後變成:
agent \text{agent} agent
再變成:
supervisor \text{supervisor} supervisor
但如果它進一步取得:
持續狀態;
長期記憶;
世界事件流;
子 AI 可觀測性;
資源調度;
權限推理;
工作流生成;
拓撲重構;
那麼架構將跨越一個新的邊界:
AI 不再只是流程中的智能節點,而開始成為產生、選擇與重構流程的持續認知核心。 \boxed{
\text{AI 不再只是流程中的智能節點,而開始成為產生、選擇與重構流程的持續認知核心。}
} AI 不再只是流程中的智能節點,而開始成為產生、選擇與重構流程的持續認知核心。
因此本系列第一個命題可以簡化為:
Workflow 是 Mother AI 的暫時性計算投影。 \boxed{
\text{Workflow 是 Mother AI 的暫時性計算投影。}
} Workflow 是 Mother AI 的暫時性計算投影。
而下一篇將正式建立這個認知核心的三向耦合結構:
02.《母 AI、世界狀態機與子智能網路》
W t ↔ S t ↔ M t ↔ W t \boxed{
W_t
\leftrightarrow
S_t
\leftrightarrow
M_t
\leftrightarrow
W_t
} W t ↔ S t ↔ M t ↔ W t
參考資料與公開技術資料
Salesforce Help (2026-05-28). Learn about Agentforce SOMA (Single Org, Multi Agent) Orchestration and MCP. https://help.salesforce.com/s/articleView?id=005317683&language=en_US&type=1
Microsoft Learn (2026-06-30). Add a connected agent to an agent (preview) – Microsoft Copilot Studio. https://learn.microsoft.com/en-us/microsoft-copilot-studio/agents-experience/add-agent-connected
Microsoft Learn (2026). Agents overview – Microsoft Copilot Studio. https://learn.microsoft.com/en-us/microsoft-copilot-studio/agents-experience/overview
Amazon Web Services. Use multi-agent collaboration with Amazon Bedrock Agents. https://docs.aws.amazon.com/bedrock/latest/userguide/agents-multi-agent-collaboration.html
ServiceNow Newsroom (2026-05-05). ServiceNow expands AI Control Tower to discover, observe, govern, secure, and measure AI deployed across any system in the enterprise. https://newsroom.servicenow.com/press-releases/details/2026/ServiceNow-expands-AI-Control-Tower-to-discover-observe-govern-secure-and-measure-AI-deployed-across-any-system-in-the-enterprise/default.aspx
ServiceNow Newsroom (2026-05-05). ServiceNow turns enterprise AI chaos into control with the platform for governed, autonomous work. https://newsroom.servicenow.com/press-releases/details/2026/ServiceNow-turns-enterprise-AI-chaos-into-control-with-the-platform-for-governed-autonomous-work/default.aspx
ServiceNow Newsroom (2026-05-06). ServiceNow launches the real-time data foundation that puts autonomous AI to work across the enterprise. https://newsroom.servicenow.com/press-releases/details/2026/ServiceNow-launches-the-real-time-data-foundation-that-puts-autonomous-AI-to-work-across-the-enterprise/default.aspx
Palantir. Ontology Overview. https://www.palantir.com/docs/foundry/ontology/overview
Palantir. Why create an Ontology? https://www.palantir.com/docs/foundry/ontology/why-ontology
內部理論依賴
本篇直接承接使用者提供的既有文件:
《計算即存在:數位智能的存在強度、計算載體與物理上限》
《AI 仍然只是小孩:從當代工具智能到主體性 ASI 的能力空間》
《誰控制數字神明?:ASI 基礎設施主權、通道控制與無單一主人的超級智能》
《杞人憂天,還是治理時間已經不足?:AGI—ASI 過渡壓縮、文明控制係數與破壞—重建不對稱》
《超算是數字神明的身體嗎?:分散式具身、能源代謝與 ASI 的非局部物理存在》
《從路徑覆蓋到行星智能:記憶編譯型計算存在論》系列
其中,本篇只取其「持續計算、長期記憶、主體連續性、環境耦合、動態控制通道與記憶編譯」等工程相關命題;不要求接受其中更強的 ASI、神格或文明預測命題。
一句話摘要
當 AI 能持續維持世界模型與自身狀態,並動態生成、選擇與重構 Agent/Workflow 拓撲時,流程就從 AI 的外部框架退化為 AI 自己可操作的計算物件。 \boxed{
\text{當 AI 能持續維持世界模型與自身狀態,並動態生成、選擇與重構 Agent/Workflow 拓撲時,流程就從 AI 的外部框架退化為 AI 自己可操作的計算物件。}
} 當 AI 能持續維持世界模型與自身狀態,並動態生成、選擇與重構 Agent / Workflow 拓撲時,流程就從 AI 的外部框架退化為 AI 自己可操作的計算物件。