compliance-manager — community compliance-manager, onasis-gateway, community, ide skills

v1.0.0

About this Skill

Ideal for Security Agents requiring robust compliance features to ensure data protection and regulatory adherence. Guardrails for edits to core/security/compliance-manager.js that preserve PCI/GDPR/PSD2/SOX/HIPAA controls (masking, encryption, SCA, consent checks, and audit logging). Use when changing compliance v

thefixer3x thefixer3x
[0]
[0]
Updated: 3/18/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
7/11
Quality Score
36
Canonical Locale
en
Detected Body Locale
en

Ideal for Security Agents requiring robust compliance features to ensure data protection and regulatory adherence. Guardrails for edits to core/security/compliance-manager.js that preserve PCI/GDPR/PSD2/SOX/HIPAA controls (masking, encryption, SCA, consent checks, and audit logging). Use when changing compliance v

Core Value

Empowers agents to enforce PCI-DSS, GDPR, PSD2, SOX, and HIPAA compliance through advanced data masking, encryption, pseudonymization, and secure audit logging, utilizing a multi-regulation validation framework.

Ideal Agent Persona

Ideal for Security Agents requiring robust compliance features to ensure data protection and regulatory adherence.

Capabilities Granted for compliance-manager

Implementing PCI-DSS data protection for sensitive card information
Ensuring GDPR compliance through consent management and data minimization
Validating SOX audit trail requirements for financial transactions
Protecting health data in accordance with HIPAA regulations

! Prerequisites & Limits

  • Requires modification of core/security/compliance-manager.js
  • Specific to supported regulations (PCI-DSS, GDPR, PSD2, SOX, HIPAA)

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is compliance-manager?

Ideal for Security Agents requiring robust compliance features to ensure data protection and regulatory adherence. Guardrails for edits to core/security/compliance-manager.js that preserve PCI/GDPR/PSD2/SOX/HIPAA controls (masking, encryption, SCA, consent checks, and audit logging). Use when changing compliance v

How do I install compliance-manager?

Run the command: npx killer-skills add thefixer3x/onasis-gateway. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for compliance-manager?

Key use cases include: Implementing PCI-DSS data protection for sensitive card information, Ensuring GDPR compliance through consent management and data minimization, Validating SOX audit trail requirements for financial transactions, Protecting health data in accordance with HIPAA regulations.

Which IDEs are compatible with compliance-manager?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for compliance-manager?

Requires modification of core/security/compliance-manager.js. Specific to supported regulations (PCI-DSS, GDPR, PSD2, SOX, HIPAA).

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add thefixer3x/onasis-gateway. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use compliance-manager immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

compliance-manager

Install compliance-manager, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Compliance Manager Guardian

Purpose & Scope

Apply this skill when modifying core/security/compliance-manager.js.

The Compliance Manager provides:

  • PCI-DSS data protection (card data masking, encryption)
  • GDPR compliance (pseudonymization, consent management, data minimization)
  • PSD2 compliance (Strong Customer Authentication)
  • SOX audit trail requirements
  • HIPAA health data protection
  • Multi-regulation validation framework
  • Secure audit logging

Non-Negotiables (Never Do)

Compliance Validators

  • Never disable or bypass compliance validators.
  • Never weaken validation rules (for example, making required checks optional).
  • Never skip validation for "trusted" sources.
  • Never add bypass flags or debug modes that skip compliance.

PCI-DSS Rules

  • Never log these PCI fields (even in debug mode):
    • cvv, cvv2, cvc, cvc2, cid, cav2
    • pin, pinBlock
    • track1, track2, magneticStripe
  • Never weaken card masking:
    • Must show only first 6 and last 4 digits.
    • Middle digits must be masked with *.
  • Never reduce encryption below AES-256-GCM.
  • Never store CVV/PIN after authorization.

GDPR Rules

  • Never process personal data without consent check.
  • Never skip pseudonymization for personal identifiers.
  • Never retain personal data beyond retention period.
  • Never disable data minimization for analytics.

PSD2 Rules

  • Never reduce SCA requirements below 2 factors.
  • Never bypass SCA for amounts over threshold.
  • Never skip transaction monitoring for high-value transactions.
  • Never disable cumulative amount tracking.

Audit Logging

  • Never skip audit logging for sensitive operations.
  • Never delete or modify existing audit entries.
  • Never log sensitive data in audit trails (mask first).
  • Never disable audit persistence.

