Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

researchclawresearchclaw 搜索

Agent Skill

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

总安装

315

周安装

13

GitHub Stars

8

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/othmanadi/researchclaw-skill --skill researchclaw

简介

researchclaw 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需结合 README 确认具体用法。
  • 安装前建议核实权限范围、维护状态及是否涉及联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

ResearchClaw Skill — Autonomous Research Pipeline

This skill wraps AutoResearchClaw, a 23-stage pipeline that takes a research topic and produces a conference-grade LaTeX paper with real citations, sandbox-executed experiments, multi-agent peer review, and citation verification.

Honesty policy: This skill does not fabricate capabilities. Every command maps to real upstream functionality. If something fails, the skill reports the actual error and suggests concrete fixes — it never pretends the problem does not exist.

Commands

CommandPurpose
/researchclawShow help and available subcommands
/researchclaw:setupCheck and install all prerequisites (Python, Docker, LaTeX, pip packages)
/researchclaw:configInteractive config wizard — generates a working config.yaml
/researchclaw:runStart a research pipeline run
/researchclaw:statusCheck the status of a running or completed pipeline
/researchclaw:resumeResume a pipeline from the last successful stage
/researchclaw:diagnoseAuto-detect and explain common failures
/researchclaw:validateValidate config, dependencies, and connectivity before running

/researchclaw — Help

When invoked without a subcommand, display this command list and a one-line status summary:

  1. Check if researchclaw CLI is installed: which researchclaw
  2. Check if config.yaml exists in the current directory
  3. Print the command table above
  4. Suggest the most logical next step based on what is missing

/researchclaw:setup — Prerequisites Installation

MANDATORY: Ask the user before installing anything. Present what is missing and get explicit approval.

Run the prerequisite check script:

bash "${CLAUDE_SKILL_DIR}/scripts/check-prereqs.sh"

The script checks each dependency and outputs a JSON report. Based on the report:

  1. Python 3.11+: Check python3 --version. If missing or too old, suggest pyenv install 3.11 or system package manager.
  2. pip / uv: Check pip3 --version or uv --version. Suggest uv if not present (faster).
  3. Docker: Check docker info. If Docker daemon is not running, tell the user honestly — this skill cannot start Docker for you on most systems.
  4. LaTeX: Check pdflatex --version. If missing, suggest sudo apt-get install texlive-full (Linux) or brew install --cask mactex (macOS). Be honest: this is a large download (2-4 GB).
  5. AutoResearchClaw: Check pip3 show researchclaw. If not installed: pip3 install researchclaw Or from source: git clone https://github.com/aiming-lab/AutoResearchClaw.git cd AutoResearchClaw pip3 install -e ".[all]"

After installation, re-run the check script to verify everything passes.

What this skill CANNOT do:

  • Start the Docker daemon (requires system-level access)
  • Install LaTeX without sudo on Linux
  • Fix network/firewall issues blocking API access
  • Provide LLM API keys — the user must supply their own

/researchclaw:config — Interactive Configuration Wizard

Generate a working config.yaml by asking the user a series of questions. Use AskUserQuestion for each batch.

Batch 1 — Essential settings (MUST ask):

  1. Research topic: What do you want to research? (free text)
  2. LLM provider: Which LLM API? Options: openai, anthropic, azure, deepseek, local
  3. API key: Provide your API key, or the environment variable name that holds it (e.g., OPENAI_API_KEY)
  4. Model: Which model? Suggest defaults per provider:

- openai: gpt-4o - anthropic: claude-sonnet-4-20250514 - deepseek: deepseek-chat

Batch 2 — Experiment settings (ask with smart defaults):

  1. Experiment mode: simulated (no code execution, fastest), sandbox (local execution), or ssh_remote (GPU server). Default: simulated
  2. Auto-approve gates: Skip human approval at stages 5, 9, 20? Default: true for first run
  3. Output directory: Where to save artifacts. Default: artifacts/

