aws-compliance-checker
Automated compliance checking against CIS, PCI-DSS, HIPAA, and SOC 2 benchmarks
npx skills add sickn33/agentic-awesome-skills --skill aws-compliance-checker --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# AWS Compliance Checker Automated compliance validation against industry standards including CIS AWS Foundations, PCI-DSS, HIPAA, and SOC 2. ## When to Use Use this skill when you need to validate AWS compliance against industry standards, prepare for audits, or maintain continuous compliance monitoring. ## Supported Frameworks **CIS AWS Foundations Benchmark** - Identity and Access Management - Logging and Monitoring - Networking - Data Protection **PCI-DSS (Payment Card Industry)** - Network security - Access controls - Encryption - Monitoring and logging **HIPAA (Healthcare)** - Access controls - Audit controls - Data encryption - Transmission security **SOC 2** - Security - Availability - Confidentiality - Privacy ## CIS AWS Foundations Checks ### Identity & Access Management (1.x) ```bash #!/bin/bash # cis-iam-checks.sh echo "=== CIS IAM Compliance Checks ===" # 1.1: Root account usage echo "1.1: Checking root account usage..." root_usage=$(aws iam get-credential-report --output text | \ awk -F, 'NR==2 {print $5,$11}') echo " Root password last used: $root_usage" # 1.2: MFA on root account echo "1.2: Checking root MFA..." root_mfa=$(aws iam get-account-summary \ --query 'Summ
- When to Use
- Supported Frameworks
- CIS AWS Foundations Checks
- Identity & Access Management (1.x)
- Logging (2.x)
- Monitoring (3.x)
- Networking (4.x)
- PCI-DSS Compliance Checks
- HIPAA Compliance Checks
- Automated Compliance Reporting
- Example Prompts
- Best Practices
- Kiro CLI Integration
- Additional Resources
cis-iam-checks.sh
echo "=== CIS IAM Compliance Checks ==="
echo "1.1: Checking root account usage..."
awk -F, 'NR==2 {print $5,$11}')
echo " Root password last used: $root_usage"
echo "1.2: Checking root MFA..."
echo " Root MFA enabled: $root_mfa"
echo "1.3: Checking for unused credentials (>90 days)..."
aws iam get-credential-report --output text | \
awk -F, 'NR>1 {What does the aws-compliance-checker skill do?
Automated compliance checking against CIS, PCI-DSS, HIPAA, and SOC 2 benchmarks
How do I install it?
Run `npx skills add sickn33/agentic-awesome-skills --skill aws-compliance-checker --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.