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

aris-autonomous-ml-researchAris 自主机器学习研究

Agent Skill

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

总安装

8,381

周安装

360

GitHub Stars

39

下载量

2,938
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:aris-autonomous-ml-research(Aris 自主机器学习研究)
来源仓库:https://github.com/aradotso/trending-skills
仓库路径:skills/aris-autonomous-ml-research
安装命令:
npx skills add https://github.com/aradotso/trending-skills --skill aris-autonomous-ml-research
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/aradotso/trending-skills --skill aris-autonomous-ml-research

简介

Aris 自主机器学习研究用于自动化论文审阅、创意发现、实验执行和文档撰写。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中运行跨模型研究流程或生成实验报告。
  • 通过关键词触发工作流,如设置自动研究管道或睡眠期间运行任务。
  • 安装前需确认权限范围、维护状态及是否会触发联网或文件操作。
  • 建议结合原始 README 核验具体用法和依赖配置。

SKILL.md

---
name: aris-autonomous-ml-research
description: Autonomous ML research workflows using ARIS (Auto-Research-In-Sleep) — Markdown-only skills for cross-model paper review, idea discovery, experiment automation, and paper writing with Claude Code, Codex, or any LLM agent.
triggers:
  - "set up ARIS for autonomous research"
  - "run research pipeline while I sleep"
  - "automate ML paper writing with Claude Code"
  - "cross-model review loop for my paper"
  - "use ARIS to find research ideas"
  - "run experiment automation with ARIS"
  - "set up auto paper review workflow"
  - "write rebuttal with ARIS"
---

# ARIS — Auto-Research-In-Sleep

