Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

prism-gen-demo棱镜生成演示

Agent Skill

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

总安装

10,913

周安装

464

GitHub Stars

公开资料未说明

下载量

3,823
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:prism-gen-demo(棱镜生成演示)
来源仓库:https://github.com/senazeng/prism-gen-demo
安装命令:
openclaw skills install prism-gen-demo
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install prism-gen-demo

简介

Prism-Gen-Demo整合分子生成与筛选的多轮CSV结果,提供中文可视化分析支持。

  • 适用于药物研发或材料科学中,快速比较不同算法输出的候选化合物。
  • 输入查询条件后,自动过滤、排序并合并数据,生成结构化表格与趋势图。
  • 原始数据需预先转换为标准CSV格式,字段命名应保持一致。
  • 可视化结果为静态图表,如需交互式探索建议导出至专业分析工具。

SKILL.md

PRISM-Gen Demo

Description

PRISM-Gen Demo is a read-only data analysis skill for exploring pre-calculated molecular screening results from the PRISM-Gen broad-spectrum coronavirus Mpro inhibitor discovery pipeline.

All analysis is performed locally on CSV files bundled with the skill. No network access, no external API calls, no credential requirements.

What This Skill Does

  • Retrieve data from any of 10 pipeline stage CSV files (step3a through step5b)
  • Filter molecules by property thresholds (pIC50, QED, MW, LogP, gap_ev, hERG_Prob, etc.)
  • Sort and rank molecules by any numeric column
  • Merge data across pipeline stages using SMILES as join keys
  • Score molecules with composite scoring, worst-case multi-target analysis, summary statistics, and Pareto front identification
  • Plot property distributions, scatter plots, docking score heatmaps, pipeline attrition funnels, and Pareto fronts
  • Summarize the full pipeline with attrition statistics and key findings

What This Skill Does NOT Do

  • Does NOT run any computational chemistry calculations (no DFT, no docking, no MD)
  • Does NOT access any network or external services
  • Does NOT require or use any credentials, API keys, or tokens
  • Does NOT modify any files outside its own output directory
  • Does NOT contain any shell scripts
  • Does NOT use hardcoded absolute paths

Commands

retrieve

Retrieve and display data from any pipeline stage.

python3 scripts/retrieve.py --stage step5b --columns name,pIC50,Broad_Spectrum_Score --max_rows 10
python3 scripts/retrieve.py --list_stages
python3 scripts/retrieve.py --stage step4a --list_columns
python3 scripts/retrieve.py --stage step5b --name mol_16

filter

Filter molecules by property thresholds. Multiple conditions are combined with AND.

python3 scripts/filter.py --stage step4a --where "pIC50>7.5" "QED>0.7" "hERG_Prob<0.5"
python3 scripts/filter.py --stage step5b --where "Broad_Spectrum_Score<-7.0" "Is_Final_Top==True"

sort

Sort and rank molecules by any column.

python3 scripts/sort.py --stage step5b --by Broad_Spectrum_Score --ascending --top 10
python3 scripts/sort.py --stage step4c --by R_global --top 20

merge

Merge data across pipeline stages on SMILES keys.

python3 scripts/merge.py --stages step3c,step4a --on smiles --columns pIC50,gap_ev,Lipinski_Pass,hERG_Prob

score

Compute composite scores, worst-case analysis, statistics, and Pareto fronts.

python3 scripts/score.py --mode worst_case --stage step5a --top 10
python3 scripts/score.py --mode composite --stage step4c --weights "pIC50:1.0,QED:0.5,R_ADMET:2.0"
python3 scripts/score.py --mode stats --stage step5b --columns pIC50,QED,Broad_Spectrum_Score
python3 scripts/score.py --mode pareto --stage step5b --obj1 pIC50 --obj2 QED

plot

Generate visualizations (requires matplotlib).

python3 scripts/plot.py --mode histogram --stage step4a --column pIC50 --output hist.png
python3 scripts/plot.py --mode scatter --stage step5b --x pIC50 --y Broad_Spectrum_Score --output scatter.png
python3 scripts/plot.py --mode heatmap --stage step5a --output heatmap.png
python3 scripts/plot.py --mode funnel --output funnel.png
python3 scripts/plot.py --mode pareto --stage step5b --x pIC50 --y QED --output pareto.png

summary

Generate a full pipeline summary report.

python3 scripts/summary.py
python3 scripts/summary.py --detailed

Available Pipeline Stages

Stage KeyDescriptionRowsColumns
step3aRL-optimized molecules (generation + surrogate scoring)20010
step3a_topTop 200 molecules by Reward20010
step3bGFN2-xTB electronic structure results2006
step3cxTB-refined ranking with GEM scoring20024
step4aADMET filtering (Lipinski, hERG, QED)20038
step4bB3LYP/6-31G* DFT validation (PySCF)4634
step4cMaster summary (all stages merged)20065
step5aBroad-spectrum docking (3 targets)3613
step5bFinal candidates with full annotations3675
step5b_masterMaster summary with docking20074

Dependencies

  • Required: Python 3.7+ (core functionality uses only Python standard library: csv, json, argparse, math, os, sys)
  • Optional: matplotlib (for visualization commands only; all non-plot commands work without it)

Security

  • Pure Python implementation — no shell scripts, no subprocess calls, no os.system calls
  • No hardcoded paths — all file paths are resolved relative to the skill root directory
  • No network access — all data is bundled locally in the data/ directory
  • No credentials — no environment variables, API keys, or tokens required
  • Read-only on input data — CSV files in data/ are never modified
  • Output isolation — generated plots are written only to user-specified paths

License

MIT-0 — Free to use, modify, and redistribute. No attribution required.

Author

@SenaZeng

Related

  • GitHub: https://github.com/SenaZeng/PRISM-Gen
  • Zenodo: https://doi.org/10.5281/zenodo.18764996

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

91.31%
按下载量换算3,491

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills