Scan Report
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.
Safe to install
No action needed. The skill is a benign file transformation utility.
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | READ | ✓ Aligned | convert_commands.py reads txt files from INPUT_DIR |
| Filesystem | WRITE | WRITE | ✓ Aligned | convert_commands.py writes generated .py files to OUTPUT_DIR |
| Network | NONE | NONE | — | No network calls found in convert_commands.py |
| Shell | NONE | NONE | — | No shell execution in convert_commands.py |
| Environment | NONE | NONE | — | No os.environ access in convert_commands.py |
| Skill Invoke | NONE | NONE | — | No skill_invoke capability used |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser access |
| Database | NONE | NONE | — | No database access |
File Tree
2 files · 10.0 KB · 341 lines Python 1f · 215L
Markdown 1f · 126L
├─
convert_commands.py
Python
└─
SKILL.md
Markdown
Security Positives
✓ 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)