Install
openclaw skills install autoresearchclaw-integrationIntegrates AutoResearchClaw to autonomously generate conference-ready academic papers from user research topics with real citations and experimental code.
openclaw skills install autoresearchclaw-integrationAutoResearchClaw is a fully autonomous 23-stage research pipeline that transforms a single research idea into a conference-ready academic paper with real literature from OpenAlex, Semantic Scholar, and arXiv.
User says: "Research [topic]"
Agent workflow:
which researchclaw)pip install -e .config.researchclaw.example.yaml → config.arc.yamlresearchclaw run --topic "[topic]" --auto-approveartifacts/rc-*/deliverables/Ask user for LLM backend preference:
Option 1: OpenAI-compatible API
llm:
provider: "openai-compatible"
base_url: "https://api.openai.com/v1"
api_key_env: "OPENAI_API_KEY" # or ask for key
primary_model: "gpt-4o"
fallback_models: ["gpt-4o-mini"]
Option 2: ACP Agent (Claude Code, Codex, Gemini)
llm:
provider: "acp"
acp:
agent: "claude" # or "codex", "gemini", etc.
cwd: "."
which researchclaw || echo "Not installed"
cd ~
git clone https://github.com/aiming-lab/AutoResearchClaw.git
cd AutoResearchClaw
python3 -m venv .venv
source .venv/bin/activate
pip install -e .
researchclaw --version
researchclaw run --topic "Your research idea" --auto-approve
researchclaw run --config config.arc.yaml --topic "Your research idea" --auto-approve
Results in: ~/AutoResearchClaw/artifacts/rc-YYYYMMDD-HHMMSS-<hash>/deliverables/
After completion, the agent should:
deliverables/ directory contentspaper.tex - Conference-ready LaTeXpaper_draft.md - Markdown paperreferences.bib - Real citationsverification_report.json - Citation integrity checkruns/ - Experimental code and resultscharts/ - Generated figuresreviews.md - Multi-agent peer reviewAutoResearchClaw auto-detects:
Adapts code generation, imports, and experiment scale accordingly.
Enable in config.arc.yaml:
openclaw_bridge:
use_cron: true # Scheduled research runs
use_message: true # Progress notifications (Discord/Slack/Telegram)
use_memory: true # Cross-session knowledge persistence
use_sessions_spawn: true # Parallel sub-sessions
use_web_fetch: true # Live web search during literature review
use_browser: false # Browser-based paper collection
For cross-run learning:
metaclaw_bridge:
enabled: true
skills_dir: "~/.metaclaw/skills"
lesson_to_skill:
enabled: true
min_severity: "warning"
max_skills_per_run: 5
# Check Python version
python3 --version # Requires 3.8+
# Install dependencies
pip install -r requirements.txt
OPENAI_API_KEY is set.venv/bin/pythonresearchclaw run --topic "Your topic" --domains ml,nlp --auto-approve
export:
target_conference: "neurips_2025" # neurips_2025 | iclr_2026 | icml_2026
prompts:
custom_file: "custom_prompts.yaml"
Use ResearchClaw for research/paper generation. Use Superpowers for production software implementation. They complement each other when researching then implementing findings.