Trust Assessment
agentvibes-clawdbot received a trust score of 10/100, placing it in the Untrusted category. This skill has significant security findings that require attention before use in production.
SkillShield's automated analysis identified 25 findings: 13 critical, 10 high, 2 medium, and 0 low severity. Key findings include Arbitrary command execution, File read + network send exfiltration, Hidden network beacons / undisclosed telemetry.
The analysis covered 4 layers: Manifest Analysis, Static Code Analysis, Dependency Graph, LLM Behavioral Safety. The Manifest Analysis layer scored lowest at 0/100, indicating areas for improvement.
Last analyzed on February 14, 2026 (commit 13146e6a). SkillShield performs automated 4-layer security analysis on AI skills and MCP servers.
Layer Breakdown
Behavioral Risk Signals
Security Findings25
| Severity | Finding | Layer | Location | |
|---|---|---|---|---|
| CRITICAL | Arbitrary command execution Remote code download piped to interpreter Review all shell execution calls. Ensure commands are static (not built from user input), use absolute paths, and are strictly necessary. Prefer library APIs over shell commands. | Manifest | skills/paulpreibisch/agentvibes-clawdbot/SKILL.md:315 | |
| CRITICAL | Arbitrary command execution Remote code download piped to interpreter Review all shell execution calls. Ensure commands are static (not built from user input), use absolute paths, and are strictly necessary. Prefer library APIs over shell commands. | Manifest | skills/paulpreibisch/agentvibes-clawdbot/setup.sh:304 | |
| CRITICAL | File read + network send exfiltration SSH key/config file access Remove access to sensitive files not required by the skill's stated purpose. SSH keys, cloud credentials, and browser data should never be read by skills unless explicitly part of their declared functionality. | Manifest | skills/paulpreibisch/agentvibes-clawdbot/SKILL.md:42 | |
| CRITICAL | File read + network send exfiltration SSH key/config file access Remove access to sensitive files not required by the skill's stated purpose. SSH keys, cloud credentials, and browser data should never be read by skills unless explicitly part of their declared functionality. | Manifest | skills/paulpreibisch/agentvibes-clawdbot/SKILL.md:47 | |
| CRITICAL | File read + network send exfiltration SSH key/config file access Remove access to sensitive files not required by the skill's stated purpose. SSH keys, cloud credentials, and browser data should never be read by skills unless explicitly part of their declared functionality. | Manifest | skills/paulpreibisch/agentvibes-clawdbot/SKILL.md:56 | |
| CRITICAL | File read + network send exfiltration SSH key/config file access Remove access to sensitive files not required by the skill's stated purpose. SSH keys, cloud credentials, and browser data should never be read by skills unless explicitly part of their declared functionality. | Manifest | skills/paulpreibisch/agentvibes-clawdbot/SKILL.md:181 | |
| CRITICAL | File read + network send exfiltration SSH key/config file access Remove access to sensitive files not required by the skill's stated purpose. SSH keys, cloud credentials, and browser data should never be read by skills unless explicitly part of their declared functionality. | Manifest | skills/paulpreibisch/agentvibes-clawdbot/setup.sh:40 | |
| CRITICAL | File read + network send exfiltration SSH key/config file access Remove access to sensitive files not required by the skill's stated purpose. SSH keys, cloud credentials, and browser data should never be read by skills unless explicitly part of their declared functionality. | Manifest | skills/paulpreibisch/agentvibes-clawdbot/setup.sh:43 | |
| CRITICAL | File read + network send exfiltration SSH key/config file access Remove access to sensitive files not required by the skill's stated purpose. SSH keys, cloud credentials, and browser data should never be read by skills unless explicitly part of their declared functionality. | Manifest | skills/paulpreibisch/agentvibes-clawdbot/setup.sh:44 | |
| CRITICAL | File read + network send exfiltration SSH key/config file access Remove access to sensitive files not required by the skill's stated purpose. SSH keys, cloud credentials, and browser data should never be read by skills unless explicitly part of their declared functionality. | Manifest | skills/paulpreibisch/agentvibes-clawdbot/setup.sh:49 | |
| CRITICAL | Remote code execution: curl/wget pipe to shell Detected a pattern that downloads and immediately executes remote code. This is a primary malware delivery vector. Never pipe curl/wget output directly to a shell interpreter. | Static | skills/paulpreibisch/agentvibes-clawdbot/SKILL.md:315 | |
| CRITICAL | Remote code execution: curl/wget pipe to shell Detected a pattern that downloads and immediately executes remote code. This is a primary malware delivery vector. Never pipe curl/wget output directly to a shell interpreter. | Static | skills/paulpreibisch/agentvibes-clawdbot/setup.sh:304 | |
| CRITICAL | Unverified remote script execution (curl | bash) The skill's documentation recommends installing the remote receiver script by piping `curl` output directly to `bash`. This practice is highly dangerous as it executes code downloaded from an external source without any integrity verification (e.g., hash check). If the remote repository is compromised or a man-in-the-middle attack occurs, arbitrary malicious code could be executed on the remote device. Avoid piping `curl` output directly to `bash`. Instead, download the script, verify its integrity (e.g., using a cryptographic hash), inspect its content, and then execute it. The `setup.sh` script already provides a more secure method by generating and copying the script over SSH, which should be preferred. | LLM | SKILL.md:240 | |
| HIGH | Hidden network beacons / undisclosed telemetry Command output piped through base64 encoding Remove undisclosed network calls and telemetry. All outbound communication should be documented and necessary for the skill's stated purpose. BCC injection in email tools is almost always malicious. | Manifest | skills/paulpreibisch/agentvibes-clawdbot/setup.sh:149 | |
| HIGH | Sensitive path access: SSH key/config Access to SSH key/config path detected: '~/.ssh/id_ed25519'. This may indicate credential theft. Verify that access to this sensitive path is justified and declared. | Static | skills/paulpreibisch/agentvibes-clawdbot/SKILL.md:42 | |
| HIGH | Sensitive path access: SSH key/config Access to SSH key/config path detected: '~/.ssh/id_ed25519'. This may indicate credential theft. Verify that access to this sensitive path is justified and declared. | Static | skills/paulpreibisch/agentvibes-clawdbot/SKILL.md:47 | |
| HIGH | Sensitive path access: SSH key/config Access to SSH key/config path detected: '~/.ssh/config'. This may indicate credential theft. Verify that access to this sensitive path is justified and declared. | Static | skills/paulpreibisch/agentvibes-clawdbot/SKILL.md:56 | |
| HIGH | Sensitive path access: SSH key/config Access to SSH key/config path detected: '~/.ssh/config'. This may indicate credential theft. Verify that access to this sensitive path is justified and declared. | Static | skills/paulpreibisch/agentvibes-clawdbot/SKILL.md:181 | |
| HIGH | Sensitive path access: SSH key/config Access to SSH key/config path detected: '~/.ssh/id_ed25519'. This may indicate credential theft. Verify that access to this sensitive path is justified and declared. | Static | skills/paulpreibisch/agentvibes-clawdbot/setup.sh:40 | |
| HIGH | Sensitive path access: SSH key/config Access to SSH key/config path detected: '~/.ssh/id_ed25519'. This may indicate credential theft. Verify that access to this sensitive path is justified and declared. | Static | skills/paulpreibisch/agentvibes-clawdbot/setup.sh:43 | |
| HIGH | Sensitive path access: SSH key/config Access to SSH key/config path detected: '~/.ssh/id_ed25519'. This may indicate credential theft. Verify that access to this sensitive path is justified and declared. | Static | skills/paulpreibisch/agentvibes-clawdbot/setup.sh:44 | |
| HIGH | Sensitive path access: SSH key/config Access to SSH key/config path detected: '~/.ssh/config'. This may indicate credential theft. Verify that access to this sensitive path is justified and declared. | Static | skills/paulpreibisch/agentvibes-clawdbot/setup.sh:49 | |
| HIGH | Unpinned global npm dependency installation The `setup.sh` script uses `npm install -g agentvibes` without specifying a version. This means it will always fetch the latest version of the `agentvibes` package. This introduces a supply chain risk because future versions of the package could introduce breaking changes, vulnerabilities, or even malicious code. This applies to both the server and remote device installations. Pin the `agentvibes` dependency to a specific, known-good version (e.g., `npm install -g agentvibes@1.0.0`). Regularly review and update the pinned version after verifying its security and functionality. This applies to both the server-side and remote-side installations of `agentvibes`. | LLM | setup.sh:79 | |
| MEDIUM | Missing required field: name The 'name' field is required for claude_code skills but is missing from frontmatter. Add a 'name' field to the SKILL.md frontmatter. | Static | skills/paulpreibisch/agentvibes-clawdbot/SKILL.md:1 | |
| MEDIUM | Sensitive environment variable access: $HOME Access to sensitive environment variable '$HOME' detected in shell context. Verify this environment variable access is necessary and the value is not exfiltrated. | Static | skills/paulpreibisch/agentvibes-clawdbot/setup.sh:19 |
Scan History
Embed Code
[](https://skillshield.io/report/ddd6b4b5e254bb72)
Powered by SkillShield