AgentSkillsCN

experiments

适用于在 experiments/ 目录下编写 Python 脚本时使用。包含脚本编写规范、数据流设计,以及库的选择标准。

SKILL.md
--- frontmatter
name: experiments
description: Use when writing Python scripts in experiments/. Contains script conventions, data flow, and library choices.

Python experiments conventions

  • Independent scripts, not a package — no __init__.py, no shared imports
  • Each script is self-contained: reads data, does analysis, writes output
  • No framework — plain Python with standard data science libs (numpy, pandas, matplotlib)
  • If two scripts share logic, copy-paste until it stabilizes