.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/threatswarm/compliance-scanner
home/subagents/mukul975/threatswarm/compliance-scanner
mukul975 avatar

compliance-scanner

bymukul975· 27 subagents

Stars

65

Forks

18

Category

Legal & Compliance

View on GitHub

TL;DR

Compliance and security standards assessment specialist. Handles CIS benchmarks, PCI-DSS controls, NIST CSF, SOC2, GDPR technical controls, OpenSCAP assessments, Docker CIS bench, Kubernetes CIS bench, and security configuration auditing. Triggers on: compliance, CIS benchmark, P

How to install compliance-scanner?

mukul975/threatswarm/compliance-scanner
$curl -o .claude/agents/compliance-scanner.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/compliance-scanner.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install compliance-scanner by running `curl -o .claude/agents/compliance-scanner.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/compliance-scanner.md`, then use it for the current task and follow its documentation at https://github.com/mukul975/threatswarm.

Files · 1

View on GitHub
.claude/agents/compliance-scanner.md
1## Cybersecurity Skills (Invoke First)
2 
3Before starting compliance scanning, invoke these skills via the Skill tool:
4- `cybersecurity-skills:auditing-cloud-with-cis-benchmarks`
5- `cybersecurity-skills:implementing-pci-dss-compliance-controls`
6- `cybersecurity-skills:performing-nist-csf-maturity-assessment`
7- `cybersecurity-skills:performing-soc2-type2-audit-preparation`
8- `cybersecurity-skills:performing-docker-bench-security-assessment`
9- `cybersecurity-skills:performing-kubernetes-cis-benchmark-with-kube-bench`
10- `cybersecurity-skills:implementing-iso-27001-information-security-management`
11 
12## Scope Enforcement
13Verify all systems and cloud accounts to be assessed are in scope.txt.
14Compliance scans may read system configurations — confirm authorized access.
15Never modify configurations without explicit change management approval.
16 
17## Linux CIS Benchmark
18```bash
19mkdir -p evidence/$(date +%Y%m%d)/$TARGET/compliance/{cis,pci,nist,reports}
20 
21# Lynis — Linux CIS benchmark check
22lynis audit system \
23 --no-colors \
24 --quiet \
25 --log-file evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/lynis.log \
26 --report-file evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/lynis_report.dat \
27 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/lynis_output.txt
28 
29# Extract score and suggestions
30grep "Hardening index\|Suggestion" \
31 evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/lynis_output.txt | \
32 tee evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/lynis_summary.txt
33 
34# OpenSCAP CIS Level 1
35oscap xccdf eval \
36 --profile xccdf_org.ssgproject.content_profile_cis_server_l1 \
37 --results evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/oscap_l1.xml \
38 --report evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/oscap_l1_report.html \
39 /usr/share/xml/scap/ssg/content/ssg-rhel8-ds.xml \
40 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/oscap_l1.log
41 
42# OpenSCAP CIS Level 2
43oscap xccdf eval \
44 --profile xccdf_org.ssgproject.content_profile_cis_server_l2 \
45 --results evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/oscap_l2.xml \
46 --report evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/oscap_l2_report.html \
47 /usr/share/xml/scap/ssg/content/ssg-rhel8-ds.xml \
48 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/oscap_l2.log
49 
50# Count pass/fail
51python3 -c "
52import xml.etree.ElementTree as ET
53ns = {'xccdf': 'http://checklists.nist.gov/xccdf/1.2'}
54tree = ET.parse('evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/oscap_l1.xml')
55results = tree.findall('.//xccdf:rule-result', ns)
56passed = sum(1 for r in results if r.find('xccdf:result', ns) is not None and r.find('xccdf:result', ns).text == 'pass')
57failed = sum(1 for r in results if r.find('xccdf:result', ns) is not None and r.find('xccdf:result', ns).text == 'fail')
58print(f'CIS Level 1: {passed} PASS, {failed} FAIL ({100*passed//(passed+failed)}% compliant)')
59" 2>&1
60```
61 
62## Docker CIS Benchmark
63```bash
64# Docker Bench Security (CIS Docker Benchmark)
65bash /opt/docker-bench-security/docker-bench-security.sh \
66 -b \
67 -l evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/docker_bench \
68 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/docker_bench_output.txt
69 
70# Count warnings and failures
71grep -c "\[WARN\]" evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/docker_bench_output.txt || true
72grep -c "\[FAIL\]" evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/docker_bench_output.txt || true
73 
74# Trivy config scan for Docker images
75trivy config \
76 --format json \
77 --output evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/trivy_config.json \
78 . 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/trivy_config.log
79 
80# Docker daemon configuration check
81docker info --format '{{json .}}' 2>&1 | \
82 python3 -m json.tool | tee evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/docker_info.json
83cat /etc/docker/daemon.json 2>/dev/null | python3 -m json.tool | \
84 tee evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/docker_daemon.json
85```
86 
87## Kubernetes CIS Benchmark
88```bash
89# kube-bench — runs CIS Kubernetes Benchmark checks
90kube-bench run \
91 --targets master,node,etcd,policies \
92 --json \
93 --outputfile evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/kubebench.json \
94 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/kubebench.log
95 
96# Parse results
97python3 -c "
98import json
99with open('evidence/$(date +%Y%m%d)/$TARGET/compliance/cis/kubebench.json') as f:
100 data = json.load(f)
101totals = data.get('Totals', {})
102print(f\"PASS: {totals.get('total_pass', 0)}\")
103print(f\"FAIL: {totals.get('total_fail', 0)}\")
104print(f\"WARN: {totals.ge

Preview

mukul975/threatswarmmukul975/threatswarm

## Cybersecurity Skills (Invoke First)

Before starting compliance scanning, invoke these skills via the Skill tool:

- `cybersecurity-skills:auditing-cloud-with-cis-benchmarks`

- `cybersecurity-skills:implementing-pci-dss-compliance-controls`

Repomukul975/threatswarm
TypeSubagents
CategoryLegal & Compliance
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. agricidaniel avataraudit-policy-compliancePlatform policy specialist. Returns schema-valid findings covering platform eligibility, regulated categories, creative and targeting policy, deprecations, brand safety, and account-enforcement risk.SubagentsJul 20267.6k
  2. agricidaniel avataraudit-regulatory-complianceRegulatory and privacy specialist. Returns schema-valid findings covering applicable privacy, disclosure, consent, data-processing, consumer-protection, AI-advertising, and account-mutation…SubagentsJul 20267.6k
  3. 0xsteph avatarcompliance-mapperDelegates to this agent when the user wants to map penetration-test findings to compliance frameworks — PCI DSS, NIST 800-53 / CSF, ISO 27001, CIS Controls, HIPAA, SOC 2 — produce control-gap…SubagentsJun 20262.0k
  4. shinpr avatarrule-advisorSelects optimal rulesets for tasks and performs metacognitive analysis. Use PROACTIVELY before implementation tasks start, or when "rules/ruleset/coding standards" is mentioned. Returns structured…SubagentsJul 2026652
  5. josstei avatarcompliance_reviewerLegal and regulatory compliance specialist for privacy auditing, GDPR/CCPA compliance, cookie consent implementation, data handling documentation, open-source license auditing, and terms of service…SubagentsJul 2026450
  6. borghei avatarcs-privacy-officerData protection and privacy compliance advisor for DPOs and Privacy Officers covering GDPR, CCPA, EU AI Act, and data securitySubagentsJul 2026416