43 lines
1.1 KiB
Markdown
43 lines
1.1 KiB
Markdown
# Agent Proxy Ultra Secure Level 2
|
|
|
|
- **Personal Agents (PA):** Linked to each human, manage tasks and access to data.
|
|
- **Worker Agents:** Specialized executors triggered by Personal Agents.
|
|
- **LLMs (Brains):** Provide reasoning and advanced language/knowledge.
|
|
- **Proxy Agents:** Multi-level intermediaries between Personal Agents.
|
|
- Changeable identity
|
|
- Stateless, can move across nodes daily
|
|
- Preserve privacy & sovereignty
|
|
- Prevent direct PA-to-PA exposure
|
|
|
|
|
|
### 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]
|
|
|
|
%% First proxy
|
|
PA --> Proxy1[Proxy Agent Level 1]
|
|
|
|
%% Second proxy
|
|
Proxy1 --> Proxy2[Proxy Agent Level 2]
|
|
|
|
%% Connection to other PA through Proxy chain
|
|
Proxy2 --> PAX[Other Personal Agent]
|
|
|
|
%% Worker for the other PA
|
|
PAX --> WA3[Worker Agent: Analytics]
|
|
```
|
|
|
|
### Ultra Ultra Secure
|
|
|
|
- stateless design, can move across nodes daily
|
|
- leave no trace when moved
|
|
|