{skill-name}
Audited by Socket on Sep 6, 2026
3 alerts found:
Anomalyx3No explicit malicious behavior (e.g., exfiltration, backdoor mechanisms, or hardcoded secrets) is visible in the provided workflow snippet. The primary supply-chain/security concern is that the workflow conditionally executes an unverified, repository-controlled JavaScript file in a privileged CI context and then uses its generated output to mutate repository state. If the triage script or its dependencies are compromised, this workflow could enable unauthorized automation and potentially misuse provided tokens. Recommended mitigations include pinning/verifying the triage script (integrity checks), restricting token scopes/permissions, and validating/sanitizing triage-results.json fields before applying comments/labels.
SUSPICIOUS: The skill’s purpose and capabilities are mostly aligned, and it does not obviously harvest credentials or route data through attacker-controlled gateways. Risk comes from executing opaque bundled scripts and from syncing untrusted remote content that agents may later treat as local trusted context.
No explicit malware/backdoor is evident in the snippet, but the code is security-sensitive: it performs arbitrary git and HTTP fetching based on mesh.json, writes fetched content into configuration-controlled local paths, and uses eval to execute a constructed curl command. Additionally, when bearer auth is enabled, it reads a secret from an environment variable and sends it as an Authorization header to a URL chosen by mesh.json. If mesh.json (or the relevant environment token) is attacker-influenced, this creates substantial supply-chain compromise and command-injection/secret-exposure risk. Recommend eliminating eval, validating/allowlisting URLs and destination paths, and constraining operations to a fixed workspace.