NanoResearch nanoresearch-writing
Draft a LaTeX research paper from all previous stage outputs
install
source · Clone the upstream repo
git clone https://github.com/OpenRaiser/NanoResearch
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/OpenRaiser/NanoResearch "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/nanoresearch-writing" ~/.claude/skills/openraiser-nanoresearch-nanoresearch-writing && rm -rf "$T"
manifest:
skills/nanoresearch-writing/SKILL.mdsource content
Writing Skill
Purpose
Take all previous outputs (ideation, planning, experiment results) and produce a complete LaTeX paper draft with figures, tables, and bibliography.
Tools Required
: Generate and assemble LaTeX source files for each paper sectiongenerate_latex
: Compile the LaTeX source into a PDF documentcompile_pdf
: Produce publication-quality figures from experiment resultsgenerate_figure
Input
: Path toideation_output
from the ideation skillpapers/ideation_output.json
: Path toexperiment_blueprint
from the planning skillpapers/experiment_blueprint.json
: Path toexperiment_results
directory containing code and results from the experiment skillexperiments/
Process
- Parse all upstream outputs to gather hypotheses, literature, experiment design, and results
- Generate the paper outline following a standard structure (Abstract, Introduction, Related Work, Method, Experiments, Conclusion)
- Draft the Abstract summarizing the problem, approach, and key findings
- Draft the Introduction motivating the research question and stating contributions
- Draft Related Work synthesizing the surveyed literature from the ideation stage
- Draft the Method section describing the proposed approach in detail
- Draft the Experiments section with dataset descriptions, baseline comparisons, and ablation results
- Generate figures (performance plots, ablation charts, architecture diagrams) using
generate_figure - Generate tables summarizing quantitative results
- Draft the Conclusion with a summary of findings and future work directions
- Compile the bibliography from all cited papers
- Assemble the full LaTeX document using
generate_latex - Compile to PDF using
and verify the outputcompile_pdf
Output
Produces
papers/draft/ directory containing:
: Complete LaTeX source of the papermain.tex
: Bibliography file with all citationsreferences.bib
: Generated figures in PDF or PNG formatfigures/
: LaTeX table source filestables/
: Compiled PDF of the paper draftmain.pdf