@techsologic/unolock-agent 0.1.35 → 0.1.36

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
@@ -86,7 +86,7 @@ Agent-first onboarding site:
86
86
 
87
87
  Recommended customer install source:
88
88
 
89
- * UnoLock's built-in local daemon/CLI with a GitHub Release binary when available
89
+ * UnoLock's built-in local runtime/CLI with a GitHub Release binary when available
90
90
  * `npx -y @techsologic/unolock-agent@latest` as the easiest Node/npm CLI path
91
91
  * `pipx install` as the fallback source install path when no release binary is available yet
92
92
 
@@ -163,7 +163,7 @@ Only if a host needs the explicit host-command form, use:
163
163
 
164
164
  * `npx -y @techsologic/unolock-agent@latest mcp`
165
165
  * The host writes JSON-RPC to `stdin` and reads JSON-RPC from `stdout`.
166
- * The `mcp` subcommand starts and uses the local UnoLock runtime automatically.
166
+ * The `mcp` subcommand starts and uses UnoLock automatically.
167
167
  * On a fresh host, the first start can take longer because local cryptographic code may need to be compiled or prepared.
168
168
 
169
169
  That keeps the user PIN in process memory and keeps the current Space selected.
@@ -214,7 +214,7 @@ For the best customer experience, prefer GitHub Release binaries over source ins
214
214
 
215
215
  ## Preferred Customer Install
216
216
 
217
- When available, prefer the built-in UnoLock local daemon plus the npm wrapper or release binary.
217
+ When available, prefer the built-in UnoLock local runtime plus the npm wrapper or release binary.
218
218
 
219
219
  For an agent-first public onboarding flow, send users or agents to:
220
220
 
@@ -7,8 +7,8 @@ const path = require("path");
7
7
  const https = require("https");
8
8
  const { spawn } = require("child_process");
9
9
 
10
- const PACKAGE_VERSION = "0.1.35";
11
- const FALLBACK_BINARY_VERSION = "0.1.35";
10
+ const PACKAGE_VERSION = "0.1.36";
11
+ const FALLBACK_BINARY_VERSION = "0.1.36";
12
12
  const REPO = "TechSologic/unolock-agent";
13
13
  const TOP_LEVEL_USAGE = `usage: unolock-agent [-h] [--version] {link-agent-key,set-agent-pin,list-spaces,get-current-space,set-current-space,list-records,list-notes,list-checklists,get-record,create-note,update-note,append-note,rename-record,create-checklist,set-checklist-item-done,add-checklist-item,remove-checklist-item,list-files,get-file,download-file,upload-file,rename-file,replace-file,delete-file,tpm-diagnose,tpm-check,self-test,mcp} ...
14
14
 
@@ -38,7 +38,7 @@ This skill uses the local `unolock-agent` executable on the user's device.
38
38
  - run the `unolock-agent` command you need directly
39
39
  - if a command reports that the PIN is needed, run `unolock-agent set-agent-pin '<pin>'` and retry the original command
40
40
  - keep the PIN in UnoLock process memory only
41
- - if a host explicitly requires the host-command form, use `npx -y @techsologic/unolock-agent@latest mcp`
41
+ - if `unolock-agent` is not installed yet, use `npx -y @techsologic/unolock-agent@latest`
42
42
 
43
43
  ## User-Facing Model
44
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@techsologic/unolock-agent",
3
- "version": "0.1.35",
3
+ "version": "0.1.36",
4
4
  "description": "npx wrapper for the official UnoLock Agent release binaries",
5
5
  "license": "UNLICENSED",
6
6
  "homepage": "https://unolock.ai",
@@ -39,7 +39,7 @@ This skill uses the local `unolock-agent` executable on the user's device.
39
39
  - run the `unolock-agent` command you need directly
40
40
  - if a command reports that the PIN is needed, run `unolock-agent set-agent-pin '<pin>'` and retry the original command
41
41
  - keep the PIN in UnoLock process memory only
42
- - if a host explicitly requires the host-command form, use `npx -y @techsologic/unolock-agent@latest mcp`
42
+ - if `unolock-agent` is not installed yet, use `npx -y @techsologic/unolock-agent@latest`
43
43
 
44
44
  ## User-Facing Model
45
45