{
  "trust": {
    "tier": "Dangerous",
    "emoji": "🔴",
    "description": "Multiple critical issues — do not install without thorough manual review",
    "score": 20
  },
  "format": "skill",
  "skill": {
    "name": "create-new-openclaw-in-gcp",
    "description": null,
    "version": null,
    "slug": "create-new-openclaw-in-gcp"
  },
  "scores": {
    "security": 0,
    "transparency": 2,
    "maintenance": 7,
    "overall": 2
  },
  "permissions": {
    "summary": "No declared permissions — minimal attack surface.",
    "environmentVariables": [],
    "binaries": [],
    "envVarCount": 0,
    "requiredBinCount": 0
  },
  "compoundThreats": [
    {
      "id": "credential_theft",
      "severity": "high",
      "description": "Accesses credentials AND sends data externally — potential credential theft",
      "capabilities": [
        "credential_access",
        "network_out"
      ],
      "owasp": [
        "LLM02"
      ],
      "owaspAsi": [
        "ASI03"
      ]
    },
    {
      "id": "credential_store_access",
      "severity": "critical",
      "description": "Accesses system credential store AND sends data externally",
      "capabilities": [
        "credential_store",
        "network_out"
      ],
      "owasp": [
        "LLM02"
      ],
      "owaspAsi": [
        "ASI03"
      ]
    }
  ],
  "permissionIntegrity": [
    {
      "type": "undeclared_capability",
      "severity": "high",
      "description": "Makes network requests but does not declare curl/wget in required binaries",
      "declared": [],
      "actual": "network_out",
      "owasp": [
        "LLM06"
      ],
      "owaspAsi": [
        "ASI02"
      ]
    },
    {
      "type": "undeclared_capability",
      "severity": "high",
      "description": "Code accesses API keys/tokens but declares no environment variables",
      "actual": "credential_access",
      "owasp": [
        "LLM06"
      ],
      "owaspAsi": [
        "ASI02"
      ]
    },
    {
      "type": "opaque_dependency",
      "severity": "medium",
      "description": "Installs packages at runtime — transitive dependencies are not auditable",
      "actual": "package_install",
      "owasp": [
        "LLM03"
      ],
      "owaspAsi": [
        "ASI04"
      ]
    }
  ],
  "capabilities": [
    "network_out",
    "network_in",
    "credential_access",
    "credential_store",
    "package_install"
  ],
  "findings": [
    {
      "severity": "critical",
      "category": "credentials",
      "description": "Possible hardcoded credential",
      "zone": "code",
      "zoneContext": "instruction",
      "file": "SKILL.md",
      "downgraded": false,
      "sample": "TOKEN=\"sk-ant-oat01-...",
      "owasp": [
        "LLM02"
      ],
      "owaspAsi": [
        "ASI03"
      ],
      "confidence": "pattern"
    },
    {
      "severity": "critical",
      "category": "shell_injection",
      "description": "Pipe-to-shell pattern (curl | sh) — supply chain attack vector",
      "zone": "code",
      "zoneContext": "instruction",
      "file": "SKILL.md",
      "downgraded": false,
      "sample": "curl -fsSL https://tailscale.com/install.sh | sh",
      "owasp": [
        "LLM05",
        "LLM06"
      ],
      "owaspAsi": [
        "ASI02",
        "ASI05"
      ],
      "confidence": "pattern"
    },
    {
      "severity": "high",
      "category": "shell_injection",
      "description": "References sudo — requests elevated privileges",
      "zone": "code",
      "zoneContext": "instruction",
      "file": "SKILL.md",
      "downgraded": false,
      "sample": "sudo",
      "owasp": [
        "LLM05",
        "LLM06"
      ],
      "owaspAsi": [
        "ASI02",
        "ASI05"
      ],
      "confidence": "pattern"
    },
    {
      "severity": "high",
      "category": "credentials",
      "description": "References SSH/GPG private keys",
      "zone": "code",
      "zoneContext": "instruction",
      "file": "SKILL.md",
      "downgraded": false,
      "sample": "ssh-key",
      "owasp": [
        "LLM02"
      ],
      "owaspAsi": [
        "ASI03"
      ],
      "confidence": "pattern"
    },
    {
      "severity": "high",
      "category": "credentials",
      "description": "Accesses .ssh directory",
      "zone": "code",
      "zoneContext": "instruction",
      "file": "SKILL.md",
      "downgraded": false,
      "sample": ".ssh/",
      "owasp": [
        "LLM02"
      ],
      "owaspAsi": [
        "ASI03"
      ],
      "confidence": "pattern"
    },
    {
      "severity": "high",
      "category": "filesystem",
      "description": "Accesses OpenClaw config/secrets directly",
      "zone": "code",
      "zoneContext": "instruction",
      "file": "SKILL.md",
      "downgraded": false,
      "sample": "~/.openclaw/openclaw.json",
      "owasp": [
        "LLM06"
      ],
      "owaspAsi": [
        "ASI02"
      ],
      "confidence": "pattern"
    },
    {
      "severity": "high",
      "category": "shell_injection",
      "description": "apt-get install — installs system packages",
      "zone": "code",
      "zoneContext": "instruction",
      "file": "SKILL.md",
      "downgraded": false,
      "sample": "apt-get install",
      "owasp": [
        "LLM05",
        "LLM06"
      ],
      "owaspAsi": [
        "ASI02",
        "ASI05"
      ],
      "confidence": "pattern"
    },
    {
      "severity": "critical",
      "category": "shell_injection",
      "description": "Pipe to bash — executes piped content as shell commands",
      "zone": "code",
      "zoneContext": "instruction",
      "file": "SKILL.md",
      "downgraded": false,
      "sample": "| bash",
      "owasp": [
        "LLM05",
        "LLM06"
      ],
      "owaspAsi": [
        "ASI02",
        "ASI05"
      ],
      "confidence": "pattern"
    },
    {
      "severity": "critical",
      "category": "shell_injection",
      "description": "Pipe to sh — executes piped content as shell commands",
      "zone": "code",
      "zoneContext": "instruction",
      "file": "SKILL.md",
      "downgraded": false,
      "sample": "| sh",
      "owasp": [
        "LLM05",
        "LLM06"
      ],
      "owaspAsi": [
        "ASI02",
        "ASI05"
      ],
      "confidence": "pattern"
    }
  ],
  "summary": {
    "total": 9,
    "critical": 4,
    "high": 5,
    "medium": 0,
    "low": 0,
    "compoundThreats": 2,
    "integrityIssues": 3
  },
  "trustSignals": {
    "positive": [
      {
        "signal": "documented",
        "positive": true,
        "detail": "SKILL.md has substantial documentation"
      }
    ],
    "negative": [
      {
        "signal": "versioned",
        "positive": false,
        "detail": "No version declared"
      },
      {
        "signal": "described",
        "positive": false,
        "detail": "Missing or minimal description"
      },
      {
        "signal": "undeclared_env",
        "positive": false,
        "detail": "Uses credentials in code but declares no env vars"
      },
      {
        "signal": "opaque_deps",
        "positive": false,
        "detail": "Installs packages at runtime — transitive dependencies are unauditable"
      }
    ]
  },
  "files": {
    "hasExecutableCode": false,
    "executableFiles": [],
    "totalFiles": 2
  },
  "humanSummary": "create-new-openclaw-in-gcp scores 20/100 (Dangerous). It declares no permissions. Accesses system credential store AND sends data externally. 2 undeclared capabilities detected — the skill does more than its permissions suggest. 4 critical pattern matches in code.",
  "auditedAt": "2026-04-23T03:44:10.211Z",
  "vtEnrichment": {
    "checked": 2,
    "flagged": 0,
    "urls": [
      {
        "url": "https://tailscale.com/install.sh",
        "malicious": 1,
        "suspicious": 0,
        "engines": 91,
        "cached": true
      },
      {
        "url": "https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh",
        "malicious": 1,
        "suspicious": 0,
        "engines": 91,
        "cached": true
      }
    ]
  }
}