Claude Skill Write Academic Report banner
PHY041 PHY041

Claude Skill Write Academic Report

Development community

Description

Claude Code skill: Write 40-100+ page academic reports (FYP, thesis, dissertation) with parallel subagents.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

write-academic-report

**Claude Code skill** that writes 40-100+ page academic reports (FYP, thesis, dissertation) using parallel subagents — **3-4x faster** than sequential writing.

Research repo in → compiled LaTeX thesis out. 86 pages in ~6 hours, validated.

What it does

Point it at your research repo. It launches parallel agents to extract data, write chapters simultaneously, compile LaTeX, and audit cross-references:

Wave 0: Data Preparation    Wave 1: Chapter Writing    Wave 2: Assembly
(5-6 parallel agents)       (3-4 parallel agents)      (sequential)

Codebase analysis            Ch1-2 (Intro + Lit Review)  Merge chapters
Experiment data              Ch3 (Methodology)           Cross-ref audit
Statistics                   Ch4-5 (Setup + Results)     Compile (tectonic)
Figure generation            Ch6 (Conclusion)            Quality review

**3-4x faster** than sequential writing. Validated on an 86-page FYP report produced in ~6 hours.

Install

As a Claude Code skill

# Copy to your skills directory
cp -r . ~/.claude/skills/write-report/

# Or symlink
ln -s $(pwd) ~/.claude/skills/write-report

Dependencies

# LaTeX compiler (required)
brew install tectonic    # macOS
# Or: cargo install tectonic

# Python 3.10+ for scripts (included)
pip install requests   # for citation_checker.py
python3 scripts/cross_ref_audit.py --help
python3 scripts/citation_checker.py --help

Usage

Invoke with `/write-report` in Claude Code, or describe your report needs and the skill will be suggested.

Quick start

  1. Have your research repo with code + results ready
  2. Tell Claude: "Write my FYP report based on this repo"
  3. Claude will execute the 3-wave pipeline automatically

Citation verification

Verify all citations against 3 academic databases before submission. Catches AI-hallucinated references (6-55% of AI-generated citations are fabricated):

# Check all .bib files
python3 scripts/citation_che