用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Zaoqu-Liu/ScienceClaw --skill data-analysis命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Search Allen AI's Asta Scientific Corpus (225M+ papers, 12M+ full-text, 2.4B+ citations) via MCP endpoint. Provides paragraph-level semantic search across full-text publications, citation graph traversal, and author analysis. Use as a complement to PubMed/OpenAlex/Semantic Scholar for deeper literature discovery, especially when full-text search or citation network analysis is needed. Requires ASTA_API_KEY in .env (free registration at allenai.org/asta).
Browser automation for accessing scientific databases that lack REST APIs. Uses the browser-use Python framework (81k+ GitHub stars) to control a real browser via LLM vision. Enables data extraction from web-only databases like GEPIA2, GeneCards advanced features, COSMIC public data, and journal full-text access. Use as a fallback when curl-based API access fails or when the target database has no programmatic API. Requires pip install browser-use and a Chromium browser.
Systematic drug repurposing analysis inspired by NovusAI. Evaluates existing drugs for new therapeutic indications through multi-dimensional evidence gathering across target networks, clinical trials (including failures), patent landscape, safety profiles, and off-label literature. Produces ranked repurposing candidates with evidence scores. Use when users ask about finding new uses for existing drugs, off-label potential, "老药新用", or "drug repurposing for X". Complements target-validation (which starts from a target) by starting from a drug.
基于 SOC 职业分类
正在显示 SKILL.md
| name | data-analysis |
| description | Load, analyze, and visualize datasets using pandas with AG Grid display |
Load data files (CSV, XLSX, JSON, Parquet) into the AG Grid viewer, run pandas queries, save results, and generate visualizations.
data_list - List available data files in /workspace/data/data_load - Load a data file into AG Grid (returns markdown preview for context)data_query - Execute pandas operations on loaded data (filter, aggregate, transform)data_save - Save the current DataFrame to a filejupyter_execute - Execute Python code in Jupyter kernel (for plots and complex analysis)update_notebook - Add cells to Jupyter notebookupdate_gallery - Display generated plots in the galleryFor tabular data exploration, use the data tools which provide a spreadsheet-like experience:
data_list to see what's in /workspace/data/data_load to read a file and display in AG Grid
data_query to run pandas operations
df variable contains the loaded dataresult = ... to define outputdata_save to export to CSV/XLSXFor visualization, statistical analysis, or ML, use Jupyter tools:
jupyter_execute running pandas codeupdate_galleryWhen user says: "Analyze this dataset" or "Show me the data"
data_list to find available filesdata_load with the target filedata_query with result = df.describe() for statisticsWhen user says: "Show only rows where X > Y" or "Group by category"
data_query with pandas filter/groupby codeWhen user says: "Export this" or "Save as Excel"
data_save with desired filename and formatWhen user says: "Create a chart" or "Plot the distribution"
jupyter_execute with matplotlib/seaborn codeupdate_galleryresult = df[df['score'] > 90]
result = df.groupby('category').agg({'value': ['mean', 'sum', 'count']}).reset_index()
result = df.sort_values('date', ascending=False)
df['ratio'] = df['value_a'] / df['value_b']
result = df
result = df.describe()
result = df.dropna(subset=['important_column'])