> Skill by [ara.so](https://ara.so) — Daily 2026 Skills collection.

ARIS is a **zero-dependency, Markdown-only** autonomous ML research system. Every "skill" is a plain `SKILL.md` file that any LLM agent can read and execute. It orchestrates cross-model collaboration — one model executes research (Claude Code, Codex, etc.) while another acts as adversarial reviewer (GPT-5.4, Gemini, GLM, MiniMax, etc.) to break self-play blind spots.

**Core value**: going from research direction → paper ideas → experiments → written paper → rebuttal, autonomously, overnight.

---

## Installation

### 1. Clone the Repository

git clone https://github.com/wanshuiyin/Auto-claude-code-research-in-sleep.git cd Auto-claude-code-research-in-sleep


No `pip install`, no Docker, no daemon. The entire system is Markdown files.

### 2. Install Claude Code (Primary Agent)

npm install -g @anthropic-ai/claude-code


### 3. Install Codex MCP (Cross-Model Reviewer)

npm install -g @openai/codex


Configure Claude Code to use the Codex MCP server by adding to your Claude Code config (`~/.claude/settings.json`):

{ "mcpServers": { "codex": { "command": "codex", "args": ["mcp"], "env": { "OPENAI_API_KEY": "$OPENAI_API_KEY" } } } }


### 4. Copy Skills into Claude Code

Copy all skills to Claude Code's custom skills directory

cp -r skills/claude-code/ ~/.claude/skills/

Or symlink to stay up to date

ln -s $(pwd)/skills/claude-code ~/.claude/skills/aris


### 5. Set Environment Variables

Required for Claude Code

export ANTHROPIC_API_KEY=your_anthropic_key

Required for cross-model review (GPT-5.4 as reviewer)

export OPENAI_API_KEY=your_openai_key

Optional: alternative reviewer models (no OpenAI needed)

export LLM_REVIEWER_BASE_URL=https://api.minimax.chat/v1 export LLM_REVIEWER_API_KEY=your_minimax_key export LLM_REVIEWER_MODEL=MiniMax-M2.7


---

## Alternative Model Combinations (No Claude/OpenAI Required)

ARIS works with any OpenAI-compatible API. Configure the `llm-chat` MCP server:

{ "mcpServers": { "llm-chat": { "command": "node", "args": ["mcp-servers/llm-chat/index.js"], "env": { "LLM_BASE_URL": "$LLM_REVIEWER_BASE_URL", "LLM_API_KEY": "$LLM_REVIEWER_API_KEY", "LLM_MODEL": "$LLM_REVIEWER_MODEL" } } } }


Tested combinations:

| Executor | Reviewer | Config |
| --- | --- | --- |
| Claude Code | GPT-5.4 xhigh | Default |
| Codex CLI | Gemini | [Guide](https://github.com/aradotso/trending-skills/blob/HEAD/skills/aris-autonomous-ml-research/docs/CODEX_GEMINI_REVIEW_GUIDE.md) |
| Claude Code | MiniMax-M2.7 | `LLM_BASE_URL=https://api.minimax.chat/v1` |
| Claude Code | GLM-5 | `LLM_BASE_URL=https://open.bigmodel.cn/api/paas/v4` |
| MiniMax-M2.7 | GLM-5 | [Guide](https://github.com/aradotso/trending-skills/blob/HEAD/skills/aris-autonomous-ml-research/docs/MiniMax-GLM-Configuration.md) |
| Codex CLI | Claude | Swap executor/reviewer |

---

## Core Workflows

### Workflow 0: Full Pipeline (Start Here)

/research-pipeline "factorized gap in discrete diffusion LMs"


**With a reference paper and base repo:**

/research-pipeline "improve method X" — ref paper: https://arxiv.org/abs/2406.04329, base repo: https://github.com/org/project


ARIS will:

1. Read the paper → find weaknesses
2. Clone the codebase
3. Generate ideas that fix those weaknesses using that code
4. Run experiments
5. Write the paper

**Parameters:**

/research-pipeline "topic" — ref paper: <arxiv_url> # Optional: paper to improve — base repo: <github_url> # Optional: codebase to build on — venue: ICML # Target venue (default: ICML) — compact: true # Lean summaries for short-context models


---

### Workflow 1: Idea Discovery

/idea-discovery "discrete diffusion language models"


Scans literature, identifies gaps, generates novel research directions, scores each idea for novelty/feasibility, and outputs a ranked proposal list.

---

### Workflow 1.5: Experiment Bridge

/experiment-bridge "run ablation on temperature scaling" — code review: true


Cross-model code review before GPU deployment (enabled by default). Catches bugs, confirms experimental validity, then runs.

Example: what experiment-bridge automates

1. Claude Code writes training script

2. GPT-5.4 reviews the code (code review gate)

3. If approved → submits to GPU cluster

4. Monitors via W&B API

import wandb

api = wandb.Api() runs = api.runs("your-entity/your-project") for run in runs: print(run.name, run.summary.get("val_loss", None))


---

### Workflow 2: Paper Writing

/paper-writing "results/" — venue: NeurIPS


Generates LaTeX paper from experiment results. Anti-hallucination enforced: every citation verified via DBLP → CrossRef → `[VERIFY]` tag if unconfirmed.

**Venue templates available:** ICML, NeurIPS, ICLR, CVPR, ACL, AAAI, ACM MM

---

### Workflow 3: Auto Review Loop

/auto-review "paper.pdf"


The core ARIS loop:

1. Claude Code reads the paper
2. GPT-5.4 reviews as adversarial critic
3. Claude Code rewrites based on critique
4. Score tracked across rounds (target: 8/10 "clear accept")
5. Loop repeats until convergence or max rounds

Score progression: 5.2 → 6.1 → 7.3 → 8.0 ✓


---

### Workflow 4: Rebuttal

/rebuttal "paper/ + reviews" — venue: ICML, character limit: 5000


**Parameters:**

| Parameter | Default | Description |
| --- | --- | --- |
| `venue` | `ICML` | Target venue |
| `character limit` | required | Hard limit for submission |
| `quick mode` | `false` | Stop after parsing + strategy (no draft) |
| `auto experiment` | `false` | Auto-run supplementary experiments |
| `max stress test rounds` | `1` | GPT-5.4 stress-test iterations |
| `max followup rounds` | `3` | Per-reviewer follow-up limit |

**Three safety gates** (rebuttal won't finalize if any fails):

- 🔒 No fabrication — every claim maps to paper/review/user-confirmed result
- 🔒 No overpromise — every promise is user-approved
- 🔒 Full coverage — every reviewer concern is tracked

**Outputs:**

- `PASTE_READY.txt` — exact char count, paste directly to venue
- `REBUTTAL_DRAFT_rich.md` — extended version for manual editing

---

### Bonus: Slides and Poster

Conference presentation

/paper-slides "paper/" # → Beamer PDF + PPTX + speaker notes + Q&A prep

Conference poster

/paper-poster "paper/" # → A0/A1 poster PDF + editable PPTX + SVG


---

## Standalone Skills

These skills can be invoked independently or are integrated into the core workflows:

| Skill | Command | Description |
| --- | --- | --- |
| Research Refine | `/research-refine` | Turn vague ideas into anchored proposals |
| Experiment Plan | `/experiment-plan` | Claim-driven experiment roadmaps |
| Training Check | `/training-check` | Validate training runs before full launch |
| Result to Claim | `/result-to-claim` | Convert raw results to paper claims |
| Ablation Planner | `/ablation-planner` | Design ablation study structure |
| Formula Derivation | `/formula-derivation` | Research formula development and verification |
| Grant Proposal | `/grant-proposal` | Write grant proposals from research |
| Paper Illustration | `/paper-illustration` | Generate figures (Gemini-powered) |
| Citation Claw | `/citation-claw` | Verify and format citations |

---

## Session Recovery & Compact Mode

For short-context models or after interruption:

/research-pipeline "topic" — compact: true


Generates lean summary files at each checkpoint. Resume after interruption:

/research-refine — resume: true


ARIS auto-checkpoints the `research-refine` workflow and resumes from last completed phase.

---

## Codex CLI Native Skills

Full skill set available for OpenAI Codex without Claude Code:

cd skills/skills-codex/ codex "run idea-discovery on discrete diffusion"


---

## MCP Server: llm-chat

The `llm-chat` MCP server bridges any OpenAI-compatible API as a reviewer. Start it manually for debugging:

cd mcp-servers/llm-chat/ node index.js


Environment variables:

export LLM_BASE_URL=https://api.openai.com/v1 # Any OpenAI-compatible endpoint export LLM_API_KEY=$OPENAI_API_KEY export LLM_MODEL=gpt-4o # Any model name


---

## Free Tier via ModelScope

Zero-cost option — no API key required:

See full guide: docs/MODELSCOPE_GUIDE.md

export MODELSCOPE_API_KEY=your_modelscope_token export LLM_BASE_URL=https://api-inference.modelscope.cn/v1 export LLM_MODEL=Qwen/Qwen2.5-72B-Instruct


---

## Input Templates

Templates for every workflow live in `templates/`:

ls templates/

idea-discovery.md

experiment-bridge.md

paper-writing.md

auto-review.md

rebuttal.md

research-refine.md


Use them to structure your inputs:

cat templates/rebuttal.md

Fill in: paper path, review text, venue, character limit

Then: /rebuttal [filled template]


---

## Directory Structure

Auto-claude-code-research-in-sleep/ ├── skills/ │ ├── claude-code/ # Claude Code SKILL.md files │ ├── skills-codex/ # Codex CLI native skills │ ├── idea-discovery/ │ ├── experiment-bridge/ │ ├── paper-writing/ │ ├── auto-review/ │ ├── rebuttal/ SKILL.md ← each is a single readable file │ ├── paper-slides/ │ ├── paper-poster/ │ ├── research-refine/ │ ├── formula-derivation/ │ └── ... ├── mcp-servers/ │ └── llm-chat/ # Universal reviewer bridge ├── templates/ # Input templates for every workflow ├── docs/ │ ├── CURSOR_ADAPTATION.md │ ├── TRAE_ARIS_RUNBOOK_EN.md │ ├── ANTIGRAVITY_ADAPTATION.md │ ├── MODELSCOPE_GUIDE.md │ ├── MiniMax-GLM-Configuration.md │ └── CODEX_GEMINI_REVIEW_GUIDE.md └── README.md


---

## Troubleshooting

**Cross-model review not triggering:**

- Check MCP server is running: `codex mcp` or `node mcp-servers/llm-chat/index.js`
- Verify `OPENAI_API_KEY` or `LLM_API_KEY` is set
- Check Claude Code MCP config in `~/.claude/settings.json`

**W&B metrics not loading:**

import wandb

Ensure you're logged in

wandb.login(key=os.environ["WANDB_API_KEY"]) api = wandb.Api()

Use full entity/project path

runs = api.runs("your-entity/your-project")


**Context window exceeded mid-workflow:**

/research-pipeline "topic" — compact: true


Then resume with `— resume: true` on the next interrupted skill.

**Citation hallucination warnings (`[VERIFY]` tags):** These are intentional — ARIS flags unverified citations rather than silently hallucinating. Manually verify flagged citations before submission.

**Rebuttal exceeds character limit:** Increase `max stress test rounds` — each round trims the draft:

/rebuttal "paper/ + reviews" — character limit: 5000, max stress test rounds: 3


**ModelScope free tier rate limits:** Add delay between skill calls or switch to a paid endpoint for overnight runs.

---

## Why Two Models (Not One, Not Four)

- **1 model self-reviewing** → local minima, blind spots (stochastic bandit)
- **2 models cross-reviewing** → adversarial critique breaks blind spots (adversarial bandit)
- **4+ models** → diminishing returns, 2-4× API cost, coordination overhead

Claude Code = fast fluid execution. GPT-5.4/Gemini/GLM = slower, more deliberate critique. Speed × Rigor = better outcomes than either model alone.

---

## Community & Citation

@software{aris2026, title = {ARIS: Auto-Research-In-Sleep}, author = {wanshuiyin}, year = {2026}, url = {https://github.com/wanshuiyin/Auto-claude-code-research-in-sleep} }


Join the community: [GitHub Discussions](https://github.com/wanshuiyin/Auto-claude-code-research-in-sleep/discussions)

Papers accepted using ARIS: CS Conference (8/10 "clear accept"), AAAI 2026 Main Technical (7/10 "good paper, accept").

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.73%
按下载量换算991

Claude

31.95%
按下载量换算939

Cursor

20.54%
按下载量换算603

Gemini CLI

9.19%
按下载量换算270

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills