Scan Report
10 /100
dual-brain-memory-guardian
Dual-brain memory skill for correction handling, rewrite quality, post-task reflection, and semantic recall of historical pitfalls using Markdown rules and Pinecone vector storage.
A legitimate dual-brain memory management skill with strong security practices including credential redaction, input sanitization, and a clear documentation structure.
Safe to install
The skill is safe to use. Consider pinning dependency versions to specific minor versions for enhanced supply chain security.
Findings 1 items
| Severity | Finding | Location |
|---|---|---|
| Low | Incomplete environment variable documentation Doc Mismatch | src/pinecone/config.js:22 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | WRITE | WRITE | ✓ Aligned | SKILL.md: 'Local markdown brain: Root path defaults to ~/dual-brain-memory-guard… |
| Network | READ | READ_WRITE | ✓ Aligned | SKILL.md: '@pinecone-database/pinecone', 'PINECONE_API_KEY' |
| Shell | NONE | NONE | — | No shell execution found in codebase |
| Environment | READ | READ | ✓ Aligned | Only PINECONE_API_KEY declared; 7 additional PINECONE_* vars used (config.js:22-… |
| Skill Invoke | READ | READ | ✓ Aligned | SKILL.md: 'user-invocable: true', npm scripts defined in package.json |
1 findings
Medium External URL 外部 URL
https://dotenvx.com package-lock.json:36 File Tree
22 files · 110.2 KB · 3758 lines JavaScript 6f · 2637L
Markdown 13f · 1030L
JSON 2f · 73L
Ignore 1f · 18L
├─
▾
scripts
│ ├─
memory-cli.js
JavaScript
│ └─
verify.js
JavaScript
├─
▾
src
│ └─
▾
pinecone
│ ├─
client.js
JavaScript
│ ├─
config.js
JavaScript
│ ├─
gatekeeper.js
JavaScript
│ └─
memory-store.js
JavaScript
├─
.gitignore
Ignore
├─
boundaries.md
Markdown
├─
corrections.md
Markdown
├─
heartbeat-rules.md
Markdown
├─
heartbeat-state.md
Markdown
├─
HEARTBEAT.md
Markdown
├─
learning.md
Markdown
├─
memory-template.md
Markdown
├─
memory.md
Markdown
├─
operations.md
Markdown
├─
package-lock.json
JSON
├─
package.json
JSON
├─
reflections.md
Markdown
├─
scaling.md
Markdown
├─
setup.md
Markdown
└─
SKILL.md
Markdown
Dependencies 2 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
@pinecone-database/pinecone | ^7.1.0 | npm | No | Version range pinned (caret) |
dotenv | ^16.4.7 | npm | No | Version range pinned (caret) |
Security Positives
✓ Comprehensive credential redaction in gatekeeper.js - blocks private keys, API tokens, JWTs, AWS keys, and IPs before vector storage
✓ Input sanitization with sanitizeForVectorStorage() applied to all user inputs (content, metadata, tags)
✓ AssertVectorPayloadSafe() throws errors on attempts to store blocked secrets
✓ No obfuscation techniques detected - clean JavaScript codebase
✓ No shell execution (child_process/spawn) found in any script
✓ No base64-encoded execution or eval() usage
✓ No curl|bash or wget|sh remote script execution
✓ No attempts to access ~/.ssh, ~/.aws, or other sensitive credential paths
✓ Dependency versions partially pinned: @pinecone-database/pinecone@^7.1.0, dotenv@^16.4.7
✓ Explicit security boundaries declared: 'This skill NEVER stores sensitive raw secrets in vector memory'
✓ All network traffic goes to managed Pinecone API (api.pinecone.io), not arbitrary IPs
✓ Destructive operations (forget-all) require explicit --yes confirmation flag