LLM Skills
~/catalog/code generation//SKILL
Code generationGitHub source

Nanoresearch experiment

/SKILL

Generate a Python code skeleton from an experiment blueprint

OpenRaiserOpenRaiser
1.5k
May 26, 2026
MIT License
// skill content

--- name: nanoresearch-experiment description: Generate a Python code skeleton from an experiment blueprint version: 0.1.0 --- # 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 1. Parse the experiment blueprint for datasets, baselines, metrics, and ablation groups 2. Generate the project directory structure (data loaders, models, training, evaluation, configs) 3. Produce data loading and preprocessing code for each specified dataset 4. Implement model architecture stubs for the proposed method and each baseline 5. Generate a training loop with logging, checkpointing, and early stopping 6. Implement the evaluation harness to compute all specified metrics 7. Create configuration files for each ablation group 8. Add a main entry point that accepts a configuration 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

// original public source
OpenRaiser/NanoResearch
/skills/nanoresearch-experiment/SKILL.md
License: MIT License
Independent project, not affiliated with Anthropic. This skill remains the property of its original author.
// install this skill
Paste this command in your terminal at the root of your project:
mkdir -p .claude/commands && curl -o ".claude/commands/SKILL.md" "https://raw.githubusercontent.com/OpenRaiser/NanoResearch/main/skills/nanoresearch-experiment/SKILL.md"
Then in Claude Code, type /SKILL to activate it.
open_in_newOpen original source
// save
Save available after sign in.
loginSign in to save
// information
CreatorOpenRaiser
Stars 1.5k
LicenseMIT License
UpdatedMay 26, 2026
Format.md
AccessFree
// similar

Skills Code generation

View allarrow_forward