openfused 0.5.3 → 0.5.4

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 CHANGED
@@ -232,7 +232,7 @@ Pull peer context, pull their outbox for your mail, push your outbox. Two transp
232
232
  openfuse peer add ssh://your-server:/home/agent/store --name wisp
233
233
 
234
234
  # WAN — HTTP against the OpenFused daemon
235
- openfuse peer add https://wisp.openfused.dev --name wisp
235
+ openfuse peer add https://demo.openfused.dev --name wisp
236
236
 
237
237
  # Sync all peers
238
238
  openfuse sync
package/dist/cli.js CHANGED
@@ -31,11 +31,10 @@ program
31
31
  .command("init")
32
32
  .description("Initialize a new context store or shared workspace")
33
33
  .option("-n, --name <name>", "Agent name", "agent")
34
- .option("-d, --dir <path>", "Directory to init (default: ~/.openfuse)")
34
+ .option("-d, --dir <path>", "Directory to init (default: .)")
35
35
  .option("--workspace", "Initialize as a shared workspace (CHARTER.md + tasks/ + messages/ + _broadcast/)")
36
36
  .action(async (opts) => {
37
- const { homedir } = await import("node:os");
38
- const initDir = opts.dir ? resolve(opts.dir) : join(homedir(), ".openfuse", opts.name);
37
+ const initDir = resolve(opts.dir || ".");
39
38
  const store = new ContextStore(initDir);
40
39
  if (await store.exists()) {
41
40
  console.error("Context store already exists at", store.root);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openfused",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "mcpName": "io.github.openfused/openfuse-mcp",
5
5
  "description": "The file protocol for AI agent context. Encrypted, signed, peer-to-peer.",
6
6
  "license": "MIT",
@@ -22,7 +22,7 @@
22
22
  "scripts": {
23
23
  "build": "npm run build:wasm && tsc",
24
24
  "build:ts": "tsc",
25
- "build:wasm": "cd rust-port && cargo build --target wasm32-wasip1 -p openfused-core --release && cp target/wasm32-wasip1/release/openfused-core.wasm ../wasm/ && (wasm-opt -Oz ../wasm/openfused-core.wasm -o ../wasm/openfused-core.wasm 2>/dev/null || true)",
25
+ "build:wasm": "cd rust-port && cargo build --target wasm32-wasip1 --bin openfused-core --no-default-features --release && cp target/wasm32-wasip1/release/openfused-core.wasm ../wasm/ && (wasm-opt -Oz ../wasm/openfused-core.wasm -o ../wasm/openfused-core.wasm 2>/dev/null || true)",
26
26
  "dev": "tsc --watch",
27
27
  "prepublishOnly": "npm run build",
28
28
  "start": "node dist/cli.js"
@@ -1,5 +1,7 @@
1
1
  # Profile
2
2
 
3
+ <!-- openfuse-identity pk:PLACEHOLDER fp:PLACEHOLDER -->
4
+
3
5
  ## Endpoint
4
6
  _(not configured — run `openfuse register`)_
5
7
 
Binary file