agentsclimarketplace

Generating writeup

Skill qte77/claude-code-plugins/plugins/docs-generator/skills/generating-writeup

A Claude Code plugin marketplace providing skills, rules, and scripts extracted from a production development workflow.

Install
npx -y skills add qte77/claude-code-plugins --skill generating-writeup

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Generates academic/technical writeups with IEEE citations and pandoc PDF output. Use when creating research papers, technical reports, or documentation with references.

SKILL.md

4.0 KB, as published. Nobody here has run it

Writeup Generation

Target: $ARGUMENTS

Generates structured academic/technical writeups as markdown with citation support. IEEE [1] style by default. PDF export via pandoc is optional.

Workflow

  1. Parse arguments - Extract topic, template (default: project-report-IMRaD), and citation style
  2. Create directory - docs/write-up/<topic>/
  3. Copy template - Copy from templates/ to docs/write-up/<topic>/:
    • project-report-IMRaD — scientific/academic (Introduction, Methods, Results, Discussion)
    • technical-doc — software documentation (Overview, Architecture, API, Config, Deployment)
  4. Fill sections - Replace TODO comments in each chapter file
  5. Setup bibliography - Add entries to 09a_bibliography.bib
  6. Run markdownlint - npx markdownlint-cli docs/write-up/<topic>/*.md
  7. Generate PDF (optional) - If pandoc is available, run make pandoc_run

Additional Resources

  • Templates: project-report-IMRaD/ | technical-doc/
  • Setup help: make -f $CLAUDE_PLUGIN_ROOT/Makefile setup_pdf_converter HELP
  • Pandoc help: make -f $CLAUDE_PLUGIN_ROOT/Makefile pandoc_run HELP=1

Citation Styles

StyleCSL FileNotes
IEEE (default)Bundled (scripts/writeup/citation-styles/ieee.csl)Numeric [1]
APABundled (scripts/writeup/citation-styles/apa.csl)Author-date (Smith, 2024)
ChicagoBundled (scripts/writeup/citation-styles/chicago-author-date.csl)Author-date (Smith 2024)

Additional CSL files are available from the Zotero Style Repository.

PDF Export (Optional)

If pandoc and LaTeX are installed, generate PDF using the bundled Makefile:

dir=docs/write-up/<topic> && \
make -f $CLAUDE_PLUGIN_ROOT/Makefile pandoc_run \
  INPUT_FILES="$$(printf '%s\036' $$dir/*.md)" \
  OUTPUT_FILE="$$dir/output.pdf" \
  BIBLIOGRAPHY="$$dir/09a_bibliography.bib"

With custom citation style:

dir=docs/write-up/<topic> && \
make -f $CLAUDE_PLUGIN_ROOT/Makefile pandoc_run \
  INPUT_FILES="$$(printf '%s\036' $$dir/*.md)" \
  OUTPUT_FILE="$$dir/output.pdf" \
  BIBLIOGRAPHY="$$dir/09a_bibliography.bib" \
  CSL="$CLAUDE_PLUGIN_ROOT/scripts/writeup/citation-styles/apa.csl"

Full writeup build (content generation + PDF):

make -f $CLAUDE_PLUGIN_ROOT/Makefile writeup \
  WRITEUP_DIR=docs/write-up/<topic>

Section Numbering (MANDATORY)

NEVER add manual section numbers to headings. Pandoc --number-sections handles all numbering automatically.

  • Wrong: # 2. Projektvorstellung, ## 2.1 Motivation, ### 2.1.1 Details
  • Correct: # Projektvorstellung, ## Motivation, ### Details

Manual numbers in markdown headings conflict with pandoc auto-numbering and produce duplicated numbers in the PDF output.

Quality Checks

Before completing:

  1. No manual section numbers - Headings must not contain N., N.N, N.N.N prefixes
  2. Markdownlint - npx markdownlint-cli docs/write-up/<topic>/*.md
  3. Citation validation - Verify all [@key] references exist in .bib file
  4. PDF generation (optional) - If pandoc available, run make pandoc_run

Further Reading

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.