Trusted — Risk Score 0/100
Last scan:18 hr ago Rescan
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.
Skill Namestress-sleep-ai
Duration34.3s
Enginepi
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.
ResourceDeclaredInferredStatusEvidence
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 180L · 8.2 KB
│ ├─ 📋 config.yaml YAML 82L · 2.4 KB
│ ├─ 📝 README.md Markdown 204L · 4.5 KB
│ ├─ 📄 requirements.txt Text 1L · 90 B
│ ├─ 📝 SKILL.md Markdown 231L · 7.1 KB
│ └─ 🐍 skill.py Python 424L · 16.4 KB
├─ 📝 CHANGELOG.md Markdown 180L · 8.2 KB
├─ 📋 config.yaml YAML 82L · 2.4 KB
├─ 📝 README.md Markdown 204L · 4.5 KB
├─ 📄 requirements.txt Text 1L · 90 B
├─ 📝 SKILL.md Markdown 231L · 7.1 KB
└─ 🐍 skill.py Python 424L · 16.4 KB

Dependencies 1 items

PackageVersionSourceKnown VulnsNotes
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)