@ataraxy-labs/sem 0.9.0 → 0.10.1

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 +16 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -64,6 +64,12 @@ bun add -d @ataraxy-labs/sem
64
64
  bun pm trust @ataraxy-labs/sem
65
65
  ```
66
66
 
67
+ Once installed, update to the latest release any time:
68
+
69
+ ```bash
70
+ sem update
71
+ ```
72
+
67
73
  Or build from source (requires Rust):
68
74
 
69
75
  ```bash
@@ -406,6 +412,16 @@ Used by [weave](https://github.com/Ataraxy-Labs/weave) (semantic merge driver) a
406
412
  - **xxhash** for structural hashing
407
413
  - Plugin system for adding new languages and formats
408
414
 
415
+ ## Telemetry
416
+
417
+ sem collects anonymous usage data: the command name (e.g. `diff`, `impact`), CLI version, and operating system. Nothing else — no code, file paths, repo names, or user identity. Events are batched locally and sent in the background, so commands never wait on the network.
418
+
419
+ Disable it any time:
420
+
421
+ ```bash
422
+ export SEM_NO_TELEMETRY=1 # or DO_NOT_TRACK=1
423
+ ```
424
+
409
425
  ## Contributing
410
426
 
411
427
  Want to add a new language? See [CONTRIBUTING.md](CONTRIBUTING.md) for a step-by-step guide.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ataraxy-labs/sem",
3
- "version": "0.9.0",
3
+ "version": "0.10.1",
4
4
  "description": "npm wrapper for the sem CLI. Downloads the matching release binary and exposes the sem command in node_modules/.bin.",
5
5
  "license": "MIT OR Apache-2.0",
6
6
  "type": "module",