扫描报告
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.
可以安装
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
├─
▾
references
│ ├─
data-format.md
Markdown
│ └─
model-templates.md
Markdown
├─
▾
scripts
│ └─
generate_pipeline.py
Python
└─
SKILL.md
Markdown
安全亮点
✓ 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