researchclaw

researchclaw is a skill for Claude Code from OthmanAdi/researchclaw-skill. It costs 74 tokens per session (3,202 once invoked), scanned B, original, MIT.

A skill for AutoResearchClaw, an automated research pipeline that turns a topic into a LaTeX research paper with experiments, citations, reviews, and citation checks.

In plain words
What is it for?
Use it to configure, run, monitor, resume, validate, or troubleshoot an AutoResearchClaw paper-generation pipeline.
Why use it?
It organizes many research stages and provides commands for setup, progress checks, resuming, and diagnosing failures.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool; mentions Claude Code.

Good fit Use it to configure, run, monitor, resume, validate, or troubleshoot an AutoResearchClaw paper-generation pipeline.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/othmanadi/researchclaw-skill/researchclaw
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add OthmanAdi/researchclaw-skill --skill researchclaw
Clone the repo
git clone --depth 1 https://github.com/OthmanAdi/researchclaw-skill

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for researchclaw

README.md
[![agentmods](https://agentmods.dev/badge/skills/othmanadi/researchclaw-skill/researchclaw.svg)](https://agentmods.dev/skills/othmanadi/researchclaw-skill/researchclaw)
Your own site
<a href="https://agentmods.dev/skills/othmanadi/researchclaw-skill/researchclaw"><img src="https://agentmods.dev/badge/skills/othmanadi/researchclaw-skill/researchclaw.svg" alt="Measured on agentmods" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,202 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00074 $0.03202
Opus 5 $0.00037 $0.01601
Sonnet 5 $0.00015 $0.00640
Haiku 4.5 $0.00007 $0.00320

Measured 7d ago against content hash b35bc842f88f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade B, and why

researchclaw scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

The scan reads SKILL.md. This mod also ships 5 executable files (scripts/check-prereqs.sh, scripts/notify-completion.sh, scripts/post-run-check.sh, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

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).**

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

| `ConnectionError` to arxiv/semantic_scholar | Network issue | Check internet connectivity; try `curl https://api.semanticscholar.org/graph/v1/paper/search?query=test` |
.claude/skills/researchclaw/SKILL.md · 292 lines

How it starts

The opening of the file, as written. The whole thing — 292 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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

Command Purpose
/researchclaw Show help and available subcommands
/researchclaw:setup Check and install all prerequisites (Python, Docker, LaTeX, pip packages)
/researchclaw:config Interactive config wizard — generates a working config.yaml
/researchclaw:run Start a research pipeline run
/researchclaw:status Check the status of a running or completed pipeline
/researchclaw:resume Resume a pipeline from the last successful stage
/researchclaw:diagnose Auto-detect and explain common failures
/researchclaw:validate Validate 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]"
    

Read the full file on GitHub · 292 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 292 lines · 74 tokens per session scan B b35bc842f88f

Subscribe to this mod's changes

researchclaw is a skill published in the GitHub repository OthmanAdi/researchclaw-skill (20 stars, last pushed 5mo ago), licensed MIT. It adds 74 tokens to every session and 3,202 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.