/aris-infra
ARIS (Auto-claude-code-research-in-sleep) infrastructure setup and configuration. Configures MCP servers for cross-model adversarial review, installs Python tools, and validates environment. Run this first before using any other ARIS skills. Use when: setting up ARIS,
$ npx -y skills add OpenLAIR/dr-claw --skill aris-infra --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/aris-infra
Context preview
The summary Claude sees to decide when to auto-load this skill.
ARIS (Auto-claude-code-research-in-sleep) infrastructure setup and configuration. Configures MCP servers for cross-model adversarial review, installs Python tools, and validates environment. Run this first before using any other ARIS skills. Use when: setting up ARIS,
SKILL.md
aris-infra.SKILL.mdname: aris-infra
description: |
ARIS (Auto-claude-code-research-in-sleep) infrastructure setup and configuration.
Configures MCP servers for cross-model adversarial review, installs Python tools,
and validates environment. Run this first before using any other ARIS skills.
Use when: setting up ARIS, configuring review servers, "aris setup", "配置ARIS".
license: MIT
metadata:
author: wanshuiyin/ARIS
version: "1.0.0"
repository: https://github.com/wanshuiyin/Auto-claude-code-research-in-sleep
allowed-tools: Bash, Read, Write, Edit, Glob, Grep
ARIS Infrastructure Setup
Quick Start (One Command)
bash skills/aris-infra/setup.sh
This interactive script will: check prerequisites → install dependencies → register skills → configure MCP reviewer server.
---
Manual Setup (if you prefer)
Overview
ARIS uses **cross-model adversarial review** — Claude Code executes research tasks while an external LLM (GPT-5.4, Gemini, or others) provides critical review. This avoids the "self-play blind spot" where a single model reviewing its own work produces predictable feedback.
Prerequisites
- Python 3.10+
- Claude Code CLI
- At least one external LLM API key (OpenAI, Google Gemini, or MiniMax)
Step 1: Register MCP Servers
ARIS provides 5 MCP servers. Register the ones you need:
Core: Codex (GPT-5.4 Reviewer) — Recommended
npm install -g @openai/codex
claude mcp add codex -s user -- codex mcp-server
Configure in `~/.codex/config.toml`:
model = "gpt-5.4"
Alternative: Generic LLM Chat (Any OpenAI-compatible API)
claude mcp add llm-chat -s user -- python skills/aris-infra/mcp-servers/llm-chat/server.py
Environment variables:
- `LLM_API_KEY` — API key
- `LLM_BASE_URL` — API base URL (e.g., `https://api.openai.com/v1`)
- `LLM_MODEL` — Model name (e.g., `gpt-4o`)
- `LLM_FALLBACK_MODEL` — Fallback model on 504 errors
Alternative: Gemini Review
claude mcp add gemini-review -s user -- python skills/aris-infra/mcp-servers/gemini-review/server.py
Environment variables:
- `GEMINI_API_KEY` or `GOOGLE_API_KEY` — Google AI API key
- `GEMINI_REVIEW_MODEL` — Model (default: `gemini-2.5-pro`)
Alternative: Claude Review (Cross-session)
claude mcp add claude-review -s user -- python skills/aris-infra/mcp-servers/claude-review/server.py
Uses the `claude` CLI binary for reviews in a separate session.
Optional: MiniMax Chat
claude mcp add minimax-chat -s user -- python skills/aris-infra/mcp-servers/minimax-chat/server.py
Environment variables:
- `MINIMAX_API_KEY` — MiniMax API key
- `MINIMAX_MODEL` — Model (default: `MiniMax-M2.7`)
Optional: Feishu/Lark Notifications
claude mcp add feishu-bridge -s user -- python skills/aris-infra/mcp-servers/feishu-bridge/server.py
Environment variables:
- `FEISHU_APP_ID`, `FEISHU_APP_SECRET`, `FEISHU_USER_ID`
- `BRIDGE_PORT` — HTTP server port (default: 9100)
Step 2: Install Python Dependencies
pip install httpx arxiv requests
Step 3: Verify Setup
# Check MCP servers are registered
claude mcp list
# Test a tool call
# If using Codex: mcp__codex__codex should be available
# If using llm-chat: mcp__llm-chat__chat should be available
Available Workflows
After setup, use these one-click workflow skills:
| Skill | Command | Description | |-------|---------|-------------| | `aris-idea-discovery` | `/aris-idea-discovery` | Full idea pipeline: literature → ideas → novelty → review → refine | | `aris-experiment-bridge` | `/aris-experiment-bridge` | Implement experiments, deploy to GPU, collect results | | `aris-auto-review-loop` | `/aris-auto-review-loop` | Multi-round cross-model adversarial review | | `aris-paper-writing` | `/aris-paper-writing` | Plan → figures → write LaTeX → compile → improve | | `aris-rebuttal` | `/aris-rebuttal` | Parse reviews → strategy → draft → stress test | | `aris-research-pipeline` | `/aris-research-pipeline` | End-to-end: idea → experiments → review → paper |
Bundled Resources
MCP Servers (`mcp-servers/`)
- `llm-chat/server.py` — Generic OpenAI-compatible bridge
- `gemini-review/server.py` — Gemini review with async jobs
- `claude-review/server.py` — Claude Code CLI review bridge
- `minimax-chat/server.py` — MiniMax-specific bridge
- `feishu-bridge/server.py` — Feishu/Lark notification bridge
Python Tools (`tools/`)
- `arxiv_fetch.py` — arXiv search and PDF download
- `semantic_scholar_fetch.py` — Semantic Scholar search with filters
- `research_wiki.py` — Persistent research knowledge base
- `watchdog.py` — GPU training/download monitoring daemon
Templates (`templates/`)
- `RESEARCH_BRIEF_TEMPLATE.md` — Research direction input
- `RESEARCH_CONTRACT_TEMPLATE.md` — Active idea working document
- `EXPERIMENT_PLAN_TEMPLATE.md` — Claim-driven experiment roadmap
- `EXPERIMENT_LOG_TEMPLATE.md` — Structured experiment results
- `NARRATIVE_REPORT_TEMPLATE.md` — Paper writing input
- `PAPER_PLAN_TEMPLATE.md` — Claims-evidence matrix
- `IDEA_CANDIDATES_TEMPLATE.md` — Compact top ideas
- `FINDINGS_TEMPLATE.md` — Cross-stage discovery log
Troubleshooting
- **MCP server not found**: Ensure `claude mcp add` was run with `-s user` flag
- **API key errors**: Set environment variables in your shell profile (~/.zshrc or ~/.bashrc)
- **Python import errors**: Run `pip install httpx arxiv requests`
- **Codex not installed**: Run `npm install -g @openai/codex`
Read more
name: aris-infra description: | ARIS (Auto-claude-code-research-in-sleep) infrastructure setup and configuration. Configures MCP servers for cross-model adversarial review, installs Python tools, and validates environment. Run this first before using any other ARIS skills. Use when: setting up ARIS, configuring review servers, "aris setup", "配置ARIS". license: MIT metadata: author: wanshuiyin/ARIS version: "1.0.0" repository: https://github.com/wanshuiyin/Auto-claude-code-research-in-sleep allowed-tools: Bash, Read, Write, Edit, Glob, Grep
ARIS Infrastructure Setup
Quick Start (One Command)
bash skills/aris-infra/setup.sh
This interactive script will: check prerequisites → install dependencies → register skills → configure MCP reviewer server.
---
Manual Setup (if you prefer)
Overview
ARIS uses **cross-model adversarial review** — Claude Code executes research tasks while an external LLM (GPT-5.4, Gemini, or others) provides critical review. This avoids the "self-play blind spot" where a single model reviewing its own work produces predictable feedback.
Prerequisites
- Python 3.10+
- Claude Code CLI
- At least one external LLM API key (OpenAI, Google Gemini, or MiniMax)
Step 1: Register MCP Servers
ARIS provides 5 MCP servers. Register the ones you need:
Core: Codex (GPT-5.4 Reviewer) — Recommended
npm install -g @openai/codex claude mcp add codex -s user -- codex mcp-server
Configure in `~/.codex/config.toml`:
model = "gpt-5.4"
Alternative: Generic LLM Chat (Any OpenAI-compatible API)
claude mcp add llm-chat -s user -- python skills/aris-infra/mcp-servers/llm-chat/server.py
Environment variables:
- `LLM_API_KEY` — API key
- `LLM_BASE_URL` — API base URL (e.g., `https://api.openai.com/v1`)
- `LLM_MODEL` — Model name (e.g., `gpt-4o`)
- `LLM_FALLBACK_MODEL` — Fallback model on 504 errors
Alternative: Gemini Review
claude mcp add gemini-review -s user -- python skills/aris-infra/mcp-servers/gemini-review/server.py
Environment variables:
- `GEMINI_API_KEY` or `GOOGLE_API_KEY` — Google AI API key
- `GEMINI_REVIEW_MODEL` — Model (default: `gemini-2.5-pro`)
Alternative: Claude Review (Cross-session)
claude mcp add claude-review -s user -- python skills/aris-infra/mcp-servers/claude-review/server.py
Uses the `claude` CLI binary for reviews in a separate session.
Optional: MiniMax Chat
claude mcp add minimax-chat -s user -- python skills/aris-infra/mcp-servers/minimax-chat/server.py
Environment variables:
- `MINIMAX_API_KEY` — MiniMax API key
- `MINIMAX_MODEL` — Model (default: `MiniMax-M2.7`)
Optional: Feishu/Lark Notifications
claude mcp add feishu-bridge -s user -- python skills/aris-infra/mcp-servers/feishu-bridge/server.py
Environment variables:
- `FEISHU_APP_ID`, `FEISHU_APP_SECRET`, `FEISHU_USER_ID`
- `BRIDGE_PORT` — HTTP server port (default: 9100)
Step 2: Install Python Dependencies
pip install httpx arxiv requests
Step 3: Verify Setup
# Check MCP servers are registered claude mcp list # Test a tool call # If using Codex: mcp__codex__codex should be available # If using llm-chat: mcp__llm-chat__chat should be available
Available Workflows
After setup, use these one-click workflow skills:
| Skill | Command | Description | |-------|---------|-------------| | `aris-idea-discovery` | `/aris-idea-discovery` | Full idea pipeline: literature → ideas → novelty → review → refine | | `aris-experiment-bridge` | `/aris-experiment-bridge` | Implement experiments, deploy to GPU, collect results | | `aris-auto-review-loop` | `/aris-auto-review-loop` | Multi-round cross-model adversarial review | | `aris-paper-writing` | `/aris-paper-writing` | Plan → figures → write LaTeX → compile → improve | | `aris-rebuttal` | `/aris-rebuttal` | Parse reviews → strategy → draft → stress test | | `aris-research-pipeline` | `/aris-research-pipeline` | End-to-end: idea → experiments → review → paper |
Bundled Resources
MCP Servers (`mcp-servers/`)
- `llm-chat/server.py` — Generic OpenAI-compatible bridge
- `gemini-review/server.py` — Gemini review with async jobs
- `claude-review/server.py` — Claude Code CLI review bridge
- `minimax-chat/server.py` — MiniMax-specific bridge
- `feishu-bridge/server.py` — Feishu/Lark notification bridge
Python Tools (`tools/`)
- `arxiv_fetch.py` — arXiv search and PDF download
- `semantic_scholar_fetch.py` — Semantic Scholar search with filters
- `research_wiki.py` — Persistent research knowledge base
- `watchdog.py` — GPU training/download monitoring daemon
Templates (`templates/`)
- `RESEARCH_BRIEF_TEMPLATE.md` — Research direction input
- `RESEARCH_CONTRACT_TEMPLATE.md` — Active idea working document
- `EXPERIMENT_PLAN_TEMPLATE.md` — Claim-driven experiment roadmap
- `EXPERIMENT_LOG_TEMPLATE.md` — Structured experiment results
- `NARRATIVE_REPORT_TEMPLATE.md` — Paper writing input
- `PAPER_PLAN_TEMPLATE.md` — Claims-evidence matrix
- `IDEA_CANDIDATES_TEMPLATE.md` — Compact top ideas
- `FINDINGS_TEMPLATE.md` — Cross-stage discovery log
Troubleshooting
- **MCP server not found**: Ensure `claude mcp add` was run with `-s user` flag
- **API key errors**: Set environment variables in your shell profile (~/.zshrc or ~/.bashrc)
- **Python import errors**: Run `pip install httpx arxiv requests`
- **Codex not installed**: Run `npm install -g @openai/codex`
A Super AI Lab with massive AI Doctors as Assistants. Best IDE for Research via AI Power.
Repo: OpenLAIR/dr-claw
Other skills on dr-claw.
- /dr-claw
Dr. Claw skill for OpenClaw project discovery, idea intake, waiting-session triage, structured session control, event-driven notifications, and mobile reporting through the local drclaw CLI.
Open skill - /academic-researcher
Academic research assistant for literature reviews, paper analysis, and scholarly writing. Use when: reviewing academic papers, conducting literature reviews, writing research summaries, analyzing methodologies, formatting citations, or when user mentions academic research,
Open skill - /autogpt
Autonomous AI agent platform for building and deploying continuous agents. Use when creating visual workflow agents, deploying persistent autonomous agents, or building complex multi-step AI automation systems.
Open skill - /crewai
Multi-agent orchestration framework for autonomous AI collaboration. Use when building teams of specialized agents working together on complex tasks, when you need role-based agent collaboration with memory, or for production workflows requiring sequential/hierarchical
Open skill - /langchain
Framework for building LLM-powered applications with agents, chains, and RAG. Supports multiple providers (OpenAI, Anthropic, Google), 500+ integrations, ReAct agents, tool calling, memory management, and vector store retrieval. Use for building chatbots, question-answering
Open skill - /llamaindex
Data framework for building LLM applications with RAG. Specializes in document ingestion (300+ connectors), indexing, and querying. Features vector indices, query engines, agents, and multi-modal support. Use for document Q&A, chatbots, knowledge retrieval, or building RAG
Open skill

