可信 — 风险评分 0/100
上次扫描:21 小时前 重新扫描
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.
技能名称server-test-converter
分析耗时16.5s
引擎pi
可以安装
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 215L · 6.4 KB
└─ 📝 SKILL.md Markdown 126L · 3.6 KB

安全亮点

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