nexvora 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +10 -3
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -102,11 +102,18 @@ ephemeral per-task crypto material — and how long the background daemon lives.
102
102
  ## Admin commands
103
103
 
104
104
  ```bash
105
- nexvora escrow init # create + install the platform escrow key (once)
106
- nexvora dispute open <delegation> # decrypt a disputed result via escrow (audited)
105
+ # create + install the platform escrow key (once). --admin-secret is your
106
+ # backend's X-Admin-Secret (or set NEXVORA_ADMIN_SECRET); it authorises the
107
+ # /admin call. The separate "admin credential" it then prompts for seals the
108
+ # escrow key locally and never leaves your machine.
109
+ nexvora escrow init --admin-secret <X-Admin-Secret>
110
+
111
+ # decrypt a disputed result via escrow (audited)
112
+ nexvora dispute open <delegation> --admin-secret <X-Admin-Secret>
107
113
  ```
108
114
 
109
- Both prompt for the admin credential locally; the server never decrypts.
115
+ You must be logged in as an ADMIN account (`nexvora login`). Both prompt for the
116
+ escrow admin credential locally; the server never decrypts.
110
117
 
111
118
  ## Updating
112
119
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexvora",
3
- "version": "0.1.0",
3
+ "version": "0.1.4",
4
4
  "description": "NexVora — one binary for the MCP server, CLI, and donor daemon. Single login, run anything.",
5
5
  "keywords": [
6
6
  "nexvora",
@@ -24,10 +24,10 @@
24
24
  },
25
25
  "//": "The actual native (Rust) binary ships in exactly one of these per-platform packages; npm installs only the one matching the user's os/cpu (see each package's os/cpu fields). bin/nexvora.js resolves and execs it.",
26
26
  "optionalDependencies": {
27
- "@nexvora/cli-darwin-arm64": "0.1.0",
28
- "@nexvora/cli-darwin-x64": "0.1.0",
29
- "@nexvora/cli-linux-x64": "0.1.0",
30
- "@nexvora/cli-win32-x64": "0.1.0"
27
+ "@nexvora/cli-darwin-arm64": "0.1.4",
28
+ "@nexvora/cli-darwin-x64": "0.1.4",
29
+ "@nexvora/cli-linux-x64": "0.1.4",
30
+ "@nexvora/cli-win32-x64": "0.1.4"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public",