Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

cloudguardcloudguard 搜索

Agent Skill

cloudguard 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,631

周安装

113

GitHub Stars

公开资料未说明

下载量

922
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cloudguard(cloudguard 搜索)
来源仓库:https://github.com/suhteevah/cloudguard
安装命令:
openclaw skills install cloudguard
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install cloudguard

简介

用于扫描云基础设施和 IaC 配置中的安全风险,检测不安全的 Terraform 或存储桶设置。

  • 识别开放 S3 存储桶、宽松 IAM 策略、缺失加密和暴露端口等问题。
  • 通过 clawhub 安装,需参考原始 README 了解扫描规则和可集成性。
  • 使用前应确认目标云平台权限范围及扫描结果误报处理方式。
  • cloudguard 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
CloudGuard
version
1.0.0
description
Cloud infrastructure & IaC security scanner -- detects insecure Terraform, open S3 buckets, permissive IAM, missing encryption, exposed ports, and cloud misconfigurations
homepage
https://cloudguard.pages.dev
metadata
user-invocable
true
disable-model-invocation
false

CloudGuard -- Cloud Infrastructure & IaC Security Scanner

CloudGuard scans codebases for insecure cloud infrastructure patterns including Terraform misconfigurations, open S3 buckets, overly permissive IAM policies, missing encryption at rest, exposed ports, absent logging and monitoring, and general cloud compliance gaps. It uses 90 regex-based patterns across 6 security categories, produces severity-graded reports with actionable remediation, and integrates with git hooks via lefthook. 100% local. Zero telemetry.

Commands

Free Tier (No license required)

cloudguard scan [file|directory]

One-shot cloud security scan of infrastructure-as-code files or directories.

How to execute:

bash "<SKILL_DIR>/scripts/dispatcher.sh" --path [target]

What it does:

  1. Accepts a file path or directory (defaults to current directory)
  2. Discovers all IaC and configuration files (Terraform .tf, CloudFormation .yml/.yaml/.json, Dockerfiles, Kubernetes manifests, cloud config files)
  3. Runs 30 cloud security patterns against each file (free tier limit)
  4. Skips .git, node_modules, .terraform, vendor, and other non-IaC directories
  5. Respects .gitignore and allowlist files
  6. Calculates a cloud security score (0-100) per file and overall
  7. Grades: A (90-100), B (80-89), C (70-79), D (60-69), F (<60)
  8. Outputs findings with: file, line number, check ID, severity, category, description, recommendation
  9. Exit code 0 if score >= 70, exit code 1 if score < 70 (too many misconfigurations)
  10. Free tier limited to first 30 of 90 patterns

Example usage scenarios:

  • "Scan my Terraform for security issues" -> runs cloudguard scan .
  • "Check my cloud config for misconfigurations" -> runs cloudguard scan infra/
  • "Audit my AWS infrastructure code" -> runs cloudguard scan terraform/
  • "Find open S3 buckets in my IaC" -> runs cloudguard scan .

Pro Tier ($19/user/month -- requires CLOUDGUARD_LICENSE_KEY)

cloudguard scan [file|directory] (Pro -- 60 patterns)

Full scan with 60 of 90 patterns unlocked covering all 6 categories in depth.

bash "<SKILL_DIR>/scripts/dispatcher.sh" --path [target] --tier pro

cloudguard hooks install

Install git pre-commit hooks that scan staged IaC files for cloud security issues before every commit.

How to execute:

bash "<SKILL_DIR>/scripts/dispatcher.sh" hooks install

What it does:

  1. Validates Pro+ license
  2. Copies lefthook config to project root
  3. Installs lefthook pre-commit and pre-push hooks
  4. On every commit: scans all staged IaC files for cloud misconfigurations, blocks commit if critical/high findings, shows remediation advice

cloudguard hooks uninstall

Remove CloudGuard git hooks.

bash "<SKILL_DIR>/scripts/dispatcher.sh" hooks uninstall

