Scan Report
0 /100
stress-sleep-ai
Scientific stress analysis and sleep optimization skill with audio therapy, breathing exercises, and mindfulness practices
Stress Sleep AI is a legitimate wellness skill that fully implements its documented behavior with no security violations detected.
Safe to install
This skill is safe to use. It performs only local stress/sleep analysis with in-memory data storage, uses only Python standard library, and contains no dangerous functions or network access.
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | NONE | — | No file operations in skill.py |
| Network | NONE | NONE | — | No network imports (requests, urllib, socket) in skill.py |
| Shell | NONE | NONE | — | No subprocess, eval, exec usage in skill.py |
| Environment | NONE | NONE | — | No os.environ access in skill.py |
| Skill Invoke | READ | READ | ✓ Aligned | Command handlers accept args parameter |
| Clipboard | NONE | NONE | — | No clipboard access in skill.py |
| Browser | NONE | NONE | — | No browser access in skill.py |
| Database | NONE | NONE | — | No database access in skill.py |
2 findings
Medium External URL 外部 URL
https://keepachangelog.com/en/1.0.0/ CHANGELOG.md:5 Medium External URL 外部 URL
https://semver.org/spec/v2.0.0.html CHANGELOG.md:6 File Tree
12 files · 77.5 KB · 2244 lines Markdown 6f · 1230L
Python 2f · 848L
YAML 2f · 164L
Text 2f · 2L
├─
▾
stress-sleep-ai-v5.0.3-english
│ ├─
CHANGELOG.md
Markdown
│ ├─
config.yaml
YAML
│ ├─
README.md
Markdown
│ ├─
requirements.txt
Text
│ ├─
SKILL.md
Markdown
│ └─
skill.py
Python
├─
CHANGELOG.md
Markdown
├─
config.yaml
YAML
├─
README.md
Markdown
├─
requirements.txt
Text
├─
SKILL.md
Markdown
└─
skill.py
Python
Dependencies 1 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
none (standard library only) | N/A | built-in | No | No external dependencies - uses only Python standard library |
Security Positives
✓ Uses only Python standard library (os, sys, json, random, datetime, typing)
✓ All data stored in-memory only (self.session_data dict) - no disk persistence
✓ No dangerous functions (subprocess, eval, exec, __import__) used
✓ No network access (no requests, urllib, socket imports)
✓ No file system operations (no open, read, write, os.path operations)
✓ No environment variable enumeration or credential access
✓ Documentation accurately describes implementation behavior
✓ Memory cleanup method implemented (cleanup function)