Install
openclaw skills install neckr0ik-security-suiteComplete security suite for OpenClaw skills. Includes scanner (detects vulnerabilities), fixer (auto-remediates issues), and compliance reports (SOC2, HIPAA, PCI-DSS). Bundle discount - all three tools for the price of two.
openclaw skills install neckr0ik-security-suiteComplete security toolkit: scan, fix, and certify your skills.
Detects 20+ vulnerability types:
Auto-fixes common issues:
Generate certification reports for:
# Scan a skill
neckr0ik-security-suite scan /path/to/skill
# Fix issues automatically
neckr0ik-security-suite fix /path/to/skill --auto
# Generate compliance report
neckr0ik-security-suite report /path/to/skill --framework soc2
# Full audit + fix + certify
neckr0ik-security-suite certify /path/to/skill --framework hipaa
neckr0ik-security-suite scan <skill-path> [options]
Options:
--format json|markdown|summary Output format
--severity critical|high|medium Minimum severity to report
--exclude <patterns> File patterns to exclude
neckr0ik-security-suite fix <skill-path> [options]
Options:
--auto Apply all fixes without prompting
--dry-run Show changes without applying
--no-backup Do not create backup files
neckr0ik-security-suite report <skill-path> [options]
Options:
--framework soc2|hipaa|pci|gdpr Compliance framework
--format json|markdown|pdf Output format
--output <file> Output file path
neckr0ik-security-suite certify <skill-path> [options]
Options:
--framework soc2|hipaa|pci|gdpr Compliance framework
--auto-fix Apply fixes before certification
--output <file> Certificate output path
Checks for:
Checks for:
Checks for:
Checks for:
╔══════════════════════════════════════════════════════════════╗
║ SECURITY COMPLIANCE CERTIFICATE - SOC 2 TYPE II ║
╠══════════════════════════════════════════════════════════════╣
║ Skill: my-ai-agent ║
║ Version: 1.2.0 ║
║ Scan Date: 2026-03-06 ║
║ Framework: SOC 2 Type II ║
╠══════════════════════════════════════════════════════════════╣
║ STATUS: ✅ COMPLIANT ║
╠══════════════════════════════════════════════════════════════╣
║ Controls Checked: ║
║ ✅ CC6.1 - Access Controls ║
║ ✅ CC6.7 - Encryption ║
║ ✅ CC8.1 - Change Management ║
║ ✅ CC9.2 - Risk Mitigation ║
╠══════════════════════════════════════════════════════════════╣
║ Vulnerabilities Found: 0 ║
║ Warnings: 2 (documentation recommended) ║
║ Certificate ID: SOC2-2026-03-06-A7B3C9D2 ║
╚══════════════════════════════════════════════════════════════╝
# .github/workflows/security.yml
name: Security Audit
on: [push, pull_request]
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Security Suite
run: clawhub install neckr0ik-security-suite
- name: Run Security Scan
run: neckr0ik-security-suite scan ./skill/
- name: Check Compliance
run: neckr0ik-security-suite certify ./skill/ --framework soc2
#!/bin/bash
# .git/hooks/pre-commit
neckr0ik-security-suite scan ./skills/ --severity high
if [ $? -ne 0 ]; then
echo "❌ Security issues found. Fix before committing."
exit 1
fi
| Tool | Standalone | In Suite |
|---|---|---|
| Scanner | $10 | ✅ Included |
| Fixer | $15 | ✅ Included |
| Compliance | $20 | ✅ Included |
| Total | $45 | $30 |
Save 33% with the suite bundle!
neckr0ik-security-scanner - Standalone scannerneckr0ik-security-fixer - Standalone fixerreferences/compliance-frameworks.md - Detailed framework requirementsscripts/suite.py - Main suite script