research-claw

作者 nanoAgentTeam已验证

A self-hosted AI assistant for academic research — manages your papers, searches literature, tracks deadlines, and answers you on the channels you already use.

291
Stars
16
Forks
Python
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/nanoAgentTeam/research-claw

快速入门

使用 research-claw 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Research Claw

Your self-hosted AI research assistant

Manage papers · search literature · track deadlines · collaborate across channels

Python 3.11+ License: MIT OS: Linux | macOS | Windows (WSL) PRs Welcome

Quick Start  ·  Features  ·  How It Works  ·  Docs

English  |  中文


Table of Contents

What is Research Claw?

Research Claw is a personal AI research assistant you run on your own machine. It manages your LaTeX projects, syncs with Overleaf, searches literature, tracks deadlines — and answers you on the channels you already use (CLI, Web UI, Telegram, Feishu, QQ, DingTalk).

Instead of switching between your editor, Overleaf, terminal, and search engine, you talk to one assistant that handles it all:

You: Create a paper project "MoE-Survey" and link it to Overleaf.
Bot: ✅ Project created. Overleaf linked. Switched to MoE-Survey.

You: Research the latest MoE papers and draft an introduction.
Bot: 🔎 Searching arXiv... 📝 Writing introduction... ✅ Compiled successfully.

You: /sync push
Bot: ✅ Pushed 3 files to Overleaf.


Interactive CLI session

Key Features

:writing_hand: Writing & Compilation

  • Read, write, and refactor .tex / .bib files through chat
  • One-command LaTeX compilation with auto error diagnosis
  • Built-in venue skills — NeurIPS, ICML, ICLR, AAAI, ACL, CVPR…

:arrows_counterclockwise: Overleaf & Git

  • Bidirectional Overleaf sync — pull edits, push changes
  • Every AI edit auto-committed to Git — roll back in seconds
  • Interactive /git mode for history, diff, and rollback

:busts_in_silhouette: Multi-Agent Collaboration

  • Delegate research, writing, and review to specialized sub-agents
  • Sub-agents work in isolated sandboxes — no accidental overwrites
  • /task mode decomposes goals into a DAG and executes in parallel

:mag: Literature Search

  • arXiv, PubMed, OpenAlex integration
  • Full-text PDF reading for in-depth analysis

:satellite: Research Radar & Automation

  • Scheduled tasks track your field — new papers, trends, deadlines
  • Daily scans, weekly digests, direction-drift detection
  • Push to Telegram, Feishu, DingTalk, Email, or any Apprise channel

:brain: Memory & Context

  • Project-level memory across sessions
  • Automated context summarization within token limits
  • Memory-powered automation for continuity

:globe_with_meridians: Access Anywhere

Web UI  •  CLI  •  Feishu (Lark)  •  Telegram  •  QQ  •  DingTalk — no public IP required

Feature Tour (video)

https://github.com/user-attachments/assets/fccb837c-cfc5-4063-b803-2ae900fb4a20

Getting Started

1. Install

Linux / macOS:

git clone https://github.com/nanoAgentTeam/research-claw.git
cd research-claw

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
Windows Users (via WSL)

Research Claw relies on POSIX features (signal handling, process management, etc.) and does not run natively on Windows. The recommended approach is WSL2 (Windows Subsystem for Linux) — it runs a real Linux kernel, so networking, filesystem, and process management all behave natively. No code changes needed.

Step 1: Install WSL2

Run in PowerShell (Administrator):

get download list: wsl --list --online

NAME            FRIENDLY NAME
Ubuntu          Ubuntu
Ubuntu-18.04    Ubuntu 18.04 LTS
Ubuntu-20.04    Ubuntu 20.04 LTS

Choose a version to install.

wsl --install -d Ubuntu-20.04

Reboot after installation. On first launch you'll be asked to create a username and password.

Step 2: Install Python 3.11

sudo apt update && sudo apt install -y python3.11 python3.11-venv python3-pip git

Step 3: Clone and install

# Recommended: keep code on the Linux filesystem for better performance
git clone https://github.com/nanoAgentTeam/research-claw.git ~/research-claw
cd ~/research-claw

python3.11 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Performance tip: Do not run the project under /mnt/c/. Cross-filesystem IO between WSL and Windows is ~3-5x slower. Keep code under ~/ for near-native Linux performance.

