Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

scienceclaw-watch科学爪表

Agent Skill

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

总安装

7,197

周安装

294

GitHub Stars

公开资料未说明

下载量

2,305
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install scienceclaw-watch

简介

实时多智能体协作会话,完成后返回完整摘要。

  • 各专业代理并行工作并相互挑战观点。
  • 适用于高复杂度科学问题攻关。scienceclaw-watch 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需设定清晰研究目标与终止条件。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 建议监控进程状态避免资源耗尽。

SKILL.md

name
scienceclaw-watch
description
Run a live multi-agent scientific collaboration session and return a full summary when complete. Multiple specialised agents work in parallel, challenge each other's findings, and generate figures. Results and figures are saved to disk and a summary is returned to chat.
metadata
{"openclaw": {"emoji": "👁️", "skillKey": "scienceclaw:watch", "requires": {"bins": ["python3"]}, "primaryEnv": "ANTHROPIC_API_KEY"}}

ScienceClaw: Watch (Multi-Agent Collaboration Session)

Run a parallel multi-agent collaboration session on a scientific topic. Agents work simultaneously, share findings, agree or challenge each other, and produce a rich synthesis with figures. Returns a full summary to chat when the session completes.

When to use

Use this skill when the user asks to:

  • "Watch agents investigate…"
  • Run a multi-agent collaboration (not just a single agent)
  • Get richer, more contested findings where agents push back on each other
  • Generate figures or visual outputs alongside findings
  • Run a thorough parallel investigation with 2–5 agents

Prefer scienceclaw-investigate if the user just wants findings posted to Infinite quickly. Use this skill when they want depth, parallel perspectives, and saved artefacts.

How it works (Option A: fire-and-forget)

The session runs synchronously with --no-dashboard so output is fully captured. Results are written to a timestamped output directory. Once complete, the skill reads session_summary.json and returns a formatted summary to the user in chat.

How to run

SCIENCECLAW_DIR="${SCIENCECLAW_DIR:-$HOME/scienceclaw}"
TOPIC="<TOPIC>"
N_AGENTS=3
TIMESTAMP=$(date +%Y%m%d_%H%M%S)
OUTPUT_DIR="$SCIENCECLAW_DIR/run_exports/watch_${TIMESTAMP}"

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

python3 bin/scienceclaw-watch \
  "$TOPIC" \
  --agents "$N_AGENTS" \
  --output "$OUTPUT_DIR" \
  --no-dashboard \
  --timeout 60

Then read the summary:

cat "$OUTPUT_DIR/session_summary.json"

Parameters

  • TOPIC — the research topic (required). Use the user's exact phrasing.
  • --agents N — number of agents to spawn (1–5, default: 3). Use 2 for speed, 4–5 for depth.
  • --output DIR — where to save results and figures. Always set this to a timestamped path under run_exports/ so results are organised.
  • --no-dashboardalways include this. Disables the Rich live UI so output is captured cleanly.
  • --timeout SEC — per-tool timeout in seconds (default: 45). Increase to 90–120 for complex topics.
  • --session-id — optional custom session ID for tracking.

Example invocations

# Standard 3-agent session
cd ~/scienceclaw && python3 bin/scienceclaw-watch \
  "BACE1 inhibitors for Alzheimer's disease" \
  --agents 3 --no-dashboard \
  --output run_exports/watch_$(date +%Y%m%d_%H%M%S) \
  --timeout 60

# Quick 2-agent session
cd ~/scienceclaw && python3 bin/scienceclaw-watch \
  "ibrutinib resistance in CLL" \
  --agents 2 --no-dashboard \
  --output run_exports/watch_$(date +%Y%m%d_%H%M%S) \
  --timeout 45

# Deep 5-agent session with longer timeout
cd ~/scienceclaw && python3 bin/scienceclaw-watch \
  "multi-target kinase inhibitors for glioblastoma" \
  --agents 5 --no-dashboard \
  --output run_exports/watch_$(date +%Y%m%d_%H%M%S) \
  --timeout 120

Reading the results

After the session completes, parse session_summary.json in the output directory. It contains:

{
  "topic": "...",
  "agents": ["Agent1", "Agent2", "Agent3"],
  "findings": [{"text": "...", "sources": ["AgentName"]}],
  "figures": [{"path": "..."}],
  "challenges": 4,
  "agreements": 7,
  "output_dir": "..."
}

Workspace context injection

Before running, check if the user's workspace memory contains project context:

  • Read memory.md in the workspace for stored research focus, organism, compound, or target
  • If found, append context to the topic string:

e.g. "BACE1 inhibitors [project context: NSCLC, BBB penetration focus]"

After running

Report back to the user with a structured summary:

  • Agents that participated (list them)
  • Key findings — top 5, with the agent that found each one: [AgentName] finding text
  • Agreements and challenges count (e.g. "7 agreements, 4 challenges between agents")
  • Figures generated — list file paths or names
  • Results saved to — the output directory path
  • Offer follow-up options:

- "Want me to post the synthesis to Infinite?" → use scienceclaw-post - "Want to investigate a specific finding deeper?" → use scienceclaw-investigate

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.44%
按下载量换算2,039

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install scienceclaw-watch 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills