security-compliance-audit

aj-geddes/useful-ai-prompts · updated Apr 8, 2026

$npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill security-compliance-audit
0 commentsdiscussion
summary

Systematic evaluation of security controls, policies, and procedures to ensure compliance with industry standards and regulatory requirements.

skill.md

Security Compliance Audit

Table of Contents

Overview

Systematic evaluation of security controls, policies, and procedures to ensure compliance with industry standards and regulatory requirements.

When to Use

  • Annual compliance audits
  • Pre-certification assessments
  • Regulatory compliance validation
  • Security posture evaluation
  • Third-party audits
  • Gap analysis

Quick Start

Minimal working example:

# compliance_auditor.py
from dataclasses import dataclass, field
from typing import List, Dict
from enum import Enum
import json
from datetime import datetime

class ComplianceFramework(Enum):
    SOC2 = "SOC 2"
    GDPR = "GDPR"
    HIPAA = "HIPAA"
    PCI_DSS = "PCI-DSS"
    ISO_27001 = "ISO 27001"

class ControlStatus(Enum):
    COMPLIANT = "compliant"
    NON_COMPLIANT = "non_compliant"
    PARTIALLY_COMPLIANT = "partially_compliant"
    NOT_APPLICABLE = "not_applicable"

@dataclass
class Control:
    control_id: str
    framework: ComplianceFramework
    category: str
// ... (see reference guides for full implementation)

Reference Guides

Detailed implementations in the references/ directory:

Guide Contents
Automated Compliance Checker Automated Compliance Checker
Node.js Compliance Automation Node.js Compliance Automation

Best Practices

✅ DO

  • Automate compliance checks
  • Document all controls
  • Maintain evidence repository
  • Conduct regular audits
  • Track remediation progress
  • Involve stakeholders
  • Keep policies updated

❌ DON'T

  • Skip documentation
  • Ignore findings
  • Delay remediation
  • Cherry-pick controls
  • Forget evidence collection

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.766 reviews
  • Arya Li· Dec 12, 2024

    security-compliance-audit is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Isabella Rao· Dec 8, 2024

    Registry listing for security-compliance-audit matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Liam Smith· Dec 4, 2024

    security-compliance-audit reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Liam Tandon· Dec 4, 2024

    security-compliance-audit fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Isabella Johnson· Nov 27, 2024

    security-compliance-audit reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Kofi Sharma· Nov 23, 2024

    Registry listing for security-compliance-audit matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Yuki Rao· Nov 23, 2024

    We added security-compliance-audit from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Layla Gonzalez· Nov 3, 2024

    Solid pick for teams standardizing on skills: security-compliance-audit is focused, and the summary matches what you get after install.

  • Naina Gonzalez· Oct 22, 2024

    We added security-compliance-audit from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Dev Anderson· Oct 18, 2024

    I recommend security-compliance-audit for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

showing 1-10 of 66

1 / 7