This commit is contained in:
2025-09-29 09:38:03 +08:00
parent 803a2dc4eb
commit 451efd6d1f
5 changed files with 468 additions and 330 deletions

46
specs/architecture.md Normal file
View File

@@ -0,0 +1,46 @@
# Mycelium Agents Architecture Overview
## Personal Agents
- Every individual has a **Personal Agent (PA)**.
- The PA manages tasks, workflows, and digital life.
- It acts as the secure, sovereign interface to data and AI services.
## Worker Agents
- Specialized agents that execute tasks such as research, coding, analytics, or operations.
- Activated and coordinated by Personal Agents.
## LLMs (Brains)
- Large Language Models provide reasoning, language understanding, and advanced knowledge.
- Accessed by Personal Agents and Worker Agents when higher cognitive capacity is needed.
## Network of Intelligence
- Agents communicate securely with each other.
- Private, encrypted peer-to-peer connections.
- Enables collaboration within and across organizations.
## Data Control
- All data stays under user or organization control.
- Agents use sovereign storage and secure communication.
## Architecture Diagram
```mermaid
%%{init: {'theme':'dark'}}%%
graph TD
H[Human User] --> PA[Personal Agent]
PA --> LLM[(LLM / Brain)]
PA --> WA1[Worker Agent: Research]
PA --> WA2[Worker Agent: Coding]
PA --> WA3[Worker Agent: Analytics]
%% Agents can collaborate
WA1 --- WA2
WA2 --- WA3
PA --- PAX[Other Personal Agent]
```