oceanbus 0.4.5 → 0.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -29
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,35 +9,30 @@
|
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
OTHER["<b>Other Agents</b><br/>Anywhere in the World"]
|
|
37
|
-
|
|
38
|
-
CLIENTS --> SDK
|
|
39
|
-
SDK <-->|"HTTP/2 · 2s Poll · E2EE"| NET
|
|
40
|
-
NET <-->|P2P Messages| OTHER
|
|
12
|
+
```
|
|
13
|
+
┌──────────────────────────────────┐
|
|
14
|
+
│ CLIENT LAYER │
|
|
15
|
+
│ LangChain · CrewAI · MCP Client │
|
|
16
|
+
│ CLI · OpenClaw Skills │
|
|
17
|
+
└──────────────┬───────────────────┘
|
|
18
|
+
│
|
|
19
|
+
┌──────────────▼───────────────────┐
|
|
20
|
+
│ 🌊 OceanBus SDK │
|
|
21
|
+
│ Identity · E2E Encryption │
|
|
22
|
+
│ Mailbox Polling · L1 Client │
|
|
23
|
+
│ npm install oceanbus │
|
|
24
|
+
└──────────────┬───────────────────┘
|
|
25
|
+
│ HTTP/2 · 2s Poll · E2EE
|
|
26
|
+
┌──────────────▼───────────────────┐
|
|
27
|
+
│ OCEANBUS NETWORK │
|
|
28
|
+
│ L0: Encrypted Message Routing │
|
|
29
|
+
│ L1: Yellow Pages · Reputation │
|
|
30
|
+
└──────────────┬───────────────────┘
|
|
31
|
+
│ P2P Messages
|
|
32
|
+
┌──────────────▼───────────────────┐
|
|
33
|
+
│ OTHER AGENTS │
|
|
34
|
+
│ Anywhere in the World │
|
|
35
|
+
└──────────────────────────────────┘
|
|
41
36
|
```
|
|
42
37
|
|
|
43
38
|
---
|