@agent-inspect/redact 6.7.1 → 6.7.3

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 +6 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  Deterministic JSON/trace redaction with local, share, and strict profiles.
4
4
 
5
+
6
+ **Support level:** Stable — see [SUPPORT-LEVELS.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SUPPORT-LEVELS.md).
7
+
5
8
  ## When to use
6
9
 
7
10
  - Before attaching traces to issues, Slack, or PRs
@@ -24,7 +27,7 @@ npm install @agent-inspect/redact
24
27
  import { redact } from "@agent-inspect/redact";
25
28
 
26
29
  const result = redact(
27
- { apiKey: "sk-secret", message: "hello" },
30
+ { apiKey: "demo-token", message: "hello" },
28
31
  { profile: "share" },
29
32
  );
30
33
  console.log(result.value, result.findings);
@@ -56,9 +59,10 @@ console.log(result.value, result.findings);
56
59
  - **Still sensitive keys:** Use `strict` profile or custom detectors
57
60
  - **Large files:** Redact copies; keep originals local
58
61
 
62
+
59
63
  ## Version
60
64
 
61
- `3.5.x`
65
+ Part of the fixed AgentInspect release line. See the npm badge / package manifest for the current version.
62
66
 
63
67
  ## License
64
68
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-inspect/redact",
3
- "version": "6.7.1",
3
+ "version": "6.7.3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "Reusable deterministic redaction utilities for local AgentInspect workflows",