Scan Report
5 /100
cognitive-memory
Intelligent multi-store memory system with human-like encoding, consolidation, decay, and recall
This is a legitimate cognitive memory system skill with no malicious indicators. All operations (file/directory creation, git initialization, template copying, JSON modification via Python) are clearly documented and serve the stated purpose of setting up an agent memory architecture.
Safe to install
This skill is safe to use. All shell operations are declared in SKILL.md via bash script references. The skill creates a memory management system with episodic, semantic, procedural, and vault stores, using git for audit tracking.
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | WRITE | WRITE | ✓ Aligned | scripts/init_memory.sh:20-50 (mkdir/cp operations) |
| Shell | WRITE | WRITE | ✓ Aligned | scripts/*.sh (bash execution, git operations) |
| Network | NONE | NONE | — | No network operations found |
| Environment | NONE | NONE | — | No environment variable access |
| Skill Invoke | NONE | NONE | — | No inter-skill invocation |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser operations |
| Database | NONE | NONE | — | No database access |
File Tree
27 files · 170.6 KB · 5015 lines Markdown 21f · 4072L
Shell 4f · 914L
JSON 2f · 29L
├─
▾
assets
│ └─
▾
templates
│ ├─
agents-memory-block.md
Markdown
│ ├─
decay-scores.json
JSON
│ ├─
entity-template.md
Markdown
│ ├─
episode-template.md
Markdown
│ ├─
evolution.md
Markdown
│ ├─
graph-index.md
Markdown
│ ├─
IDENTITY.md
Markdown
│ ├─
MEMORY.md
Markdown
│ ├─
pending-memories.md
Markdown
│ ├─
pending-reflection.md
Markdown
│ ├─
procedure-template.md
Markdown
│ ├─
reflection-log.md
Markdown
│ ├─
relations.md
Markdown
│ ├─
reward-log.md
Markdown
│ ├─
reward-template.md
Markdown
│ └─
SOUL.md
Markdown
├─
▾
references
│ ├─
architecture.md
Markdown
│ ├─
reflection-process.md
Markdown
│ └─
routing-prompt.md
Markdown
├─
▾
scripts
│ ├─
init_memory.sh
Shell
│ ├─
upgrade_to_1.0.6.sh
Shell
│ └─
upgrade_to_1.0.7.sh
Shell
├─
_meta.json
JSON
├─
SKILL.md
Markdown
├─
upgrade_to_1.0.7.sh
Shell
├─
UPGRADE-1.0.7.md
Markdown
└─
UPGRADE.md
Markdown
Security Positives
✓ No credential harvesting or sensitive path access (~/.ssh, ~/.aws, .env)
✓ No base64 encoded commands or eval(atob()) patterns
✓ No remote script execution (curl|bash, wget|sh)
✓ No hidden functionality in HTML comments or elsewhere
✓ No data exfiltration to external IPs
✓ Git-based audit trail is security-positive
✓ All bash operations are clearly declared via script references in SKILL.md
✓ Python JSON operations are safe (read-modify-write with backup)
✓ Backup creation before modifications in upgrade scripts
✓ Pre-flight checks prevent accidental damage
✓ Templates are clean Markdown without embedded threats