Docs / Quickstart

Quickstart: Integrate in 3 Minutes

Install the Appinico Shield SDK, configure masking policies, and protect payloads before they reach any LLM provider.

1. Install the SDK

bash
npm install @appinico/shield

import { Shield } from '@appinico/shield'
const shield = new Shield({ apiKey: process.env.SHIELD_API_KEY })

2. Configure shield.config.json

shield.config.json
{
  "masking": {
    "pii": true,
    "creditCard": true
  },
  "compliance": ["GDPR", "HIPAA"]
}

Define which entities to detect and mask before data leaves your environment. See all configuration options →