@xerg/cli 0.1.8 → 0.1.10

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
@@ -10,6 +10,7 @@ Everything runs locally by default. No account is required for local audits. No
10
10
 
11
11
  ```bash
12
12
  npx @xerg/cli doctor
13
+ npx @xerg/cli doctor --verbose
13
14
  npx @xerg/cli audit
14
15
  npx @xerg/cli audit --compare
15
16
  ```
@@ -114,6 +115,13 @@ xerg audit --log-file /path/to/openclaw.log
114
115
  xerg audit --sessions-dir /path/to/sessions
115
116
  ```
116
117
 
118
+ If your local machine has no OpenClaw files, inspect remote targets directly instead:
119
+
120
+ ```bash
121
+ xerg doctor --remote user@host
122
+ xerg doctor --railway
123
+ ```
124
+
117
125
  ## Authentication and config
118
126
 
119
127
  Push commands resolve credentials in this order:
@@ -161,6 +169,7 @@ Xerg v0 stores economic metadata and audit summaries locally. It does not store
161
169
  ## Troubleshooting
162
170
 
163
171
  - `better-sqlite3` is a native dependency. If install fails, retry on a supported Node version and make sure standard native build tooling is available for your platform.
172
+ - `--verbose` prints progress updates to stderr for `xerg doctor` and `xerg audit`, which helps distinguish package install time from CLI runtime.
164
173
  - If `xerg audit --remote ...` fails before pulling files, verify that both `ssh` and `rsync` are installed and reachable on your `PATH`.
165
174
  - If `xerg audit --railway` fails immediately, verify that the `railway` CLI is installed, authenticated, and can access the target project.
166
175