@sandrobuilds/tracerney 0.9.18 → 0.9.19

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 +20 -14
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Tracerney
2
2
 
3
- Lightweight prompt injection detection for LLM applications. Runs 100% locally.
3
+ Lightweight prompt injection detection for LLM applications. Runs 100% locally with zero data leaving your server.
4
4
 
5
5
  ## Install
6
6
 
@@ -25,10 +25,10 @@ if (result.suspicious) {
25
25
 
26
26
  ## What's Included
27
27
 
28
- - **259 embedded attack patterns** — covers known injection techniques
29
- - **Local detection** — <5ms latency, zero network calls
28
+ - **258 embedded attack patterns** — real-world injection techniques detected in real-time
29
+ - **Local detection** — <5ms latency per prompt, zero network overhead
30
30
  - **Zero dependencies** — single npm package
31
- - **No data collection** — all detection happens in your process
31
+ - **Privacy-first** — no data leaves your server, 100% local processing
32
32
 
33
33
  ## Result Object
34
34
 
@@ -64,18 +64,24 @@ if (result.suspicious) {
64
64
 
65
65
  ## Multi-Layer Runtime Defense
66
66
 
67
- **Layer 1:** Pattern-based detection with 259 embedded patterns
68
- - Fast local detection (<5ms)
67
+ **Layer 1:** Pattern Matching (Always Free)
68
+ - 258 real-world attack patterns in real-time
69
+ - <5ms detection on modern hardware
69
70
  - Zero network overhead
70
- - Blocks known attack techniques
71
- - Marks suspicious prompts
72
-
73
- **Layer 2:** LLM Sentinel (Backend Verification)
74
- - Backend LLM verification for novel attacks
75
- - Context-aware analysis via OpenRouter
71
+ - Local processing only
72
+ - Detects: instruction overrides, role-play jailbreaks, context confusion, code execution risks, data extraction attempts, and more
73
+
74
+ **Layer 2:** LLM Sentinel (Pro - $9/month)
75
+ - AI-powered response verification system
76
+ - Analyzes LLM responses for injection patterns
77
+ - Validates output safety with context-aware scanning
78
+ - Delimiter salting for enhanced protection
76
79
  - Returns structured threat metadata (class, fingerprint, confidence)
77
- - Rate limiting to prevent cost spikes
78
- - Only escalates suspicious Layer 1 matches
80
+
81
+ ## Pricing
82
+
83
+ - **Free Tier:** 50 scans/month with Layer 1 pattern detection
84
+ - **Pro Tier:** 2,500 scans/month with Layer 1 + Layer 2 LLM verification
79
85
 
80
86
  ## License
81
87
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sandrobuilds/tracerney",
3
- "version": "0.9.18",
4
- "description": "Transparent proxy runtime sentinel for prompt injection defense",
3
+ "version": "0.9.19",
4
+ "description": "Lightweight prompt injection detection for LLM applications. Runs 100% locally with 258 embedded attack patterns.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",