@superbased/observer 1.4.19 → 1.4.24
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 +16 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -49,11 +49,27 @@ tool. No telemetry, no cloud, no data leaves your machine.
|
|
|
49
49
|
|
|
50
50
|
## Install
|
|
51
51
|
|
|
52
|
+
**Use a global install** (`-g`) so the `observer` command is available
|
|
53
|
+
on your `$PATH` from any directory:
|
|
54
|
+
|
|
52
55
|
```bash
|
|
53
56
|
npm install -g @superbased/observer
|
|
54
57
|
observer --version
|
|
55
58
|
```
|
|
56
59
|
|
|
60
|
+
If you install locally (without `-g`) the binary lives at
|
|
61
|
+
`./node_modules/.bin/observer` and isn't on your `$PATH`. Run it
|
|
62
|
+
with `npx`:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
npm install @superbased/observer # local install
|
|
66
|
+
npx observer --version # ↑ what to use everywhere `observer` is shown below
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
A note for shared / CI machines where `npm install -g` may need
|
|
70
|
+
`sudo`: see [Troubleshooting → EACCES](#npm-install--g-fails-with-eacces-permission-denied)
|
|
71
|
+
for user-writable-prefix and version-manager fixes.
|
|
72
|
+
|
|
57
73
|
Pre-built binaries ship for:
|
|
58
74
|
|
|
59
75
|
| Platform | Architecture |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superbased/observer",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.24",
|
|
4
4
|
"description": "SuperBased Observer — capture, normalize, compress, and analyze AI coding tool activity across Claude Code, Codex, Cursor, Cline/Roo, and Copilot.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"LICENSE"
|
|
37
37
|
],
|
|
38
38
|
"optionalDependencies": {
|
|
39
|
-
"@superbased/observer-linux-x64": "1.4.
|
|
40
|
-
"@superbased/observer-linux-arm64": "1.4.
|
|
41
|
-
"@superbased/observer-darwin-x64": "1.4.
|
|
42
|
-
"@superbased/observer-darwin-arm64": "1.4.
|
|
43
|
-
"@superbased/observer-win32-x64": "1.4.
|
|
39
|
+
"@superbased/observer-linux-x64": "1.4.24",
|
|
40
|
+
"@superbased/observer-linux-arm64": "1.4.24",
|
|
41
|
+
"@superbased/observer-darwin-x64": "1.4.24",
|
|
42
|
+
"@superbased/observer-darwin-arm64": "1.4.24",
|
|
43
|
+
"@superbased/observer-win32-x64": "1.4.24"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"test": "node bin/observer.js --version"
|