cloudguard report [directory]

Generate a markdown cloud security report with findings, severity breakdown, category analysis, and remediation steps.

bash "<SKILL_DIR>/scripts/dispatcher.sh" --path [directory] --format text report

What it does:

  1. Validates Pro+ license
  2. Runs full scan of the directory with 60 patterns
  3. Generates a formatted markdown report from template
  4. Includes per-category breakdowns, cloud security score, remediation priority
  5. Output suitable for security reviews and compliance audits

cloudguard audit [directory]

Deep cloud security audit across all categories.

bash "<SKILL_DIR>/scripts/dispatcher.sh" --path [directory] audit

What it does:

  1. Validates Pro+ license
  2. Runs comprehensive scan with extended pattern set
  3. Provides per-category severity analysis
  4. Reports compliance gaps across S3, IAM, networking, encryption, logging, and configuration

Team Tier ($39/user/month -- requires CLOUDGUARD_LICENSE_KEY with team tier)

cloudguard scan [file|directory] (Team -- all 90 patterns)

Full scan with all 90 patterns unlocked.

bash "<SKILL_DIR>/scripts/dispatcher.sh" --path [target] --tier team

cloudguard scan --format json [directory]

JSON output for CI/CD pipeline integration.

bash "<SKILL_DIR>/scripts/dispatcher.sh" --path [directory] --format json

What it does:

  1. Validates Team+ license
  2. Runs full scan with all 90 patterns
  3. Outputs findings in structured JSON format
  4. Compatible with CI/CD pipelines, dashboards, and automated tooling
  5. Includes rule definitions, severity mappings, and category breakdowns

cloudguard scan --format html [directory]

HTML report output for stakeholder sharing.

bash "<SKILL_DIR>/scripts/dispatcher.sh" --path [directory] --format html

cloudguard scan --category [category] [directory]

Category-filtered scan for focused audits.

bash "<SKILL_DIR>/scripts/dispatcher.sh" --path [directory] --category S3

What it does:

  1. Validates Team+ license
  2. Runs only the patterns for the specified category
  3. Available categories: S3, IM, NW, EN, LG, CF
  4. Useful for targeted compliance checks

cloudguard status

Show license and configuration information.

bash "<SKILL_DIR>/scripts/dispatcher.sh" status

Check Categories

CloudGuard detects 90 cloud security patterns across 6 categories:

CategoryCodePatternsExamplesSeverity Range
Storage SecurityS315Public S3 buckets, missing encryption, no versioning, overly permissive bucket policies, missing access logging, no lifecycle rulesCritical/High/Medium
IAM & PermissionsIM15Wildcard IAM policies, AdministratorAccess, overly broad assume role, missing MFA, root account usage, no least privilegeCritical/High/Medium
Network SecurityNW15Open security groups (0.0.0.0/0), exposed ports (22, 3389, 3306), missing VPC, no network ACLs, public subnets without NAT, SSH open to worldCritical/High/Medium
EncryptionEN15Missing encryption at rest, no KMS key rotation, unencrypted EBS volumes, missing SSL/TLS, no transit encryption, weak cipher suitesCritical/High/Medium/Low
Logging & MonitoringLG15Missing CloudTrail, no VPC flow logs, disabled GuardDuty, missing alarm configurations, no SNS notifications, absent audit logsHigh/Medium/Low
Configuration & ComplianceCF15Missing tags, no resource naming convention, hardcoded regions, missing backups, no disaster recovery, drift detection gapsMedium/Low

Severity Levels

LevelPoints DeductedMeaningAction Required
Critical25Immediate infrastructure compromise risk (open to internet, no auth, wildcard admin)Fix immediately; block deployment
High15Significant security gap that could be exploited (missing encryption, overly permissive policies)Fix within current sprint
Medium8Security best practice violation that increases attack surfacePlan remediation within 30 days
Low3Informational finding, minor hygiene issue, or hardening recommendationAddress when convenient

