Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

scientific-eda科学 EDA

Agent Skill

scientific-eda 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

210

周安装

9

GitHub Stars

公开资料未说明

下载量

73
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:scientific-eda(科学 EDA)
来源仓库:https://github.com/apsteinberg/skills
仓库路径:skills/scientific-eda
安装命令:
npx skills add https://github.com/apsteinberg/skills --skill scientific-eda
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/apsteinberg/skills --skill scientific-eda

简介

用于科学数据的探索性分析指导,帮助用户在数据文件中定位分析方向和关键指标。

  • 适用于生物学、化学等领域的 CSV 或 FASTA 格式数据分析场景。
  • 通过提问方式引导分析步骤,不直接加载数据,需用户确认后再执行具体操作。
  • 使用前需明确数据类型和分析目标,避免误读文件或触发不必要的计算资源消耗。
  • scientific-eda 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Scientific exploratory data analysis

This skill guides defensive, human-led exploratory data analysis on scientific data. The agent does not open files and dump code; it captures problem context first, helps narrow to a single first step, takes instruction from the user, and asks "why?" before executing when the user requests a specific plot or table.

Usage

Use this skill when the user provides one or more data files (CSV, FASTA, or other scientific formats) and wants to explore or analyze them. Start by capturing context—do not load or plot data until the problem (biological, chemical, or data-science question) is clearly stated and the agent is aligned as a guided assistant.

Requirements

  • uv for running Python scripts and marimo notebooks. Scripts are run with uv run script.py, which uses the project's existing environment. If a script requires dependencies not in the project's pyproject.toml, add PEP723 inline script metadata to declare them.
  • Ability to read the relevant data formats (pandas, BioPython, etc.) via dependencies in the project environment or declared in the script.

What It Does

  1. Context first – Capture and record the problem context (what question, what domain) before touching the data.
  2. Single first step – Help the user narrow to one first plot or one first summary (not a barrage of code or plots).
  3. Human-guided execution – Take instruction on what to do next; when the user says "make this plot" or "give me that table," ask why before doing it, then execute.
  4. Analysis folder – Each investigation is an analysis: one folder under analyses/ (or project-agreed base) with a descriptive name and start date, containing lab_notebook.md, plots/, scripts/, and any notebooks.
  5. Lab notebook – Co-authored lab_notebook.md per analysis: the user writes goals, background, and interpretation; the agent drafts methods and results entries for the user to review.
  6. Scripts, notebooks, and plots – Throwaway scripts in scripts/; notebooks (marimo .py, Rmarkdown .Rmd) at the analysis folder root; plots saved as WebP (not PNG) for small file size.
  7. Suggest next step – After each action, suggest the most logical next step and let the user decide.

How It Works

Phase 1: Capture context (before touching data)

  • Do not open the data file and start coding or plotting.
  • Ask for or confirm: the problem context—biological, chemical, or data-science question; what the user hopes to learn or decide; and any constraints (e.g. specific variables, subsets).
  • Record this in the analysis's lab_notebook.md (see Phase 3). Only after context is recorded and agreed, proceed to inspect data shape and plan the first step.

Phase 2: Start an analysis

  • Create one analysis folder under analyses/ (or a project-agreed base). Name it [YYMMDD]_[optional_ID]_descriptive-slug on creation. The date is the creation date and never changes, even when work resumes on a later day.

- Example with ID: analyses/260315_SV-APS-052_somatic_sv_exploration/ - Example without ID: analyses/260315_protein_binding_eda/

  • Optional notebook ID: The ID follows the format PROJ-INITIALS-NNN where:

- PROJ is a 1–4 letter uppercase project code (e.g. SV, BIND, PROT) - INITIALS identifies the analyst (default: APS; other users should set their own) - NNN is a page number, assigned by the user (eyeball the next available number) - The ID is optional — analyses without a notebook page ID simply omit it from the folder name.

  • Do not rename folders when resuming work. The creation date is permanent. Use ls -lt or git log to see recent activity.
  • Canonical layout for each analysis folder:

- lab_notebook.md – co-authored lab notebook for this analysis - plots/ – all figures (WebP only for matplotlib) - scripts/ – disposable scripts that load data, summarize, or make plots - Notebooks (marimo .py, Rmarkdown .Rmd) live at the analysis folder root, not inside scripts/

Phase 3: Lab notebook (co-authored, per analysis)

The lab_notebook.md is a co-authored document — the user and the agent both write in it. It replaces a traditional lab notebook entry for this analysis.

Structure (see references/lab-notebook.md for the full convention):

  • Goals – What questions this analysis aims to answer. Written or dictated by the user.
  • Background – Scientific rationale, hypotheses, relevant prior work. Written or dictated by the user.
  • Code/Data Storage – Links to repos, slides, data locations, related pipelines. Maintained by both.
  • Methods – Numbered, evolving list of what was done. The agent drafts entries after executing code; the user reviews and may revise.
  • Results – Findings, figures, and interpretation. The agent records outputs; the user adds interpretation and conclusions.
  • Conclusions – Key takeaways. Written by the user, optionally drafted by the agent.

