可信 — 风险评分 0/100
上次扫描:1 天前 重新扫描
0 /100
paper-to-pipeline
根据机器学习/深度学习论文的实验规划文档自动生成完整的 Python 实验 pipeline。支持数据预处理、模型构建、训练循环、评估指标、结果可视化。
A clean ML pipeline code generator with no security issues; reads experiment plans and writes standard Python ML code to a user-specified directory using only standard libraries.
技能名称paper-to-pipeline
分析耗时26.0s
引擎pi
可以安装
No action needed. The skill is safe to use as described.
资源类型声明权限推断权限状态证据
文件系统 READ READ ✓ 一致 scripts/generate_pipeline.py reads plan files via open()
文件系统 WRITE WRITE ✓ 一致 SKILL.md declares output to generated_experiment/ directory; code writes to user…
网络访问 NONE NONE No network calls in any script
命令执行 NONE NONE No subprocess/os.system/os.popen calls found
环境变量 NONE NONE No os.environ access in generate_pipeline.py
技能调用 NONE NONE No skill invocation patterns detected
剪贴板 NONE NONE No clipboard access
浏览器 NONE NONE No browser/web automation
数据库 NONE NONE No DB connections

目录结构

5 文件 · 52.0 KB · 1951 行
Python 2f · 1224L Markdown 3f · 727L
├─ 📁 assets
│ └─ 📁 templates
│ └─ 🐍 image_classification.py Python 181L · 4.6 KB
├─ 📁 references
│ ├─ 📝 data-format.md Markdown 236L · 4.4 KB
│ └─ 📝 model-templates.md Markdown 342L · 9.8 KB
├─ 📁 scripts
│ └─ 🐍 generate_pipeline.py Python 1043L · 29.1 KB
└─ 📝 SKILL.md Markdown 149L · 4.0 KB

安全亮点

✓ No shell execution (subprocess, os.system, curl|wget, or pip install commands)
✓ No network requests — all imports are local standard library (argparse, os, re, yaml, pathlib, datetime)
✓ No credential harvesting — no access to ~/.ssh, ~/.aws, .env, or environment variable enumeration
✓ No obfuscation — no base64, no eval(atob()), no encoded payloads
✓ No persistence mechanisms — no cron jobs, startup scripts, or backdoor installation
✓ No prompt injection — generated code contains only standard ML boilerplate
✓ No sensitive file paths accessed
✓ Doc-to-code match is excellent — SKILL.md accurately describes all behavior
✓ All file writes are to user-specified output directories, declared in SKILL.md
✓ Dependencies are standard ML libraries (torch, torchvision, transformers) only in generated requirements.txt, not in the skill itself