Trust Assessment
lancedb-memory 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, Missing required field: name, LanceDB 'where' clause injection via unsanitized category.
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 12, 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 | LanceDB 'where' clause injection via unsanitized category The `search_memories` method in the `LanceMemoryDB` class constructs a LanceDB `where` clause string by directly interpolating the `category` parameter. LanceDB's `where` clause supports SQL-like expressions. If a malicious user provides a `category` string containing special characters or SQL-like syntax (e.g., `'; DROP TABLE memory; --`), they could manipulate the database query, potentially leading to unauthorized data access, modification, or deletion. Sanitize the `category` input by escaping any single quotes (e.g., `category.replace("'", "''")`) or, preferably, validate the input to ensure it only contains safe characters. Alternatively, consider filtering the results in Python after retrieving them from LanceDB if the dataset size allows, or use a LanceDB feature that supports parameterized queries if available for `where` clauses. | LLM | SKILL.md:69 | |
| 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/pntrivedy/lancedb-memory/clawdbot_memory.py:4 | |
| MEDIUM | Missing required field: name The 'name' field is required for claude_code skills but is missing from frontmatter. Add a 'name' field to the SKILL.md frontmatter. | Static | skills/pntrivedy/lancedb-memory/SKILL.md:1 |
Scan History
Embed Code
[](https://skillshield.io/report/1154fa1b8f25d4a3)
Powered by SkillShield