Trust Assessment
echodecks received a trust score of 72/100, placing it in the Caution category. This skill has some security considerations that users should review before deployment.
SkillShield's automated analysis identified 3 findings: 0 critical, 1 high, 2 medium, and 0 low severity. Key findings include Missing required field: name, Suspicious import: requests, URL Parameter Injection via Unencoded User Input.
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 13, 2026 (commit 13146e6a). SkillShield performs automated 4-layer security analysis on AI skills and MCP servers.
Layer Breakdown
Behavioral Risk Signals
Security Findings3
| Severity | Finding | Layer | Location | |
|---|---|---|---|---|
| HIGH | URL Parameter Injection via Unencoded User Input The `make_request` function constructs API request URLs by directly concatenating user-provided arguments (e.g., `args.id`, `args.deck_id`) into the query string without proper URL encoding. This allows an attacker, by providing specially crafted input (e.g., `123&admin=true`) to the skill's arguments, to inject arbitrary URL parameters into the API request. This could potentially manipulate API requests, bypass intended access controls, or alter the behavior of the EchoDecks API in unintended ways. Modify the `make_request` function to pass the `params` dictionary directly to the `requests` library's `params` argument for GET requests. This ensures proper URL encoding of all parameters. For example, change `requests.get(url, headers=headers)` to `requests.get(url, headers=headers, params=params)` and remove the manual URL parameter construction loop. | LLM | echodecks_client.py:30 | |
| 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/drgeld/echodecks/SKILL.md:1 | |
| MEDIUM | Suspicious import: requests Import of 'requests' detected. This module provides network or low-level system access. Verify this import is necessary. Network and system modules in skill code may indicate data exfiltration. | Static | skills/drgeld/echodecks/echodecks_client.py:6 |
Scan History
Embed Code
[](https://skillshield.io/report/87e64775ecfeecc8)
Powered by SkillShield