Trust Assessment
karmabank received a trust score of 61/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, 2 high, 1 medium, and 1 low severity. Key findings include Unpinned npm dependency version, Direct source dependency in package.json, Node lockfile missing.
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 Findings5
| Severity | Finding | Layer | Location | |
|---|---|---|---|---|
| HIGH | Direct source dependency in package.json Dependency '@circle/openclaw-wallet-skill' uses non-registry source 'file:../skills/circle-wallet', which increases supply-chain risk. Prefer vetted registry releases pinned to exact versions. | Dependencies | skills/abdhilabs/karmabank/package.json | |
| HIGH | Unpinned Local Dependency in package.json The `package.json` file specifies a dependency using the `file:` protocol (`@circle/openclaw-wallet-skill: "file:../skills/circle-wallet"`). This means the dependency is loaded from a local path rather than a package registry. This bypasses package manager integrity checks (e.g., checksums, trusted registries) and introduces a significant supply chain risk. If the local `circle-wallet` skill is compromised or modified, this skill will unknowingly execute the malicious code. Replace the `file:` dependency with a version from a trusted package registry (e.g., npm, GitHub package registry) or a specific commit hash if it's a private repository. Ensure proper integrity checks are in place for all dependencies. | LLM | package.json:36 | |
| MEDIUM | Unpinned npm dependency version Dependency '@circle-fin/developer-controlled-wallets' is not pinned to an exact version ('^10.1.0'). Pin dependencies to exact versions to reduce drift and supply-chain risk. | Dependencies | skills/abdhilabs/karmabank/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/abdhilabs/karmabank/package.json | |
| INFO | Local Ledger File in Current Working Directory The skill creates and manages a `.credit-ledger.json` file in the current working directory (`process.cwd()`) by default, as seen in `src/data/storage.ts` and `src/cli/services/ledger.ts`. While this is specific to the skill's intended function, writing to `process.cwd()` can be a minor concern if the skill is executed in a sensitive directory. It could lead to unintended file creation or modification in an unexpected location, although the fixed filename limits the scope of impact. Consider using a more isolated and predictable storage location, such as a dedicated data directory within the skill's installation path or a user-specific application data directory, rather than `process.cwd()`. Alternatively, ensure the user is explicitly aware of where the ledger file will be created and provide an option to specify a custom path. | LLM | src/data/storage.ts:30 |
Scan History
Embed Code
[](https://skillshield.io/report/541f0ab917fe2a21)
Powered by SkillShield