Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@bulkhead-ai/core

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bulkhead-ai/core - npm Package Compare versions

Comparing version
0.3.0
to
0.4.0
+1
-4
package.json
{
"name": "@bulkhead-ai/core",
"version": "0.3.0",
"version": "0.4.0",
"description": "Cascading content protection engine — PII detection, secret scanning, prompt injection defense",

@@ -26,5 +26,2 @@ "license": "MIT",

},
"publishConfig": {
"access": "public"
},
"sideEffects": false,

@@ -31,0 +28,0 @@ "main": "./dist/index.js",

+10
-9

@@ -1,2 +0,2 @@

# @floatingsidewal/bulkhead-core
# Bulkhead Core

@@ -9,16 +9,17 @@ Cascading content protection engine -- detects and redacts PII, secrets, prompt injection, and system prompt leakage in text before it reaches LLMs.

This package is available under two scopes:
```
```
Then install:
```bash
npm install @bulkhead-ai/core
# or
npm install @floatingsidewal/bulkhead-core
```
Both packages are identical. Use whichever scope fits your project.
## Quick Start
```typescript
import { createEngine } from "@floatingsidewal/bulkhead-core";
import { createEngine } from "@bulkhead-ai/core";
// or: import { createEngine } from "@floatingsidewal/bulkhead-core";

@@ -52,3 +53,3 @@ const engine = createEngine();

```typescript
import { createEngine, type BulkheadConfig } from "@floatingsidewal/bulkhead-core";
import { createEngine, type BulkheadConfig } from "@bulkhead-ai/core";

@@ -78,3 +79,3 @@ const engine = createEngine({

```typescript
import { GuardrailsEngine, PiiGuard, SecretGuard } from "@floatingsidewal/bulkhead-core";
import { GuardrailsEngine, PiiGuard, SecretGuard } from "@bulkhead-ai/core";

@@ -81,0 +82,0 @@ const engine = new GuardrailsEngine();