@ataraxy-labs/sem 0.9.0 → 0.10.0

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 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -406,6 +406,16 @@ Used by [weave](https://github.com/Ataraxy-Labs/weave) (semantic merge driver) a
406
406
  - **xxhash** for structural hashing
407
407
  - Plugin system for adding new languages and formats
408
408
 
409
+ ## Telemetry
410
+
411
+ 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.
412
+
413
+ Disable it any time:
414
+
415
+ ```bash
416
+ export SEM_NO_TELEMETRY=1 # or DO_NOT_TRACK=1
417
+ ```
418
+
409
419
  ## Contributing
410
420
 
411
421
  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.0",
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",