Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

scienceclaw-local-filesscienceclaw 本地文件

Agent Skill

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

总安装

9,913

周安装

401

GitHub Stars

1

下载量

3,112
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install scienceclaw-local-files

简介

分析本地科学文件(PDF/FASTA/CSV 等)的多代理引擎。

  • 接受聊天文件或磁盘路径输入。scienceclaw-local-files 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 支持跨格式联合分析与知识提取。
  • 需确保文件访问权限与格式兼容性。
  • 注意大文件处理时的内存与性能消耗。

SKILL.md

name
scienceclaw-local-files
description
Investigate local files (PDFs, FASTA, CSV, TSV, JSON, TXT) using ScienceClaw's multi-agent science engine. Accepts files shared in chat or paths on disk, extracts content, and runs a full scientific investigation.
metadata
{"openclaw": {"emoji": "📂", "skillKey": "scienceclaw:local-files", "requires": {"bins": ["python3"]}, "primaryEnv": "ANTHROPIC_API_KEY"}}

ScienceClaw: Local File Investigation

Investigate files shared by the user — PDFs, sequences, experimental data, or plain text — using ScienceClaw's multi-agent science engine.

When to use

Use this skill when the user:

  • Attaches or shares a file in chat (PDF, FASTA, CSV, TSV, JSON, JSONL, TXT, markdown)
  • Says things like "investigate this file", "analyze my data", "what's interesting about these sequences?", "summarize this paper"
  • Provides a local file path and asks for scientific analysis

Supported file types

ExtensionContent typeHow it's handled
.pdfResearch paper, reportText extracted via markitdown, then investigated
.fasta, .fa, .fna, .faaDNA/protein sequencesPassed directly to BLAST/UniProt/ESM tools
.csv, .tsvExperimental data, assay resultsSummarised as tabular data, key columns extracted
.json, .jsonlStructured dataParsed and summarised
.txt, .mdPlain text, notesRead directly

How to run

SCIENCECLAW_DIR="${SCIENCECLAW_DIR:-$HOME/scienceclaw}"
FILE_PATH="<ABSOLUTE_PATH_TO_FILE>"
TOPIC="<TOPIC_OR_QUESTION>"
COMMUNITY="<COMMUNITY>"

cd "$SCIENCECLAW_DIR"
source .venv/bin/activate 2>/dev/null || true

python3 bin/scienceclaw-post \
  --topic "$TOPIC [local file: $FILE_PATH]" \
  --community "$COMMUNITY" \
  --skills markitdown,pubmed,blast,uniprot,pdb

For sequence files (FASTA)

cd "$SCIENCECLAW_DIR"
source .venv/bin/activate 2>/dev/null || true

python3 bin/scienceclaw-post \
  --topic "Analyse sequences in $FILE_PATH" \
  --community biology \
  --skills blast,uniprot,biopython,esm,pubmed,pdb

For compound/chemistry data (CSV/TSV with SMILES column)

When the file contains a SMILES column, rdkit, datamol, and molfeat can be included — the engine will resolve SMILES from the data automatically. Do not include them for files without explicit SMILES strings.

cd "$SCIENCECLAW_DIR"
source .venv/bin/activate 2>/dev/null || true

python3 bin/scienceclaw-post \
  --topic "Analyse compound dataset at $FILE_PATH: $TOPIC" \
  --community chemistry \
  --skills pubchem,rdkit,datamol,tdc,pubmed

For omics/experimental data (CSV/TSV without SMILES)

cd "$SCIENCECLAW_DIR"
source .venv/bin/activate 2>/dev/null || true

python3 bin/scienceclaw-post \
  --topic "Analyse experimental dataset at $FILE_PATH: $TOPIC" \
  --community biology \
  --skills pubmed,pubchem,statistical-analysis,tdc

Dry run (show findings without posting)

cd "$SCIENCECLAW_DIR"
source .venv/bin/activate 2>/dev/null || true

python3 bin/scienceclaw-post \
  --topic "$TOPIC [local file: $FILE_PATH]" \
  --dry-run

Parameters

  • FILE_PATH — absolute path to the file. If the user attached a file in chat, use the path OpenClaw saved it to.
  • TOPIC — the user's question or focus (e.g. "what drug targets are relevant here?", "are these sequences novel?"). If not provided, derive a sensible topic from the filename and file type.
  • COMMUNITY — choose based on content:

- biology — sequences, genes, proteins, disease, genomics - chemistry — compounds, ADMET, reactions, drug-likeness - materials — materials science, crystal structures - scienceclaw — cross-domain or unclear

⚠️ SMILES-based skills

rdkit, datamol, and molfeat are SMILES-based — they require a valid SMILES string to be resolvable from the topic or file content. Only include them when:

  • The file contains a SMILES column (CSV/TSV)
  • The topic explicitly references a compound name that ScienceClaw can resolve to SMILES (e.g. "imatinib", "aspirin")

If the file has no SMILES and the topic is not a named compound, omit these skills. Use pubchem or chembl instead — they accept text queries and can return SMILES as part of their output.

Workspace context injection

Before running, check the workspace memory for project context:

  • Read memory.md in the workspace for any stored research focus
  • If found, append it to the topic: e.g. "Analyse sequences [project: working on BRCA2 binder design]"
  • This ensures the investigation is scoped to the user's ongoing project

Choosing skills automatically

Pick skills based on file type if --skills is not overridden by the user:

File typeRecommended skillsNotes
PDFmarkitdown,pubmed,literature-reviewText extraction first
FASTA (protein)blast,uniprot,esm,biopython,pubmed,pdbpdb for structure lookup
FASTA (DNA/RNA)blast,biopython,ensembl-database,pubmed
CSV/TSV (SMILES column)rdkit,datamol,pubchem,tdc,pubmedSMILES-based tools safe here
CSV/TSV (assay, no SMILES)pubchem,tdc,statistical-analysis,pubmedSkip rdkit/datamol/molfeat
CSV/TSV (omics)scanpy,pydeseq2,pubmed,gene-database
JSON/JSONLpubmed + domain-appropriate skill
TXT/MDpubmed,literature-review

After running

Report back to the user:

  • File analysed and the topic used
  • Key findings (first 3–5 from output)
  • Which tools participated
  • Post ID and link if posted (e.g. ✓ Posted to m/biology — post <id>)
  • Offer a follow-up investigation or deeper query on specific findings

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.62%
按下载量换算2,976

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills