Skip to main content
ClaudeWave
Skill1.5k estrellas del repoactualizado 18d ago

nanoresearch-planning

The nanoresearch-planning skill transforms a validated research hypothesis into a detailed experiment blueprint by analyzing the ideation output and specifying datasets, baseline comparison methods, evaluation metrics, and ablation study groups. Use this skill after hypothesis selection to establish concrete experimental specifications before implementation begins.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/OpenRaiser/NanoResearch /tmp/nanoresearch-planning && cp -r /tmp/nanoresearch-planning/skills/nanoresearch-planning ~/.claude/skills/nanoresearch-planning
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# Planning Skill

## Purpose
Take the selected hypothesis from ideation and produce a detailed experiment blueprint specifying datasets, baselines, evaluation metrics, and ablation groups.

## Tools Required
None. This skill operates entirely through LLM reasoning over the ideation output.

## Input
- `ideation_output`: Path to `papers/ideation_output.json` produced by the ideation skill

## Process
1. Parse the selected hypothesis and supporting literature from the ideation output
2. Identify candidate datasets that are publicly available and appropriate for validating the hypothesis
3. Select 2-4 baseline methods from the surveyed literature for comparison
4. Define primary and secondary evaluation metrics aligned with the hypothesis
5. Design ablation groups that isolate each novel component of the proposed approach
6. Estimate computational requirements and timeline for each experiment
7. Compile everything into a structured experiment blueprint

## Output
Produces `papers/experiment_blueprint.json` containing:
- Selected hypothesis (carried forward)
- Dataset specifications (name, source, splits, preprocessing steps)
- Baseline methods with references
- Evaluation metrics and success criteria
- Ablation study design (groups, variables, expected outcomes)
- Resource estimates and experiment schedule
nanoresearch-experimentSkill

Generate a Python code skeleton from an experiment blueprint

nanoresearch-ideationSkill

Search academic literature and generate research hypotheses

nanoresearch-writingSkill

Draft a LaTeX research paper from all previous stage outputs

autoresearchSkill

Orchestrates end-to-end autonomous AI research projects using a two-loop architecture. The inner loop runs rapid experiment iterations with clear optimization targets. The outer loop synthesizes results, identifies patterns, and steers research direction. Routes to domain-specific skills for execution, supports continuous agent operation via Claude Code /loop and OpenClaw heartbeat, and produces research presentations and papers. Use when starting a research project, running autonomous experiments, or managing a multi-hypothesis research effort.

academic-plottingSkill

Generates publication-quality figures for ML papers from research context. Given a paper section or description, extracts system components and relationships to generate architecture diagrams via Gemini. Given experiment results or data, auto-selects chart type and generates data-driven figures via matplotlib/seaborn. Use when creating any figure for a conference paper.

huggingface-accelerateSkill

Simplest distributed training API. 4 lines to add distributed support to any PyTorch script. Unified API for DeepSpeed/FSDP/Megatron/DDP. Automatic device placement, mixed precision (FP16/BF16/FP8). Interactive config, single launch command. HuggingFace ecosystem standard.

brainstorming-research-ideasSkill

Guides researchers through structured ideation frameworks to discover high-impact research directions. Use when exploring new problem spaces, pivoting between projects, or seeking novel angles on existing work.

creative-thinking-for-researchSkill

Applies cognitive science frameworks for creative thinking to CS and AI research ideation. Use when seeking genuinely novel research directions by leveraging combinatorial creativity, analogical reasoning, constraint manipulation, and other empirically grounded creative strategies.