Trust Assessment
spacesuit received a trust score of 51/100, placing it in the Caution category. This skill has some security considerations that users should review before deployment.
SkillShield's automated analysis identified 4 findings: 1 critical, 0 high, 3 medium, and 0 low severity. Key findings include Missing required field: name, Sensitive environment variable access: $HOME, Sensitive environment variable access: $USER.
The analysis covered 4 layers: Manifest Analysis, Static Code Analysis, Dependency Graph, LLM Behavioral Safety. All layers scored 70 or above, reflecting consistent security practices.
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 | Shell Command Injection via User-Controlled Path The 'scripts/sync-operators.sh' script constructs a file path using user-controlled input (via the '--workspace' argument or 'OPENCLAW_SESSIONS_DIR'/'OPENCLAW_PROFILE' environment variables) and then uses shell globbing with this path. If the user-controlled path contains shell metacharacters (e.g., ';', '|', '&', '$()', '`'), these characters will be interpreted and executed by the shell before the 'grep' command is invoked, leading to arbitrary command injection. To prevent shell command injection, avoid using shell globbing with user-controlled paths. Instead of `"$SESSIONS_DIR"/*.jsonl`, use `grep -rohE '...' -r "$SESSIONS_DIR" --include='*.jsonl'` to ensure the directory path is treated literally and globbing is handled internally by grep. Alternatively, use `find` with `-exec` or `xargs` for safer file processing of files within user-controlled directories. | LLM | scripts/sync-operators.sh:90 | |
| 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/jontsai/spacesuit/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/jontsai/spacesuit/scripts/sync-operators.sh:56 | |
| MEDIUM | Sensitive environment variable access: $USER Access to sensitive environment variable '$USER' detected in shell context. Verify this environment variable access is necessary and the value is not exfiltrated. | Static | skills/jontsai/spacesuit/tests/test_upgrade.sh:47 |
Scan History
Embed Code
[](https://skillshield.io/report/cabadf9ef60a0728)
Powered by SkillShield