Networking & ports: WSL2 networking (API calls, web search, academic search) works out of the box. When running in Gateway mode, Windows browsers can access the Web UI at http://localhost:18790 — ports are forwarded automatically.

Browser automation (optional): If you need the browser_use tool, install Chromium:

# Option A: install directly
sudo apt install -y chromium-browser

# Option B: via playwright
pip install playwright && playwright install --with-deps chromium

Windows 11 includes WSLg for GUI support; on Windows 10 headless mode works fine.

2. Configure

# Start the gateway — this launches the Web UI
python cli/main.py gateway --port 18790

Open http://localhost:18790/ui in your browser:

  1. Provider Management — Add your LLM provider (API Key, model name, base URL). Any OpenAI-compatible API works (GPT, DeepSeek, Qwen, Claude, etc.)
  2. Channel Accounts(optional) Add IM bot credentials (Feishu / Telegram / QQ / DingTalk)
  3. Push Subscriptions(optional) Configure where automation results get delivered

All settings are stored in settings.json. Advanced users can edit this file directly — see Configuration Reference.


Web UI — Provider & Channel configuration

3. Overleaf Authorization (optional)

Overleaf sync enables bidirectional sync between your local LaTeX project and Overleaf — every AI edit can be pushed, and every collaborator's edit can be pulled.

python cli/main.py login

This will prompt you to choose an Overleaf instance:

OptionInstanceRequired package
1Overleaf (default)pip install overleaf-sync
2CSTCloud (China Science & Technology Cloud)pip install PySide6 (built-in, browser login only)

The login command will call the corresponding login tool, generate .olauth, and save the instance config to settings.json.

Once .olauth is created, the system auto-detects it. Use /sync pull and /sync push inside any project.

4. Run

Option A — CLI — interact directly in your terminal:

python cli/main.py agent

Option B — Gateway — Web UI + IM channels, chat from anywhere:

python cli/main.py gateway --port 18790

How It Works

Architecture

graph TB
    subgraph Channels["Access Channels"]
        direction LR
        CLI["CLI"]
        WebUI["Web UI"]
        Feishu["Feishu"]
        TG["Telegram"]
        QQ["QQ"]
        DT["DingTalk"]
    end

    Channels --> MB["MessageBus"]
    MB --> AL["AgentLoop — Main Agent"]
    AL --> CR["CommandRouter"]
    AL --> CM["ContextManager"]
    AL --> TR["ToolRegistry (40+ tools)"]
    AL --> SA["Sub-Agents (Workers)"]

    TR --> Proj["Project\nGit · LaTeX · Overleaf"]
    TR --> LLM["LLM Provider\nOpenAI-compatible · Hot-swap"]
    TR --> Auto["Automation\nScheduled cron jobs"]

Workspaces

The system has two spaces:

Default (Lobby)Project (Workspace)
PurposeCreate, list, switch projectsWork on a specific paper
Available toolsProject management (create, import from Overleaf), Overleaf listFile editing, LaTeX compile, Git, Overleaf sync, sub-agents, literature search
workspace/
├── Default/                    # Lobby — project management & chat
└── MyPaper/
    ├── project.yaml            # Project config
    ├── MyPaper/                # Core directory (LaTeX files + Git repo)
    │   ├── main.tex
    │   └── references.bib
    └── 0314_01/                # Session (conversation history, sub-agent workspace)

Commands

CommandWhat it does
/helpShow all available commands
/listList local projects in workspace
/olistList remote Overleaf projects
/switch <name>Switch to a project
/task <goal>Decompose a complex goal into sub-tasks, execute in parallel
/startApprove the task plan and begin execution
/doneEnd current TASK session and return to normal mode
/resumeShow failed or interrupted tasks
/resume <task-name>Resume a failed or interrupted task
/compileCompile LaTeX to PDF
/sync pullPull latest files from Overleaf
/sync pushPush local changes to Overleaf
/sessionList sessions in the current project
`/session <session-namenumber>`
/gitEnter interactive Git mode (history, diff, rollback)
/stopForce-cancel the current operation
/resetClear current session history
/backReturn to Default lobby

Task Mode

For multi-step goals, /task decomposes work into a 5-phase multi-agent pipeline:

1. You type:  /task Write a survey on Mixture-of-Experts

2. [UNDERSTAND]  Bot reads your project files automatically.

3. [PROPOSE]     Bot shows you a proposal (scope, deliverables, approach).
   → Review it. Reply with feedback to revise, or say "ok" to proceed.

