Trust Assessment
china-market-gateway received a trust score of 68/100, placing it in the Caution category. This skill has some security considerations that users should review before deployment.
SkillShield's automated analysis identified 5 findings: 0 critical, 0 high, 5 medium, and 0 low severity. Key findings include Missing required field: name, Suspicious import: requests, Unencrypted HTTP communication for Sina Finance API.
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 Findings5
| Severity | Finding | Layer | Location | |
|---|---|---|---|---|
| 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/etherdrake/china-market-gateway/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/etherdrake/china-market-gateway/__init__.py:7 | |
| MEDIUM | Unencrypted HTTP communication for Sina Finance API The skill uses `http://hq.sinajs.cn` to fetch real-time stock quotes from Sina Finance. This uses unencrypted HTTP, making the data vulnerable to interception, tampering, or man-in-the-middle attacks. While the data is public, its integrity and authenticity cannot be guaranteed. This is observed in both `SKILL.md` and `__init__.py`. Use HTTPS for all external API calls if available. Check if Sina Finance provides an HTTPS endpoint for this data. If not, consider alternative data sources that support HTTPS. | LLM | SKILL.md:79 | |
| MEDIUM | Unencrypted HTTP communication for Tencent Finance API The skill uses `http://qt.gtimg.cn` to fetch real-time stock quotes from Tencent Finance. This uses unencrypted HTTP, making the data vulnerable to interception, tampering, or man-in-the-middle attacks. While the data is public, its integrity and authenticity cannot be guaranteed. This is observed in both `SKILL.md` and `__init__.py`. Use HTTPS for all external API calls if available. Check if Tencent Finance provides an HTTPS endpoint for this data. If not, consider alternative data sources that support HTTPS. | LLM | SKILL.md:150 | |
| MEDIUM | Unpinned dependencies in skill package The skill package does not specify exact versions for its Python dependencies (`requests`, `bs4`, etc.) using a `requirements.txt` or similar lock file. This can lead to supply chain risks, as installing the skill at a later date might pull in newer versions of dependencies that contain breaking changes, security vulnerabilities, or even malicious code. Create a `requirements.txt` file (or `pyproject.toml` with `poetry.lock`/`pipenv.lock`) and pin all direct and transitive dependencies to exact versions. Regularly audit and update these dependencies. | LLM | N/A |
Scan History
Embed Code
[](https://skillshield.io/report/e666a36cca2e7014)
Powered by SkillShield