Trust Assessment
ClawDoro received a trust score of 27/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 4 findings: 2 critical, 0 high, 2 medium, and 0 low severity. Key findings include Arbitrary command execution, Sensitive environment variable access: $HOME, Skill uses `execSync` for shell command execution.
The analysis covered 4 layers: Manifest Analysis, Static Code Analysis, Dependency Graph, LLM Behavioral Safety. The Manifest Analysis layer scored lowest at 40/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 Findings4
| Severity | Finding | Layer | Location | |
|---|---|---|---|---|
| CRITICAL | Arbitrary command execution Node.js child_process require 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/snail3d/clawforgod/skills/pomodoro/trigger.js:7 | |
| CRITICAL | Arbitrary command execution Node.js synchronous shell execution 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/snail3d/clawforgod/skills/pomodoro/trigger.js:43 | |
| 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/snail3d/clawforgod/skills/pomodoro/start.sh:4 | |
| MEDIUM | Skill uses `execSync` for shell command execution The `trigger.js` script utilizes `child_process.execSync` to execute shell commands. While the specific command `open http://localhost:${PORT}` appears safe in this context (as `PORT` is not directly user-controlled and arguments are `parseInt`ed), the use of `execSync` grants the skill broad capabilities to execute arbitrary commands on the host system. This represents an excessive permission, as a malicious modification or a future vulnerability could exploit this powerful primitive to execute arbitrary code. Consider using a more sandboxed or platform-agnostic method for opening a browser, if available, that does not rely on direct shell command execution. If `execSync` is strictly necessary, ensure all arguments passed to it are rigorously sanitized and whitelisted to prevent command injection. For skills, it's generally recommended to avoid direct shell execution primitives like `execSync` unless absolutely unavoidable and with extreme caution. | LLM | trigger.js:40 |
Scan History
Embed Code
[](https://skillshield.io/report/fa7385edf445fc69)
Powered by SkillShield