Updates the "Prowler at a Glance" table in README.md with accurate provider statistics. Trigger: When updating README.md provider stats, checks count, services count, compliance frameworks, or categories.
Use this skill when updating the Prowler at a Glance table in the root README.md. This table tracks the number of checks, services, compliance frameworks, and categories for each supported provider.
Run the following command for each provider and each metric:
python3 prowler-cli.py <provider> --list-<metric>
Providers: aws, azure, gcp, kubernetes, github, m365, oraclecloud, alibabacloud, cloudflare, mongodbatlas, openstack, nhn
, , ,
checksservicescompliancecategoriesThe CLI output ends with a summary line like:
There are 572 available checks.
There is 1 available Compliance Framework.
Extract the number from the summary line. Note that singular results use "There is" instead of "There are".
Use this one-liner to collect all stats at once (handles both singular and plural output):
for provider in aws azure gcp kubernetes github m365 oraclecloud alibabacloud cloudflare mongodbatlas openstack nhn; do
for metric in checks services compliance categories; do
result=$(python3 prowler-cli.py $provider --list-$metric 2>&1 | sed -n 's/.*There \(are\|is\) .*\x1b\[33m\([0-9]*\)\x1b\[0m.*/\2/p')
echo "$provider $metric: $result"
done
done
Edit the table in README.md (located in the # Prowler at a Glance section) with the collected numbers.
Table format:
| Provider | Checks | Services | [Compliance Frameworks](...) | [Categories](...) | Support | Interface |
|---|---|---|---|---|---|---|
| AWS | 572 | 83 | 41 | 17 | Official | UI, API, CLI |
| CLI Provider | Table Display Name |
|---|---|
aws | AWS |
azure | Azure |
gcp | GCP |
kubernetes | Kubernetes |
github | GitHub |
m365 | M365 |
oraclecloud | OCI |
alibabacloud | Alibaba Cloud |
cloudflare | Cloudflare |
mongodbatlas | MongoDB Atlas |
openstack | OpenStack |
nhn | NHN |
These providers delegate to external tools and do NOT use CLI stats:
| Provider | Checks Column | Services | Compliance | Categories |
|---|---|---|---|---|
| IaC | [See trivy docs.](https://trivy.dev/latest/docs/coverage/iac/) | N/A | N/A | N/A |
| LLM | [See promptfoo docs.](https://www.promptfoo.dev/docs/red-team/plugins/) | N/A | N/A | N/A |
Official for all providers except NHN which is UnofficialUI, API, CLI. Exceptions with CLI only: Cloudflare, OpenStack, NHN, LLMpython3 prowler-cli.py) to obtain numbers. Do NOT count files manually.prowler-cli.py in the repository rootREADME.md, section # Prowler at a Glance (around line 100)