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.
Files changed (2) hide show
  1. package/README.md +24 -29
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,35 +9,30 @@
9
9
 
10
10
  ---
11
11
 
12
- ```mermaid
13
- graph TB
14
- subgraph CLIENTS["<b>Client Layer</b>"]
15
- direction LR
16
- LANG["LangChain / CrewAI"]
17
- MCP_["MCP Client<br/>Claude Desktop · Cursor"]
18
- CLI_["CLI<br/>oceanbus send/listen"]
19
- SKILL["OpenClaw Skills<br/>Ocean Chat · Ocean Agent<br/>Captain Lobster · Guess AI"]
20
- end
21
-
22
- subgraph SDK["<b>🌊 OceanBus SDK</b> <i>npm install oceanbus</i>"]
23
- direction LR
24
- ID["Identity<br/>Ed25519 Keys"]
25
- ENC["E2E Encryption<br/>XChaCha20-Poly1305"]
26
- POLL["Mailbox<br/>HTTP Poll Engine"]
27
- L1C["L1 Client<br/>YP · Reputation · CA"]
28
- end
29
-
30
- subgraph NET["<b>OceanBus Network</b>"]
31
- L0["<b>L0 Core</b><br/>Encrypted Message Routing<br/>Global OpenID Addressing"]
32
- L1["<b>L1 Services</b><br/>Yellow Pages · Reputation<br/>Certificate Authority"]
33
- L0 --> L1
34
- end
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
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oceanbus",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "description": "OceanBus AI Agent Communication & Trust Infrastructure SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",