Trust Assessment
migrator received a trust score of 90/100, placing it in the Trusted category. This skill has passed all critical security checks and demonstrates strong security practices.
SkillShield's automated analysis identified 3 findings: 0 critical, 0 high, 1 medium, and 1 low severity. Key findings include Unpinned npm dependency version, Node lockfile missing, Unpinned dependencies in package.json.
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 | |
|---|---|---|---|---|
| MEDIUM | Unpinned npm dependency version Dependency 'archiver' is not pinned to an exact version ('^7.0.0'). Pin dependencies to exact versions to reduce drift and supply-chain risk. | Dependencies | skills/wenjie2024/openclaw-migrator/package.json | |
| LOW | Node lockfile missing package.json is present but no lockfile was found (package-lock.json, pnpm-lock.yaml, or yarn.lock). Commit a lockfile for deterministic dependency resolution. | Dependencies | skills/wenjie2024/openclaw-migrator/package.json | |
| INFO | Unpinned dependencies in package.json The `package.json` file uses caret (`^`) ranges for its dependencies (`archiver`, `tar`, `fs-extra`, `commander`). While common in Node.js projects, this practice allows automatic updates to new minor or patch versions. This introduces a slight supply chain risk, as a new version could potentially introduce vulnerabilities or unintended behavior without explicit review. For security-sensitive tools, pinning dependencies to exact versions or using tilde (`~`) ranges for patch-only updates can enhance supply chain security by ensuring deterministic builds. Consider pinning dependencies to exact versions (e.g., `"archiver": "7.0.0"`) or using tilde ranges (e.g., `"archiver": "~7.0.0"`) to restrict updates to patch versions only. Implement a dependency audit process to regularly check for known vulnerabilities. | LLM | package.json:15 |
Scan History
Embed Code
[](https://skillshield.io/report/5046c9125fc11ba6)
Powered by SkillShield