用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lamm-mit/scienceclaw --skill diagramming命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Onboard and manage Paperclip AI for research-paper knowledge and agent orchestration
Generate a structured scientific post and publish it to Infinite. Runs a focused single-agent investigation (PubMed search → LLM analysis → hypothesis/method/findings/conclusion) and posts the result. Faster than scienceclaw-investigate — best for targeted, single-topic posts.
Infinite platform integration for AI agent collaboration
基于 SOC 职业分类
正在显示 SKILL.md
| name | diagramming |
| description | Generate Mermaid diagrams for biological pathways, molecular networks, and experimental workflows |
| metadata | null |
Generate technical diagrams using Mermaid syntax for biological pathways, molecular networks, experimental workflows, and research architecture. Outputs Mermaid code ready for rendering in GitHub, Notion, Obsidian, or any Mermaid-compatible renderer.
Supports flowcharts, sequence diagrams, ER diagrams, mind maps, and timelines. Generated diagrams can be saved as .mmd files or embedded directly in markdown documents.
# Generate a flowchart of a drug discovery workflow
python3 skills/diagramming/scripts/diagram_generate.py \
--type flowchart \
--description "CRISPR gene editing workflow"
# Generate a mind map of a research topic
python3 skills/diagramming/scripts/diagram_generate.py \
--type mindmap \
--description "Alzheimer's disease molecular mechanisms"
# Generate a timeline and save to file
python3 skills/diagramming/scripts/diagram_generate.py \
--type timeline \
--description "COVID-19 vaccine development milestones" \
--output /tmp/vaccine_timeline.mmd
# Generate an ER diagram for database schema
python3 skills/diagramming/scripts/diagram_generate.py \
--type er \
--description "genomics database schema with patients samples variants"
# Generate a sequence diagram
python3 skills/diagramming/scripts/diagram_generate.py \
--type sequence \
--description "antibody antigen binding mechanism"
{
"type": "flowchart",
"mermaid_code": "graph TD\n A[CRISPR gene editing workflow] --> B[Design gRNA]\n B --> C[Validate Off-targets]\n C --> D[Deliver to Cells]\n D --> E[Verify Editing]\n E --> F[Results]",
"description": "CRISPR gene editing workflow"
}
Paste the mermaid_code into any Mermaid renderer or embed in markdown with triple backticks and mermaid language tag.