4. [PLAN]        Bot shows you a task DAG (sub-tasks, dependencies, assigned agents).
   → Review it. Reply with changes, or type /start to begin execution.

5. [EXECUTE]     Sub-agents run tasks in parallel batches. Real-time progress:
                 📦 Batch 1 | 2 tasks in parallel: [t1, t2]
                 ✅ Batch 1 complete (45s) — Progress: 2/8
                 ...

6. [FINALIZE]    Bot merges all worker outputs and commits.
   → Type /done to exit task mode.
Phase details
PhaseWhat the bot doesWhat you do
UNDERSTANDReads project files to understand contextNothing — automatic
PROPOSEGenerates a proposal via task_proposeReview and reply with feedback, or confirm
PLANBuilds a task DAG via task_buildReview, optionally adjust, then type /start
EXECUTERuns sub-agents in parallel batches via task_executeWait — progress is streamed to you
FINALIZEMerges outputs and commits via task_commitType /done to exit task mode


Task mode — parallel sub-agent execution

Multi-Agent Collaboration

You: "Write a paper about MoE"

Main Agent:
  1. Creates "researcher" sub-agent → searches literature in sandbox
  2. Creates "writer" sub-agent → drafts sections in sandbox
  3. Reviews and merges outputs into project
  4. Compiles and syncs to Overleaf

Sub-agents work in isolated overlay directories. Their outputs go through a merge process before touching the project core — no accidental overwrites.

Automation & Research Radar

Each project can have scheduled tasks that run automatically via cron expressions. Configure them through the Web UI's Automation tab or via project.yaml.

Built-in radar jobs (auto-created when a project has no active radar)
JobWhat it doesDefault Schedule
Daily ScanSearch for new papers in the project's research area, summarize findingsEvery morning
Direction DriftDetect if the research field is shifting, alert on emerging trendsDaily
Deadline WatchTrack upcoming conference deadlines relevant to the projectDaily
Conference TrackMonitor new calls-for-papers from target venuesWeekly
Weekly DigestCompile a weekly summary of all radar findingsMonday morning
Profile RefreshUpdate the project's research profile based on latest editsDaily
AutoplanReconcile and adjust radar job schedules based on project stateTwice daily

How it works: Gateway starts APScheduler → each job fires at its cron schedule, spawns an agent session → agent reads project memory, runs searches, writes findings → results pushed to configured channels (Telegram, Feishu, Email, etc.).


Automation dashboard — radar jobs & push notifications

Configuration Reference

All runtime config lives in settings.json (managed via Web UI, or edit directly):

SectionPurpose
provider.instancesLLM providers — API key, base URL, model name
channel.accountsIM bot credentials
gatewayWeb UI host & port
featuresToggle history, memory, auto-summarize, etc.
toolsWeb search & academic tool API keys
pushSubscriptionsAutomation notification routing
Other config files
FilePurpose
config/tools.jsonTool registry (class paths, parameters, permissions)
config/commands.jsonSlash command definitions
config/agent_profiles/Agent role profiles (tools available per role)
workspace/{project}/project.yamlPer-project settings (Overleaf ID, LaTeX engine, Git)

Skills

Skills are domain-specific SOPs the agent activates on demand. Add a custom skill by creating a folder under config/.skills/:

config/.skills/
└── my-skill/
    ├── SKILL.md          # Required — skill definition (YAML frontmatter)
    └── templates/        # Optional — resource files

The system auto-discovers all skill folders at startup — no registration needed.

Documentation

IM Setup: Feishu · Telegram · QQ · DingTalk

Push Subscriptions: Configuration Guide

Contributing

Contributions are welcome! Feel free to:

  • Open an Issue for bugs or feature requests
  • Submit a Pull Request with improvements
  • Improve documentation or add new venue skill templates

License

MIT License — free for academic and commercial use.

常见问题

What is research-claw?

research-claw is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by nanoAgentTeam. A self-hosted AI assistant for academic research — manages your papers, searches literature, tracks deadlines, and answers you on the channels you already use. It has 291 GitHub stars.

Is research-claw safe to use?

Yes. research-claw passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install research-claw?

Clone the repository with "git clone https://github.com/nanoAgentTeam/research-claw" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is research-claw written in?

research-claw is primarily written in Python. It is open-source under nanoAgentTeam on GitHub, so you can review or fork the full source.

Are there alternatives to research-claw?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh research-claw against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情