mcpbeat

Nanoresearch Experiment

openraiser/nanoresearch-experiment

Generate a Python code skeleton from an experiment blueprint

422 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
1480
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/OpenRaiser/NanoResearch --skill nanoresearch-experiment

The instruction itself

6 sections, as written by the author

Experiment Skill

Purpose

Take the experiment blueprint and produce a runnable Python code skeleton that implements the proposed method, baselines, training loops, evaluation harness, and ablation configurations.

Tools Required

None. This skill operates entirely through LLM code generation based on the experiment blueprint.

Input

  • experiment_blueprint: Path to papers/experiment_blueprint.json produced by the planning skill

Process

  • Parse the experiment blueprint for datasets, baselines, metrics, and ablation groups
  • Generate the project directory structure (data loaders, models, training, evaluation, configs)
  • Produce data loading and preprocessing code for each specified dataset
  • Implement model architecture stubs for the proposed method and each baseline
  • Generate training loop with logging, checkpointing, and early stopping
  • Implement the evaluation harness computing all specified metrics
  • Create configuration files for each ablation group
  • Add a main entry point that accepts a config and runs the full train-evaluate pipeline

Output

Produces experiments/ directory containing:

  • data/: Data loading and preprocessing modules
  • models/: Model architecture implementations (proposed method and baselines)
  • training/: Training loop and optimization utilities
  • evaluation/: Metric computation and result aggregation
  • configs/: YAML configuration files for each experiment and ablation variant
  • run.py: Main entry point for launching experiments
  • requirements.txt: Python dependencies

How to use it

Copy the folder

Take openraiser/nanoresearch-experiment from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.