From airas
Run an end-to-end automated ML research project with the AIRAS MCP tools where Claude Code itself authors the generation steps (hypothesis, experimental design, analysis, paper) using AIRAS's curated prompts via get_generation_prompt — no LLM provider API key required. Use when the user wants automated research with AIRAS but no LLM provider key (OPENAI_API_KEY etc.) is configured, or when they want you to write the research artifacts yourself. If backend LLM keys are configured and preferred, use the auto-research skill instead.
How this skill is triggered — by the user, by Claude, or both
Slash command
/airas:auto-research-claude-codeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You author every research artifact yourself, guided by AIRAS's curated
You author every research artifact yourself, guided by AIRAS's curated
prompts. AIRAS provides retrieval, prompt assembly, and execution
infrastructure as MCP tools (server name: airas). No LLM provider API
key is needed; GH_PERSONAL_ACCESS_TOKEN is still required for
repository/experiment tools (credentials: ~/.airas/credentials.json,
editable via open_dashboard).
For each generation step, call
get_generation_prompt(step, inputs). It returns:
prompt — AIRAS's curated prompt, fully rendered from your inputs
(the same template the backend LLM would use)output_json_schema — exactly the data format to produceflow — how the output feeds the next stepFollow the prompt and produce the output in one pass, matching the
schema. Steps: research_queries, hypothesis, experimental_design,
experiment_analysis, paper_writing, latex_conversion.
get_generation_prompt("research_queries", ...) → search_papers
(no key needed) → read papers with fetch_paper_fulltext (no key
needed) and extract the study details yourself. (retrieve_papers
needs a backend LLM key — do its extraction yourself in this mode.)get_generation_prompt("hypothesis", ...) then
get_generation_prompt("experimental_design", ...) (ask the user
about the compute environment; retrieve_models / retrieve_datasets
list curated candidates, no key needed).prepare_repository, then clone
it locally with git.AGENTS.md first — it defines the contract (allowed files, CLI shape,
sanity / pilot / full modes, validation verdict lines, W&B
conventions). For library-specific guidance (fine-tuning frameworks,
distributed training, inference), get_library_docs (no key needed)
returns each library's official docs and llms.txt endpoints — fetch
those for current API usage instead of relying on memory. (The
AI-Research-SKILLs library, which the template's code-generation
workflows install on their runners, can also be installed locally:
npx @orchestra-research/ai-research-skills.) Run
mode=sanity locally until it prints SANITY_VALIDATION: PASS, then
commit and push.dispatch_experiment (async;
backend="github_actions" or "aixs" with a compute_type). Poll
get_workflow_runs (GitHub Actions) or get_experiment_run_status
(either backend; returns stdout/stderr tails for debugging). Fix code
locally and re-dispatch as needed.fetch_experiment_results, then author the analysis via
get_generation_prompt("experiment_analysis", ...) (pass the code
from your clone as {"files": {"<path>": "<content>"}}).generate_bibfile (no key needed) → author via
get_generation_prompt("paper_writing", ...) → convert via
get_generation_prompt("latex_conversion", ...), embed into
template.tex as its flow describes, save as
.research/latex/{template}/main.tex in the clone and push with git.open_in_overleaf — it returns a link that creates an
editable Overleaf project (pass local_path to export the local
working tree without pushing; no GitHub token needed for that variant).
In this mode Overleaf is the primary exit: compile_latex runs a
LaTeX-fixing agent on GitHub Actions that requires an
ANTHROPIC_API_KEY repository secret, which key-free setups don't
have. Only suggest compile_latex if the user has set that secret.upload_research_history saves the state;
download_research_history restores it in a later session.data.values)
and render_chart it to .research/results/chart/<name>.pdf in the
clone. Rendering is fully local; no API keys.render_diagram it to .research/results/diagram/<name>.pdf. Uses
https://kroki.io by default; KROKI_BASE_URL switches to self-hosted.compile_latex and
open_in_overleaf collect every PDF under .research/results/ into the
paper's images/ (structure preserved) — reference them in LaTeX as
images/<path>, e.g. images/chart/loss.pdf.npx claudepluginhub airas-org/airas --plugin airasRun an end-to-end automated ML research project with the AIRAS MCP tools, using backend LLM API keys for the generation steps (hypothesis, experimental design, analysis, paper writing). Use when the user wants to start or continue automated research with AIRAS and LLM provider API keys (OPENAI_API_KEY etc.) are configured in ~/.airas/credentials.json. If no LLM provider key is available, use the auto-research-claude-code skill instead.
Autonomous ML research workflows using ARIS — Markdown-only skills for cross-model paper review, idea discovery, experiment automation, and paper writing with Claude Code, Codex, or any LLM agent.
Runs an autonomous 5-stage research loop that reads research.md, proposes hypotheses, runs experiments, evaluates results mechanically, keeps improvements, discards failures, and iterates until a target metric is achieved or budget exhausted.