Batch 3 — Optional advanced settings (offer but don't require):

  1. Paper template: neurips, icml, iclr, or generic. Default: neurips
  2. Max iterations: For iterative pipeline mode. Default: 3
  3. Literature sources: arxiv, semantic_scholar, or both. Default: both

After collecting answers, generate config.yaml using the template in assets/config-template.yaml. Write it to the current directory and show the user the generated file.

Validation: After generating, run:

researchclaw validate --config config.yaml

If validation fails, explain what went wrong and offer to fix it.


/researchclaw:run — Execute the Pipeline

Pre-flight checks (always run before starting):

  1. Run /researchclaw:validate logic silently
  2. If any check fails, report it and ask the user whether to proceed or fix first

Start the pipeline:

researchclaw run --topic "$ARGUMENTS" --config config.yaml --auto-approve 2>&1 | tee researchclaw-run.log

If $ARGUMENTS is empty, read the topic from config.yaml.

During execution:

  • The pipeline runs 23 stages. Each stage produces output in artifacts/<run-id>/stage-N/
  • Monitor progress by checking which stage directories exist
  • If the pipeline fails, capture the error output and run /researchclaw:diagnose logic automatically

After completion:

  • Report which stages succeeded and which failed
  • Show the path to the generated paper (typically artifacts/<run-id>/stage-17/paper_draft.md or the final PDF)
  • Show total execution time

/researchclaw:status — Pipeline Status

Check the current state of a pipeline run:

ls -la artifacts/ 2>/dev/null | tail -5

For the most recent run:

  1. Find the latest artifacts/rc-* directory
  2. Count completed stages: ls -d artifacts/rc-*/stage-* 2>/dev/null | wc -l
  3. Check for pipeline_summary.json — if it exists, the run is complete
  4. If no summary exists, check which stage was last modified to estimate current progress
  5. Report: Stage X/23 complete. Current stage: [stage name]. Status: [running/failed/complete]

Stage name mapping (for human-readable output):

StageName
1Topic Initialization
2Problem Decomposition
3Literature Search
4Literature Analysis
5Research Direction (Gate)
6Hypothesis Generation
7Experiment Design
8Experiment Plan Review
9Experiment Approval (Gate)
10Code Generation
11Code Review
12Experiment Execution
13Result Collection
14Result Analysis
15Paper Outline
16Section Writing
17Paper Draft
18Peer Review
19Revision
20Final Review (Gate)
21Citation Verification
22Visualization
23Final Export

/researchclaw:resume — Resume a Failed Run

Resume from the last successful stage:

  1. Find the latest run directory: ls -td artifacts/rc-* | head -1
  2. Find the last completed stage: check pipeline_summary.json or find the highest-numbered stage-* directory with output files
  3. Determine the next stage name from the stage mapping above
  4. Run: researchclaw run --config config.yaml --from-stage STAGE_NAME --output <run-dir> --auto-approve 2>&1 | tee researchclaw-resume.log

Known issue (upstream): The --from-stage flag may not work correctly in all versions. If resume fails, inform the user honestly and suggest:

  • Starting a fresh run
  • Manually copying successful stage outputs to a new run directory

/researchclaw:diagnose — Auto-Diagnose Failures

Read the most recent log and error output to identify the problem:

tail -100 researchclaw-run.log 2>/dev/null || tail -100 researchclaw-resume.log 2>/dev/null

Common failure patterns and fixes:

Error PatternCauseFix
HTTP 401 or AuthenticationErrorInvalid or expired API keyCheck config.yamlllm.api_key or the env var
HTTP 429 or RateLimitErrorAPI rate limit hitWait 60 seconds and resume, or switch to a different model
Stage 10 failureCode generation produced invalid PythonCheck artifacts/*/stage-10/experiment.py for syntax errors
Docker errorsDocker not running or permission deniedRun docker info to verify; may need sudo usermod -aG docker $USER
pdflatex not foundLaTeX not installedInstall with sudo apt-get install texlive-full
ModuleNotFoundErrorMissing Python dependencyRun pip3 install researchclaw[all]
quality_score < thresholdQuality gate too strictEdit config.yaml → lower quality.min_score (default 2.0 is very strict)
MemoryError or OOMInsufficient RAM (needs 32GB+)Use simulated experiment mode or reduce max_concurrent_stages
ConnectionError to arxiv/semantic_scholarNetwork issueCheck internet connectivity; try curl https://api.semanticscholar.org/graph/v1/paper/search?query=test
YAML parse error in configMalformed config fileRun python3 -c "import yaml; yaml.safe_load(open('config.yaml'))" to find the error

After diagnosis, suggest the specific fix. If the fix is automatable (e.g., installing a package), offer to do it with user approval.


/researchclaw:validate — Pre-Run Validation

Run all checks without starting the pipeline:

bash "${CLAUDE_SKILL_DIR}/scripts/check-prereqs.sh"

Then additionally:

  1. Config syntax: python3 -c "import yaml; yaml.safe_load(open('config.yaml'))"
  2. Config completeness: Check that llm.api_key or llm.api_key_env is set, research.topic is non-empty
  3. API connectivity: Test the LLM endpoint with a minimal request
  4. Docker health: docker info (if experiment mode is sandbox)
  5. Disk space: df -h. — warn if less than 10 GB free
  6. Write permissions: touch artifacts/.write-test && rm artifacts/.write-test

Report results as a checklist with pass/fail for each item.


Additional Resources


Principles

  1. Never lie. If something is broken, say so. If a feature does not exist upstream, do not pretend it does.
  2. Always test. Run validation before every pipeline execution. Check results after every action.
  3. Ask before acting. Never install packages, modify configs, or start long-running processes without explicit user approval.
  4. Report honestly. Show actual error messages, not sanitized summaries. The user needs real information to debug.
  5. Stay current. This skill targets AutoResearchClaw v0.3.x. If the upstream version changes significantly, some commands may need updating.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.56%
按下载量换算37

Claude

31.4%
按下载量换算32

Cursor

19.35%
按下载量换算20

Gemini CLI

9.71%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills