residoo 0.3.5 → 0.3.6
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 +6 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -317,7 +317,7 @@ As a GitHub Action (this repository doubles as a composite action):
|
|
|
317
317
|
```yaml
|
|
318
318
|
steps:
|
|
319
319
|
- uses: actions/checkout@v4
|
|
320
|
-
- uses: dandovdub/residoo@v0.3.
|
|
320
|
+
- uses: dandovdub/residoo@v0.3.6
|
|
321
321
|
```
|
|
322
322
|
|
|
323
323
|
As a pre-commit hook:
|
|
@@ -325,12 +325,15 @@ As a pre-commit hook:
|
|
|
325
325
|
```yaml
|
|
326
326
|
repos:
|
|
327
327
|
- repo: https://github.com/dandovdub/residoo
|
|
328
|
-
rev: v0.3.
|
|
328
|
+
rev: v0.3.6
|
|
329
329
|
hooks:
|
|
330
330
|
- id: residoo
|
|
331
331
|
```
|
|
332
332
|
|
|
333
|
-
Or with no integration at all: `
|
|
333
|
+
Or with no integration at all: `npm install -g residoo && residoo scan --project . --fail-on-find`
|
|
334
|
+
(more reliable in CI than `npx --yes`, which failed consistently in real
|
|
335
|
+
GitHub Actions runs while working fine locally; see the design note at the
|
|
336
|
+
top of `action.yml`).
|
|
334
337
|
Exit codes, inputs, and exactly what project mode does and does not see are
|
|
335
338
|
documented in [docs/ci.md](docs/ci.md).
|
|
336
339
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "residoo",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
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)",
|