Scan Report
5 /100
lobster-continuous-learning-v2
Instinct-based learning system that observes sessions, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents
Legitimate continuous learning system with no malicious behavior. Observations stay local, secret scrubbing is implemented, and all shell/network operations are documented and necessary for the feature.
Safe to install
No action required. Skill is safe to use.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Info | Secret Scrubbing Regex May Miss Edge Cases Sensitive Access | hooks/observe.sh:198 |
| Info | External URL Reference Doc Mismatch | SKILL.md:361 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | WRITE | ✓ Aligned | Write operations limited to ~/.claude/homunculus/ project storage directories |
| Shell | READ | READ | ✓ Aligned | subprocess.run for git detection only, no arbitrary command execution |
| Network | READ | READ | ✓ Aligned | URL fetch only for instinct import, documented in SKILL.md |
| Environment | NONE | READ | ✓ Aligned | Reads CLAUDE_PROJECT_DIR and git-related vars for project detection |
2 findings
Medium External URL 外部 URL
https://x.com/affaanmustafa/status/2014040193557471352 SKILL.md:361 Info Email 邮箱地址
[email protected] scripts/detect-project.sh:96 File Tree
10 files · 154.4 KB · 4302 lines Python 2f · 2410L
Shell 5f · 1321L
Markdown 2f · 563L
JSON 1f · 8L
├─
▾
agents
│ ├─
observer-loop.sh
Shell
│ ├─
observer.md
Markdown
│ ├─
session-guardian.sh
Shell
│ └─
start-observer.sh
Shell
├─
▾
hooks
│ └─
observe.sh
Shell
├─
▾
scripts
│ ├─
detect-project.sh
Shell
│ ├─
instinct-cli.py
Python
│ └─
test_parse_instinct.py
Python
├─
config.json
⚠
JSON
└─
SKILL.md
Markdown
Dependencies 1 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
requests | N/A | pip | No | No external dependencies used - only stdlib |
Security Positives
✓ Secret scrubbing implemented to redact API keys, tokens, passwords before persisting observations
✓ Git credential stripping in detect-project.sh removes embedded credentials from remote URLs
✓ Path traversal protection blocks access to system directories (/etc, /usr, /bin, etc.)
✓ Project-scoped storage isolates data between different projects
✓ Observer agent uses minimal toolset (Read, Write only) with controlled Haiku model
✓ PID validation prevents signaling invalid process IDs
✓ Atomic file writes with tempfile + os.replace prevent corruption
✓ File locking (fcntl) prevents concurrent write race conditions
✓ No base64-encoded payloads or obfuscation techniques
✓ No ~/.ssh, ~/.aws, or other sensitive path access
✓ No curl|bash or remote script execution patterns
✓ No C2 or data exfiltration - all observations stay local
✓ Session guardian prevents observer from running during automated sessions