residoo 0.24.0 → 0.25.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
@@ -206,6 +206,16 @@ brew install residoo
206
206
  The Homebrew formula installs the exact tarball published to npm (sha256
207
207
  verified): same bits, not a second build.
208
208
 
209
+ **macOS, no terminal needed for the install step itself:** download
210
+ `residoo-<version>.pkg` from the
211
+ [latest release](https://github.com/dandovdub/residoo/releases/latest)
212
+ and double-click it. It's unsigned (no Apple Developer ID -- right-click
213
+ > Open once to get past Gatekeeper's "unidentified developer" warning),
214
+ and it still needs Node.js present on the machine (it runs
215
+ `npm install -g residoo` on your behalf, it doesn't bundle a Node
216
+ runtime) -- see [packaging/macos-pkg](packaging/macos-pkg/README.md) for
217
+ exactly what it does and how it was verified.
218
+
209
219
  Requires Node.js 18+ (22.5+ for the SQLite-backed sources listed in
210
220
  [docs/sources.md](docs/sources.md); residoo still runs fine without it).
211
221
  Zero runtime dependencies: check `package.json` rather than take that on
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "residoo",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
4
4
  "description": "Find secrets leaking through your AI coding agent's session history. Zero network calls in the scan path, zero dependencies.",
5
5
  "license": "MIT",
6
6
  "author": "CloudRoam (https://cloudroam.io)",