@sandrobuilds/tracerney 0.9.10 → 0.9.11

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 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,13 +5,13 @@
5
5
  [![npm version](https://badge.fury.io/js/tracerney.svg)](https://www.npmjs.com/package/tracerney)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
7
 
8
- Tracerney is a production-ready security middleware that sits between your application and LLM providers. It detects and blocks prompt injection attacks with **three hardened layers**:
8
+ Tracerney is a lightweight, free SDK for detecting prompt injection attacks. It runs 100% locally with no dependencies and no data collection.
9
9
 
10
- 1. **Layer 1 (Vanguard)**: Regex patterns with Unicode normalization — <2ms, blocks known attacks
11
- 2. **Layer 2 (Sentinel)**: Backend LLM verification for novel attacks, with rate limiting to prevent cost spikes
12
- 3. **Layer 3 (Jitter)**: Random response delays to mask which layer blocked an attack
13
-
14
- **Zero data leaves your infrastructure** you control the backend endpoints.
10
+ **Free SDK includes:**
11
+ - **Layer 1 (Pattern Detection)**: 238 embedded attack patterns with Unicode normalization
12
+ - <2ms detection latency per prompt
13
+ - Zero network overhead — all detection is local
14
+ - Works offlineno backend required
15
15
 
16
16
  ## 🚀 Quick Start
17
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sandrobuilds/tracerney",
3
- "version": "0.9.10",
3
+ "version": "0.9.11",
4
4
  "description": "Transparent proxy runtime sentinel for prompt injection defense",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",