Co-authoring rules:

  1. The agent never overwrites the user's entries. Append only.
  2. The agent reads lab_notebook.md before each substantive action to stay aligned with the user's current thinking.
  3. The agent drafts Methods/Results entries after executing code, clearly marking them so the user can distinguish agent-drafted text.
  4. The user can write directly into lab_notebook.md at any time — adding interpretation, changing direction, noting conversations with collaborators, or correcting the agent's entries.
  5. Data shape: after loading or inspecting data, the agent records columns (and types if relevant), row count, and structure in the Methods section. Do this as soon as shape is known and after any major data step.
  6. Use timestamps per entry (e.g. YYYY-MM-DD).

Phase 4: Understand shape, then one first step

  • Shape of the data: Before proposing or making plots, ensure the agent (and user) knows: what columns/fields exist, how many rows/records, and any critical structure. Record this in lab_notebook.md.
  • Single first plot (or table): Help the user choose one first visualization or summary (e.g. one distribution, one overview table). Do not generate many plots at once; get alignment on that single step, then execute.

Phase 5: Human-guided execution and "ask why"

  • Take instruction: The user may ask for a specific plot, table, or filter. Execute only after clarity.
  • Ask why before doing: When the user says "make this plot" or "give me that table," briefly ask why (e.g. what decision or question it supports). Then run the script and record the outcome in the lab notebook.
  • After each action: Suggest the most logical next step (one step), and let the user confirm or redirect. Do not auto-execute a long pipeline.

Phase 6: Scripts (disposable, uv run)

  • Throwaway Python scripts live in the analysis's scripts/ folder.
  • Run scripts with uv run script.py, which uses the project's existing environment from pyproject.toml and uv.lock. Do not run raw python or paste code in a REPL; the script is the unit of execution.
  • PEP723 inline metadata is only needed when a script requires dependencies not already in the project environment. Most scripts will not need it.
  • Scripts are throwaway: they are for this analysis's plots and summaries, not production. Paths in scripts are relative to the analysis folder (e.g. ../../data/file.csv or as agreed).

Phase 7: Plots (WebP only for matplotlib)

  • Save all matplotlib (and similar) figures as WebP, not PNG, to keep image sizes small. Use e.g. fig.savefig("plots/overview.webp", format="webp").
  • Write plot files into the analysis's plots/ directory. Name files descriptively (e.g. distribution_response.webp, first_ten_records.webp).
  • Reference these plots in the lab notebook when you record what was done.

Notebooks

The analysis folder supports multiple notebook formats at its root:

Marimo notebooks

When the user conducts EDA in a marimo notebook (.py file), it lives at the analysis folder root. Follow the same phases above (context first, one step, lab notebook, ask why). In addition:

  • Cell ordering: The first cell contains all package imports. The second cell (after the analysis goal markdown) defines all paths and key variables.
  • Markdown before and after code: For each code cell, add markdown cells before and after that explain what the code does and what the results mean. The markdown before sets up intent; the markdown after summarizes or interprets the output.

See references/marimo-notebook-eda.md for the canonical convention.

Rmarkdown notebooks

When the user conducts EDA in an Rmarkdown notebook (.Rmd file), it lives at the analysis folder root. Follow the same phases above. In addition:

  • Rmarkdown notebooks should state the Goal and Background at the top of the document.
  • Plots from Rmarkdown can be saved to plots/ but this is not strictly required since knitr embeds figures in the HTML output.
  • The lab_notebook.md should still reference what was done in the Rmd and key findings.

"Just one more thing..."

When the agent has additional clarifying or follow-up questions during an analysis — especially after the user thinks they've finished explaining — lead with "Just one more thing..." (an homage to Lt. Columbo). This applies to follow-up questions in any phase, not just context capture.

Guardrails

  1. Context before data – Do not open or analyze the data until the problem context is stated and recorded in the lab notebook.
  2. One first step – Propose and agree on a single first plot or summary; do not generate a large block of code or many plots in one go.
  3. Ask why – When the user requests a specific plot or table, ask why (what question or decision it serves) before executing.
  4. Lab notebook as shared memory – Read and append to the analysis's lab_notebook.md; record data shape and findings so the next step is informed. Never overwrite the user's entries.
  5. Scripts via uv run – No ad-hoc Python; run scripts with uv run script.py. Only add PEP723 metadata when the script needs dependencies outside the project environment.
  6. WebP for plots – Use WebP for matplotlib (and similar) output; do not save as PNG by default.
  7. Suggest, don't assume – After each action, suggest one logical next step and wait for the user to confirm or change direction.
  8. Marimo notebooks – When EDA is in a marimo notebook, add markdown cells before and after each code cell to explain intent and results (see references/marimo-notebook-eda.md).
  9. Rmarkdown notebooks – When EDA is in an Rmarkdown notebook, state Goal and Background at the top; reference findings in the lab notebook.
  10. Notebooks at root, scripts in scripts/ – Notebooks are primary analytical artifacts and live at the analysis folder root. Disposable scripts go in scripts/.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

31.33%
按下载量换算23

Claude

31.73%
按下载量换算23

Cursor

19.31%
按下载量换算14

Gemini CLI

8.16%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills