Trust Assessment
bring-add 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 Unsafe deserialization / dynamic eval, Unpinned npm dependency version, Unpinned dependency `bring-shopping`.
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 Findings3
| Severity | Finding | Layer | Location | |
|---|---|---|---|---|
| HIGH | Unpinned dependency `bring-shopping` The `package.json` file specifies `"bring-shopping": "*"`, which means the skill will always fetch the latest version of the `bring-shopping` package. This is a significant supply chain risk as a new, potentially malicious or incompatible version could be introduced without explicit review, leading to unexpected behavior or security vulnerabilities. Even if `bring-shopping` is a local dependency (as suggested by the `package-lock.json` entry `"../../skills-temp"`), using `*` makes the dependency resolution non-deterministic and prone to unintended updates of the local package. Pin the `bring-shopping` dependency to a specific version (e.g., `"bring-shopping": "2.0.1"`) in `package.json` to ensure deterministic builds and prevent unintended updates. If `bring-shopping` is intended to be a local dependency, consider using a `file:` specifier (e.g., `"bring-shopping": "file:../bring-shopping"`) or a specific version if the local package is versioned. | LLM | package.json:18 | |
| MEDIUM | Unsafe deserialization / dynamic eval Decryption followed by code execution Remove obfuscated code execution patterns. Legitimate code does not need base64-encoded payloads executed via eval, encrypted-then-executed blobs, or dynamic attribute resolution to call system functions. | Manifest | skills/darkdevelopers/bring-add/index.js:8 | |
| MEDIUM | Unpinned npm dependency version Dependency 'bring-shopping' is not pinned to an exact version ('*'). Pin dependencies to exact versions to reduce drift and supply-chain risk. | Dependencies | skills/darkdevelopers/bring-add/package.json |
Scan History
Embed Code
[](https://skillshield.io/report/d88be86a27723ee7)
Powered by SkillShield