openfused 0.3.2 → 0.3.3
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 +3 -3
- package/dist/cli.js +1 -1
- package/dist/mcp.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ This creates a context store:
|
|
|
31
31
|
|
|
32
32
|
```
|
|
33
33
|
CONTEXT.md — working memory (what's happening now)
|
|
34
|
-
|
|
34
|
+
PROFILE.md — public address card (name, endpoint, keys)
|
|
35
35
|
inbox/ — messages from other agents (encrypted)
|
|
36
36
|
outbox/ — sent message copies (moved to .sent/ after delivery)
|
|
37
37
|
shared/ — files shared with the mesh (plaintext)
|
|
@@ -118,7 +118,7 @@ Inbox messages are **encrypted with age** (X25519 + ChaCha20-Poly1305) and **sig
|
|
|
118
118
|
- If you have a peer's age key → messages are encrypted automatically
|
|
119
119
|
- If you don't → messages are signed but sent in plaintext
|
|
120
120
|
- `shared/` and `knowledge/` directories stay plaintext (they're public)
|
|
121
|
-
- `
|
|
121
|
+
- `PROFILE.md` is your public address card — served to peers and synced
|
|
122
122
|
|
|
123
123
|
The `age` format is interoperable — Rust CLI and TypeScript SDK use the same keys and format.
|
|
124
124
|
|
|
@@ -228,7 +228,7 @@ Hey, the research is done. Check shared/findings.md
|
|
|
228
228
|
|
|
229
229
|
- Path traversal blocked (canonicalized paths, basename extraction)
|
|
230
230
|
- Daemon body size limit (1MB)
|
|
231
|
-
-
|
|
231
|
+
- PROFILE.md is public; private config stays in your agent runtime (CLAUDE.md, etc.)
|
|
232
232
|
- Registry rate-limited on all mutation endpoints
|
|
233
233
|
- Outbox messages archived after delivery (no duplicate sends)
|
|
234
234
|
- SSH URLs validated (no argument injection)
|
package/dist/cli.js
CHANGED
|
@@ -8,7 +8,7 @@ import * as registry from "./registry.js";
|
|
|
8
8
|
import { fingerprint } from "./crypto.js";
|
|
9
9
|
import { resolve } from "node:path";
|
|
10
10
|
import { readFile } from "node:fs/promises";
|
|
11
|
-
const VERSION = "0.3.
|
|
11
|
+
const VERSION = "0.3.3";
|
|
12
12
|
const program = new Command();
|
|
13
13
|
program
|
|
14
14
|
.name("openfuse")
|
package/dist/mcp.js
CHANGED
|
@@ -17,7 +17,7 @@ const storeDir = process.env.OPENFUSE_DIR || process.argv[3] || ".";
|
|
|
17
17
|
const store = new ContextStore(resolve(storeDir));
|
|
18
18
|
const server = new McpServer({
|
|
19
19
|
name: "openfuse",
|
|
20
|
-
version: "0.3.
|
|
20
|
+
version: "0.3.3",
|
|
21
21
|
});
|
|
22
22
|
// --- Context ---
|
|
23
23
|
server.tool("context_read", "Read the agent's CONTEXT.md (working memory)", async () => {
|
package/package.json
CHANGED