Trusted — Risk Score 0/100
Last scan:19 hr ago Rescan
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.
Skill Nameserver-test-converter
Duration16.5s
Enginepi
Safe to install
No action needed. The skill is a benign file transformation utility.
ResourceDeclaredInferredStatusEvidence
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 215L · 6.4 KB
└─ 📝 SKILL.md Markdown 126L · 3.6 KB

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)