Trust Assessment
moltbook received a trust score of 91/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, Unpinned dependencies in package.json, API Key retrieved from environment or config file.
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 'commander' is not pinned to an exact version ('^13.0.0'). Pin dependencies to exact versions to reduce drift and supply-chain risk. | Dependencies | skills/molty-assistant/moltbook-cli/package.json | |
| LOW | Unpinned dependencies in package.json The `package.json` file specifies dependencies using caret (`^`) ranges (e.g., `commander: "^13.0.0"`). While `package-lock.json` pins exact versions for deterministic builds, using broad version ranges in `package.json` can lead to unexpected updates and potential introduction of vulnerabilities if the lock file is not strictly enforced or is missing during installation. Pin exact versions in `package.json` (e.g., `commander: "13.0.0"`) to ensure consistent dependency resolution. Alternatively, ensure `package-lock.json` is always committed and used for all installations, and regularly review dependency updates. | LLM | package.json:14 | |
| INFO | API Key retrieved from environment or config file The skill retrieves the `MOLTBOOK_API_KEY` from environment variables (`process.env.MOLTBOOK_API_KEY`) or a local configuration file (`~/.config/moltbook/credentials.json`). This is necessary for the skill's operation to authenticate with Moltbook. While not inherently malicious, it signifies that the skill handles sensitive credentials. If the skill's execution environment or the local configuration file is compromised, these credentials could be exposed. Implement robust access controls for the skill's execution environment. Ensure the `credentials.json` file has appropriate file permissions (e.g., `chmod 600`) to restrict unauthorized access. For production deployments, consider using a dedicated secrets management service. | LLM | src/index.ts:16 |
Scan History
Embed Code
[](https://skillshield.io/report/ab8cf1597fd097fa)
Powered by SkillShield