AI SummaryCompliance frameworks are JSON files in: Dashboard files must be in and follow this exact pattern: After validation passes, test the framework with Prowler:
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "prowler-compliance-review" skill in my project. Please run this command in my terminal: # Install skill into your project (2 files) mkdir -p .claude/skills/prowler-compliance-review && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/prowler-compliance-review/SKILL.md "https://raw.githubusercontent.com/majiayu000/claude-skill-registry/main/skills/data/prowler-compliance-review/SKILL.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/prowler-compliance-review/metadata.json "https://raw.githubusercontent.com/majiayu000/claude-skill-registry/main/skills/data/prowler-compliance-review/metadata.json" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Reviews Pull Requests that add or modify compliance frameworks. Trigger: When reviewing PRs with compliance framework changes, CIS/NIST/PCI-DSS additions, or compliance JSON files.
When to Use
• Reviewing PRs that add new compliance frameworks • Reviewing PRs that modify existing compliance frameworks • Validating compliance framework JSON structure before merge ---
Review Checklist (Critical)
| Check | Command/Method | Pass Criteria | |-------|----------------|---------------| | JSON Valid | python3 -m json.tool file.json | No syntax errors | | All Checks Exist | Run validation script | 0 missing checks | | No Duplicate IDs | Run validation script | 0 duplicate requirement IDs | | CHANGELOG Entry | Manual review | Present under correct version | | Dashboard File | Compare with existing | Follows established pattern | | Framework Metadata | Manual review | All required fields populated | ---
1. Validate JSON syntax
python3 -m json.tool prowler/compliance/{provider}/{framework}.json > /dev/null \ && echo "Valid JSON" || echo "INVALID JSON"
2. Run full validation script
python3 skills/prowler-compliance-review/assets/validate_compliance.py \ prowler/compliance/{provider}/{framework}.json
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster