ワンクリックで
vr-write-paper
Writes an academic paper based on experiment results and figures. Generates a publication-ready paper in LaTeX format.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Writes an academic paper based on experiment results and figures. Generates a publication-ready paper in LaTeX format.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Analyzes existing experiment results and designs/executes ablation experiments to verify the contribution of each component.
Skill for writing English text that reads as naturally human-authored, and for reviewing existing English text to detect and fix AI writing tells. Use this skill whenever the user asks to "write naturally", "remove AI tone", "make it sound human", "avoid AI tells", "de-AI", "humanize", "anti-AI writing", "sound less like ChatGPT", or any variation implying they want text free of detectable AI patterns. Also trigger when the user asks to review or edit text for AI-sounding patterns, or when they paste text and ask "does this sound like AI?" Even if the user simply says "write me a blog post" or "write an essay" without explicitly mentioning AI — if this skill is available, apply its principles by default to produce more natural prose.
Brainstorm research ideas and formulate research hypotheses. When a user presents a research topic or area of interest, explore related ideas.
Create a detailed experiment plan for a selected research idea. Define experiment variables, metrics, baselines, and datasets.
Deep literature review with multi-stage search, citation graph traversal, and full-text analysis. Uses Semantic Scholar API, arXiv HTML reading, and snowball search to produce comprehensive research landscape analysis.
Analyzes experiment results and generates publication-quality figures for papers using matplotlib.
| name | vr-write-paper |
| description | Writes an academic paper based on experiment results and figures. Generates a publication-ready paper in LaTeX format. |
| user-invocable | true |
| argument-hint | ["experiment-directory or paper-directory"] |
Writes an academic paper based on experiment results and figures.
$ARGUMENTS - Experiment directory or paper directory path
Read the following files to identify the information needed for paper writing:
Follow the standard academic paper structure:
Write each section.
Read .claude/skills/_shared/paper-search-protocol.md and execute a Level 2 search
focused on: "methods, benchmarks, and prior approaches most relevant to [paper's contribution]".
Generate BibTeX entries and merge into references.bib.
Use the per-paper analysis to write a structured Related Work narrative.
Summarize the core of the paper in 150-250 words:
papers/paper_YYYYMMDD_<title>/
├── main.tex # Main paper file
├── references.bib # References
├── sections/
│ ├── abstract.tex
│ ├── introduction.tex
│ ├── related_work.tex
│ ├── method.tex
│ ├── experiments.tex
│ ├── results.tex
│ ├── discussion.tex
│ └── conclusion.tex
├── figures/ # Figure files (copied or symlinked)
└── Makefile # Build automation
\documentclass{article}
% Conference style packages
\title{[Paper Title]}
\author{[Authors]}
\begin{document}
\maketitle
\input{sections/abstract}
\input{sections/introduction}
\input{sections/related_work}
\input{sections/method}
\input{sections/experiments}
\input{sections/results}
\input{sections/discussion}
\input{sections/conclusion}
\bibliographystyle{plain}
\bibliography{references}
\end{document}
/vr-peer-review <paper-dir> for self-review