可信 — 风险评分 0/100
上次扫描:19 小时前 重新扫描
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.
技能名称stress-sleep-ai
分析耗时34.3s
引擎pi
可以安装
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.
资源类型声明权限推断权限状态证据
文件系统 NONE NONE No file operations in skill.py
网络访问 NONE NONE No network imports (requests, urllib, socket) in skill.py
命令执行 NONE NONE No subprocess, eval, exec usage in skill.py
环境变量 NONE NONE No os.environ access in skill.py
技能调用 READ READ ✓ 一致 Command handlers accept args parameter
剪贴板 NONE NONE No clipboard access in skill.py
浏览器 NONE NONE No browser access in skill.py
数据库 NONE NONE No database access in skill.py
2 项发现
🔗
中危 外部 URL 外部 URL
https://keepachangelog.com/en/1.0.0/
CHANGELOG.md:5
🔗
中危 外部 URL 外部 URL
https://semver.org/spec/v2.0.0.html
CHANGELOG.md:6

目录结构

12 文件 · 77.5 KB · 2244 行
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

依赖分析 1 项

包名版本来源已知漏洞备注
none (standard library only) N/A built-in No external dependencies - uses only Python standard library

安全亮点

✓ 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)