扫描报告
0 /100
server-test-converter
将服务器测试命令 txt 文件转换为 pytest 测试用例
A straightforward server test command to pytest converter that reads txt files and generates Python test code with no network access, credential harvesting, or undeclared behavior.
可以安装
No action needed. The skill is a benign file transformation utility.
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | READ | READ | ✓ 一致 | convert_commands.py reads txt files from INPUT_DIR |
| 文件系统 | WRITE | WRITE | ✓ 一致 | convert_commands.py writes generated .py files to OUTPUT_DIR |
| 网络访问 | NONE | NONE | — | No network calls found in convert_commands.py |
| 命令执行 | NONE | NONE | — | No shell execution in convert_commands.py |
| 环境变量 | NONE | NONE | — | No os.environ access in convert_commands.py |
| 技能调用 | NONE | NONE | — | No skill_invoke capability used |
| 剪贴板 | NONE | NONE | — | No clipboard access |
| 浏览器 | NONE | NONE | — | No browser access |
| 数据库 | NONE | NONE | — | No database access |
目录结构
2 文件 · 10.0 KB · 341 行 Python 1f · 215L
Markdown 1f · 126L
├─
convert_commands.py
Python
└─
SKILL.md
Markdown
安全亮点
✓ No network requests — convert_commands.py performs zero HTTP requests or socket connections
✓ No credential access — does not read ~/.ssh, ~/.aws, .env, or environment variables for sensitive data
✓ No shell execution — no subprocess, os.system, or popen calls
✓ Doc-to-code alignment — SKILL.md accurately describes the converter's behavior
✓ Hardcoded paths match documentation exactly — INPUT_DIR and OUTPUT_DIR are declared and consistent
✓ No obfuscation — all code is plain, readable Python with no base64 or dynamic evaluation
✓ No hidden functionality — the script only reads txt files and writes Python test files
✓ No external dependencies required at runtime — only uses Python standard library (os, re, sys, pathlib)