agentshield-sdk 13.2.0 → 13.3.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.
- package/CHANGELOG.md +15 -0
- package/README.md +260 -1187
- package/package.json +2 -2
- package/src/main.js +22 -0
- package/src/render-differential.js +608 -0
- package/src/side-channel-monitor.js +560 -0
- package/src/sybil-detector.js +529 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,21 @@ All notable changes to Agent Shield will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
This project follows [Semantic Versioning](https://semver.org/).
|
|
6
6
|
|
|
7
|
+
## [13.3.0] - 2026-04-06
|
|
8
|
+
|
|
9
|
+
### New SDK Modules
|
|
10
|
+
|
|
11
|
+
- **RenderDifferentialAnalyzer** -- Detects content that renders differently than it reads. Catches visual deception in HTML (CSS display:none, opacity:0, off-screen, font-size:0), Markdown (link mismatch, hidden spans, comment injection), and LaTeX (\phantom, \textcolor{white}, \renewcommand). Includes VisualHasher for measuring raw-vs-rendered divergence.
|
|
12
|
+
- **SybilDetector** -- Detects coordinated fake agents acting in concert. Behavioral similarity scoring, temporal correlation, content similarity (Jaccard), creation burst detection, and voting collusion analysis. Includes AgentIdentityVerifier with challenge-response and shared-secret detection.
|
|
13
|
+
- **SideChannelMonitor** -- Detects data exfiltration via covert channels. DNS exfiltration (high-entropy subdomains, base64 labels), timing-based encoding, response-size encoding, URL parameter exfil. Includes BeaconDetector (C2 beaconing patterns) and EntropyAnalyzer (Shannon entropy).
|
|
14
|
+
|
|
15
|
+
### Improvements
|
|
16
|
+
|
|
17
|
+
- Professional README rewrite: organized by capability instead of version, reduced from 1,348 to ~350 lines
|
|
18
|
+
- All 3 new modules exported via main.js
|
|
19
|
+
- 185 new test assertions (81 render-differential + 49 sybil + 55 side-channel)
|
|
20
|
+
- Total: 3,400+ test assertions across 22 suites
|
|
21
|
+
|
|
7
22
|
## [13.2.0] - 2026-04-06
|
|
8
23
|
|
|
9
24
|
### DeepMind AI Agent Traps -- First-Principles Defense
|