Scoring System

CloudGuard uses a 0-100 scoring system:

  • Starting score: 100 (perfect, no findings)
  • Deductions: Each finding deducts points based on severity
  • Floor: Score cannot go below 0
  • Pass threshold: 70 (exit code 0)
  • Fail threshold: Below 70 (exit code 1)

Grade Scale

GradeScore RangeMeaning
A90-100Excellent -- minimal or no cloud security issues
B80-89Good -- minor issues that should be addressed
C70-79Acceptable -- passing but needs improvement
D60-69Poor -- significant security gaps requiring attention
FBelow 60Failing -- critical misconfigurations must be fixed immediately

Tier-Based Pattern Access

TierPatterns AvailableCategories
Free30 patternsFirst 5 patterns per category
Pro60 patternsFirst 10 patterns per category
Team90 patterns (all)All 15 patterns per category
Enterprise90 patterns (all)All 15 patterns per category + priority support

Configuration

Users can configure CloudGuard in ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "cloudguard": {
        "enabled": true,
        "apiKey": "YOUR_LICENSE_KEY_HERE",
        "config": {
          "severityThreshold": "high",
          "ignorePatterns": ["**/test/**", "**/examples/**", "**/fixtures/**"],
          "ignoreChecks": [],
          "reportFormat": "text",
          "categories": ["S3", "IM", "NW", "EN", "LG", "CF"]
        }
      }
    }
  }
}

Supported File Types

CloudGuard scans the following file types for cloud security patterns:

File TypeExtensionsUse Case
Terraform.tf, .tfvarsHashiCorp Terraform IaC definitions
CloudFormation.yml, .yaml, .json, .templateAWS CloudFormation templates
Kubernetes.yml, .yamlKubernetes manifests and Helm charts
DockerDockerfile, docker-compose.ymlContainer configurations
Ansible.yml, .yamlAnsible playbooks and roles
General Config.conf, .cfg, .ini, .toml, .hclInfrastructure configuration files
Scripts.sh, .bash, .ps1, .pyDeployment and provisioning scripts
Policy.json, .regoIAM policies, OPA Rego rules

Important Notes

  • Free tier works immediately with no configuration
  • All scanning happens locally -- no code is sent to external servers
  • License validation is offline -- no phone-home or network calls
  • Pattern matching only -- no AST parsing, no external dependencies beyond bash and grep
  • Supports scanning all IaC file types in a single pass
  • Git hooks use lefthook which must be installed (see install metadata above)
  • Exit codes: 0 = pass (score >= 70), 1 = fail (score < 70, for CI/CD integration)
  • Category-level breakdown shows exactly where security gaps exist

Error Handling

  • If lefthook is not installed and user tries hooks install, prompt to install it
  • If license key is invalid or expired, show clear message with link to https://cloudguard.pages.dev/renew
  • If a file is binary, skip it automatically with no warning
  • If no scannable IaC files found in target, report clean scan with info message
  • If invalid category specified with --category, show available categories
  • If grep does not support -E flag (rare), fall back gracefully with error message

When to Use CloudGuard

The user might say things like:

  • "Scan my Terraform for security issues"
  • "Check my cloud infrastructure code"
  • "Find open S3 buckets in my IaC"
  • "Audit my AWS configuration"
  • "Check for missing encryption in my infrastructure"
  • "Find overly permissive IAM policies"
  • "Scan for exposed ports in my security groups"
  • "Are my CloudFormation templates secure?"
  • "Check my Kubernetes manifests for security"
  • "Run a cloud security audit"
  • "Find missing CloudTrail in my Terraform"
  • "Detect VPC misconfigurations"
  • "Scan for hardcoded regions in my IaC"
  • "Check if my EBS volumes are encrypted"
  • "Find missing tags in my cloud resources"
  • "Set up pre-commit hooks for cloud security"
  • "Generate a cloud security report for my team"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.26%
按下载量换算851

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills