扫描报告
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.
可以安装
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
│ ├─
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
依赖分析 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)