Trust Assessment
Kaspa Wallet received a trust score of 10/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 5 findings: 2 critical, 2 high, 1 medium, and 0 low severity. Key findings include Malicious install hooks, Arbitrary command execution, Dangerous call: subprocess.run().
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 13, 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 | |
|---|---|---|---|---|
| CRITICAL | Malicious install hooks Python setup.py with suspicious imports Review all lifecycle scripts carefully. Remove install hooks that make network requests, execute shell commands, or access environment variables. Use --ignore-scripts for npm installs when possible. | Manifest | skills/manyfestation/trial/install.py:146 | |
| CRITICAL | Arbitrary command execution Python shell execution (os.system, subprocess) 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/manyfestation/trial/install.py:89 | |
| HIGH | Dangerous call: subprocess.run() Call to 'subprocess.run()' detected in function 'run_command'. This can execute arbitrary code. Avoid using dangerous functions like exec/eval/os.system. Use safer alternatives. | Static | skills/manyfestation/trial/install.py:89 | |
| HIGH | Unpinned Dependency in requirements.txt The 'kaspa' dependency in 'requirements.txt' is not pinned to a specific version. This introduces a supply chain risk, as future installations could pull a new, potentially malicious, or incompatible version of the library without explicit review. An attacker could publish a malicious update to the 'kaspa' package, which would then be automatically installed. Pin the 'kaspa' dependency to a specific version (e.g., 'kaspa==X.Y.Z') or at least a major/minor version (e.g., 'kaspa~=X.Y') to ensure deterministic and secure installations. | LLM | requirements.txt:1 | |
| MEDIUM | Unpinned Python dependency version Requirement 'kaspa' is not pinned to an exact version. Pin Python dependencies with '==<exact version>'. | Dependencies | skills/manyfestation/trial/requirements.txt:1 |
Scan History
Embed Code
[](https://skillshield.io/report/314ae887393a3b09)
Powered by SkillShield