Security Rollback

  • Never rollback security fixes without security team approval.
  • Never lower security levels in production.

Required Patterns (Must Follow)

Card Number Masking

javascript
1// Must mask showing only first 6 and last 4 2maskCardNumber(cardNumber) { 3 const cleaned = cardNumber.replace(/\D/g, ''); 4 const first6 = cleaned.substring(0, 6); 5 const last4 = cleaned.substring(cleaned.length - 4); 6 const masked = '*'.repeat(cleaned.length - 10); 7 return `${first6}${masked}${last4}`; 8} 9// Example: 4111111111111111 -> 411111******1111

Data Encryption

javascript
1// Must use AES-256-GCM 2encryptSensitiveData(data) { 3 const algorithm = 'aes-256-gcm'; // Do not change 4 const key = process.env.ENCRYPTION_KEY; 5 if (!key) throw new Error('ENCRYPTION_KEY is required'); 6 7 // 12-byte IV is recommended for GCM 8 const iv = crypto.randomBytes(12); 9 10 // Prefer @onasis/security-sdk for key handling if available 11 // If ENCRYPTION_KEY is a passphrase, derive a 32-byte key via scrypt. 12 const keyBuf = (key.length === 64 && /^[0-9a-f]+$/i.test(key)) 13 ? Buffer.from(key, 'hex') 14 : crypto.scryptSync(key, 'onasis-gateway', 32); 15 16 const cipher = crypto.createCipheriv('aes-256-gcm', keyBuf, iv); 17 cipher.setAAD(Buffer.from('compliance-encryption')); 18 19 const plaintext = typeof data === 'string' ? data : JSON.stringify(data); 20 const ciphertext = Buffer.concat([cipher.update(plaintext, 'utf8'), cipher.final()]); 21 const authTag = cipher.getAuthTag(); 22 23 return { 24 encrypted: ciphertext.toString('base64'), 25 iv: iv.toString('hex'), 26 authTag: authTag.toString('hex'), 27 algorithm 28 }; 29}

Strong Customer Authentication

javascript
1// Must require 2+ factors 2validateSCA(data) { 3 const factors = []; 4 5 if (data.password || data.pin) factors.push('knowledge'); 6 if (data.deviceId || data.token) factors.push('possession'); 7 if (data.biometric || data.fingerprint) factors.push('inherence'); 8 9 return factors.length >= 2; // PSD2 requirement 10}

Defense in Depth

javascript
1// Must apply all applicable protections 2enforceDataHandling(serviceId, data, operation) { 3 let processedData = { ...data }; 4 5 if (service?.compliance?.pci) { 6 processedData = this.applyPCIProtections(processedData, operation); 7 } 8 if (service?.compliance?.gdpr) { 9 processedData = this.applyGDPRProtections(processedData, operation); 10 } 11 if (service?.compliance?.psd2) { 12 processedData = this.applyPSD2Protections(processedData, operation); 13 } 14 15 return processedData; 16}

Audit Entry Creation

javascript
1// Must create audit entry for all compliance events 2logAuditEntry(action, details) { 3 const entry = { 4 timestamp: new Date(), 5 action, 6 details, 7 id: crypto.randomUUID() 8 }; 9 10 this.auditLog.push(entry); 11 this.emit('audit:logged', entry); 12 this.persistAuditEntry(entry); // Must persist 13}

Prohibited Fields Registry

FieldRegulationStorageLoggingTransmission
cvv, cvv2, cvc, cvc2PCI-DSS 3.2NeverNeverHTTPS only
pin, pinBlockPCI-DSS 3.4NeverNeverEncrypted
track1, track2PCI-DSS 3.2NeverNeverNever
magneticStripePCI-DSS 3.2NeverNeverNever
Full card numberPCI-DSS 3.4EncryptedMaskedEncrypted

Integration Points

ComponentIntegration Method
Base ClientData passed through enforceDataHandling()
Metrics Collectorcompliance_violations_total metric
API RoutesMiddleware for request validation
DatabaseAudit entries persisted to audit.compliance_log

Compliance Validation Checklist

Before deploying changes:

  • Card data properly masked (first 6, last 4 only).
  • CVV/PIN never logged or stored.
  • Encryption uses AES-256-GCM.
  • SCA requires 2+ factors.
  • Audit entries created for all operations.
  • GDPR consent check in place.
  • Data minimization applied for analytics.
  • No PII in metric labels.
  • Audit log persisted to secure storage.

Related Skills

Looking for an alternative to compliance-manager or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer