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

q-researchq 研究

Agent Skill

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

总安装

3,493

周安装

147

GitHub Stars

公开资料未说明

下载量

1,223
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install q-research

简介

六步结构化研究流程,自动搜索 arXiv 并筛选优质论文。

  • 适合在 OpenClaw 中快速定位前沿技术或学术资料时使用。
  • 结合网络搜索与 Git 分析生成综合结论。
  • 安装命令:openclaw skills install q-research。
  • 依赖 markitdown 解析文献,建议优先选择开放获取资源。

SKILL.md

name
owl
description
>
metadata
openclaw
requires
env
bins

🦉 OWL — 6-Step Research Skill

A precise, structured research pipeline — not a bulk dump, but a curated read-and-select workflow that mirrors how an expert researcher actually works.


Pipeline

Step 1 · Search arXiv for the topic
Step 2 · Open 5 promising papers → PDF → Markdown via markitdown
Step 3 · Read title + abstract + intro of each
Step 4 · Claude selects the best 2 (explains why, drops the rest)
Step 5 · Search web: explanation · GitHub · survey · citations
Step 6 · Write a 5-bullet summary of what was learned

Install

pip install requests markitdown
pip install curl_cffi beautifulsoup4 lxml fake-useragent
chmod +x scripts/owl.py
cp scripts/owl.py /usr/local/bin/owl


Usage

owl "diffusion models"
owl "LoRA fine-tuning" --category cs.LG --output report.md
owl "protein structure prediction" --since year
owl "quantum error correction" --arxiv-n 8

For Windows user:

python  scripts/owl.py "AI agent RAG" --arxiv-n 8 --output report.md

CLI Flags

FlagDefaultDescription
query*(required)*Research topic
--arxiv-n N5arXiv candidates to fetch (top N are used as pool)
--category CATallarXiv category, e.g. cs.LG, q-bio.BM
--sortrelevancerelevance, lastUpdatedDate, submittedDate
--since RANGEall timeGoogle recency: hour, day, week, month, year
--papers-dir DIR/tmp/owl_papersPDF + markdown cache directory
--output FILEterminal onlySave Markdown summary to FILE
--no-streamoffWait for full Claude response
--serper-key KEYenv varOverride SERPER_API_KEY
--anthropic-key KEYenv varOverride ANTHROPIC_API_KEY

Step Details

Step 1 — arXiv Search

search_arxiv(query, n, category, sort_by) → list of paper dicts with id, title, authors, abstract, published, categories, url, pdf_url.

Step 2 — Open Papers (PDF → Markdown)

Take top 5 candidates. For each: download PDF to --papers-dir, convert to Markdown using markitdown (Python lib preferred, CLI fallback). Extract first 8 KB of text = roughly title + abstract + introduction. Falls back to abstract only if PDF download or conversion fails.

Step 3 — Read

Display truncated abstract+intro for each candidate. All 5 intro texts are passed to Claude in Step 4.

Step 4 — LLM Selects Best 2 papers

Claude returns {"selected": [i, j], "reason_1": "...", "reason_2": "...", "dropped": "..."}. The model used is printed in the step output and checklist. Selected papers then get their full markdown (up to 40 KB) loaded for Step 6.

Step 5 — 4 Web Searches

Runs 4 targeted Serper queries and fetches page content for the top 2 results of each:

Search typeQuery pattern
explanation{topic} explained
github{topic} github implementation
survey{topic} survey review paper
citations{topic} highly cited papers results

Step 6 — 5-Bullet Summary

Builds a prompt with both full papers + all 4 web search result sets, then calls LLM api. Output structure:

  1. Selected Papers (with links)
  2. 5 dense bullets — each 3–5 sentences, specific facts, inline citations
  3. Web Sources list

Output Format

# 🦉 OWL Research Summary: {topic}

## Selected Papers
[P1] Title — Authors — URL — PDF
[P2] Title — Authors — URL — PDF

## 5-Bullet Summary
• **What it is**: ...
• **How it works**: ...
• **Key results**: ...
• **Tools & code**: ...
• **Open questions**: ...

## Web Sources
...

Steps Checklist Verification

At the end of every run, owl prints a checklist confirming every step completed successfully. Verify all 6 items are marked [✓] before trusting the output.

────────────────────────────────────────────────────────────────────────
  ✅ RESEARCH CHECKLIST
────────────────────────────────────────────────────────────────────────
  [✓] Step 1  Search arXiv                  5 papers found
  [✓] Step 2  Open 5 papers via markitdown   5 PDFs converted
  [✓] Step 3  Read title + abstract + intro  5 papers scanned
  [✓] Step 4  Keep best 2                    2 selected  (2 with full text)
              → Paper title one…
              → Paper title two…
  [✓] Step 5  Web search (4 queries)         16 results fetched
              → explanation    Top result title…
              → github         Top result title…
              → survey         Top result title…
              → citations      Top result title…
  [✓] Step 6  5-bullet summary               written by Claude
              → /path/to/report.md
────────────────────────────────────────────────────────────────────────

What each line confirms

StepWhat to verify
Step 1At least 1 paper found — if 0, the arXiv query returned nothing; try rephrasing or removing --category
Step 2PDFs converted — a ⚠ using abstract only warning here means markitdown failed for that paper; the run continues but that paper's selection is abstract-only
Step 3Count matches Step 2 — should always be 5 (or --arxiv-n if overridden)
Step 4Exactly 2 selected, model name visible — the model shown is whatever GET /v1/models returned as the best available; if it shows the fallback claude-sonnet-4-20250514 the models list API may have failed silently
Step 54 search types listed, each with a top result — a missing type means that Serper query failed silently
Step 6"written by Claude" confirms the API call completed — if the summary is truncated, raise max_tokens in the source

Failure modes to watch for

  • Step 2 all markitdown is not installed (pip install markitdown) or PDFs are blocked by arXiv rate limiting; wait and retry
  • Step 4 shows 1 paper — Claude JSON parse failed; re-run or check OPENROUTER_API_KEY
  • Step 5 shows 0 results for a type — Serper key exhausted or network issue; check SERPER_API_KEY
  • Step 6 summary is very short — context window may be near limit with large PDFs; reduce --arxiv-n or use --no-stream

Notes

  • PDFs are cached in --papers-dir — re-runs on the same paper are instant
  • Step 4 uses a non-streaming JSON call; Steps 2 and 6 stream to terminal
  • --arxiv-n can be raised to 8–10 for broader candidate pools before selection
  • All 4 web search types always run — they cannot be individually disabled (by design)
  • The 5-bullet format is enforced in the Claude prompt; free-form reports use the old pipeline

适合场景

01

调用多模型

02

代码和文本生成

03

Agent 推理流程

04

OpenRouter 模型接入

能力概览

能力 1

统一调用多种 LLM

能力 2

支持 Claude、Gemini、Kimi 等模型

能力 3

适合聊天、代码和推理任务

能力 4

可作为 Agent 模型调用入口

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

平台分布

OpenClaw

82.01%
按下载量换算1,003

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills