@sandrobuilds/tracerney 0.9.18 → 0.9.20

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 +41 -15
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,8 @@
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
+
5
+ > 🚀 **Explore the full platform at [tracerney.com](https://www.tracerney.com)** — includes dashboard, analytics, API management, and team collaboration tools.
4
6
 
5
7
  ## Install
6
8
 
@@ -25,10 +27,10 @@ if (result.suspicious) {
25
27
 
26
28
  ## What's Included
27
29
 
28
- - **259 embedded attack patterns** — covers known injection techniques
29
- - **Local detection** — <5ms latency, zero network calls
30
+ - **258 embedded attack patterns** — real-world injection techniques detected in real-time
31
+ - **Local detection** — <5ms latency per prompt, zero network overhead
30
32
  - **Zero dependencies** — single npm package
31
- - **No data collection** — all detection happens in your process
33
+ - **Privacy-first** — no data leaves your server, 100% local processing
32
34
 
33
35
  ## Result Object
34
36
 
@@ -64,18 +66,42 @@ if (result.suspicious) {
64
66
 
65
67
  ## Multi-Layer Runtime Defense
66
68
 
67
- **Layer 1:** Pattern-based detection with 259 embedded patterns
68
- - Fast local detection (<5ms)
69
+ **Layer 1:** Pattern Matching (Always Free)
70
+ - 258 real-world attack patterns in real-time
71
+ - <5ms detection on modern hardware
69
72
  - 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
76
- - Returns structured threat metadata (class, fingerprint, confidence)
77
- - Rate limiting to prevent cost spikes
78
- - Only escalates suspicious Layer 1 matches
73
+ - Local processing only
74
+ - Detects: instruction overrides, role-play jailbreaks, context confusion, code execution risks, data extraction attempts, and more
75
+
76
+ **Layer 2:** LLM Sentinel (Pro - $9/month)
77
+ - **AI-powered response verification** — LLM-based analysis for novel attack patterns
78
+ - **Context-aware scanning** understands your application's specific security policies
79
+ - **Delimiter salting** prevents prompt injection through response boundaries
80
+ - **Zero prompt storage** responses are analyzed in-memory, never saved or logged
81
+ - **Structured threat metadata** detailed fingerprints for audit trails and tracking
82
+ - **Advanced rate limiting** — prevents cost spikes with intelligent throttling
83
+
84
+ ## Pricing & Usage
85
+
86
+ - **Free Tier:** 50 scans/month with Layer 1 pattern detection
87
+ - **Pro Tier:** 2,500 scans/month with Layer 1 + Layer 2 LLM verification ($9/month)
88
+
89
+ ---
90
+
91
+ ## Ready for Advanced Protection?
92
+
93
+ Layer 2 (LLM Sentinel) adds AI-powered verification with **context-aware** threat detection and **zero prompt storage** — all responses are analyzed in-memory and immediately discarded.
94
+
95
+ **[Start Your Free Trial or Upgrade to Pro](https://www.tracerney.com/docs)** at tracerney.com
96
+
97
+ Includes:
98
+ - Dashboard with threat analytics
99
+ - API key management
100
+ - Team collaboration features
101
+ - Detailed threat fingerprints for compliance
102
+ - Priority support for Pro members
103
+
104
+ ---
79
105
 
80
106
  ## License
81
107
 
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.20",
4
+ "description": "Lightweight prompt injection detection with Layer 1 (258 patterns) + Layer 2 (AI verification). Runs locally with zero data storage. Upgrade to Pro for context-aware threat analysis at tracerney.com",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",