Compile thesis chapters to DOCX or PDF via Pandoc. Use when the user says "compilar", "make tese", "gerar PDF", "gerar DOCX", or wants to build the thesis.
Install
npx skillscat add anavvanzin/iconocracy-corpus/claude-skills-compilar-tese Install via the SkillsCat registry.
SKILL.md
Compile the ICONOCRACIA thesis using the Makefile in vault/tese/.
Usage
/compilar-tese— full thesis as DOCX (default)/compilar-tese pdf— full thesis as PDF (requires LaTeX)/compilar-tese capitulo-N— single chapter as DOCX (e.g.capitulo-3)/compilar-tese clean— remove output artifacts
Steps
Check prerequisites:
command -v pandoc || echo "ERRO: pandoc não encontrado" test -f vault/tese/references.bib || echo "AVISO: references.bib ausente — citações não serão processadas" test -f vault/tese/abnt.csl || echo "AVISO: abnt.csl ausente — estilo ABNT não será aplicado"Run the appropriate make target:
# Full DOCX make -C vault/tese/ docx # Full PDF make -C vault/tese/ pdf # Single chapter (replace N with chapter number) make -C vault/tese/ capitulo-N.docx # Clean make -C vault/tese/ cleanReport result:
- On success: path to output file + file size
- On failure: show the Pandoc error, diagnose cause (missing .csl, .bib, bad YAML frontmatter), suggest fix
Common errors
| Error | Cause | Fix |
|---|---|---|
abnt.csl not found |
CSL file missing | Download from citation-style-language/styles |
references.bib not found |
BibTeX missing | Export from Zotero |
LaTeX Error |
Missing LaTeX package | Use DOCX target instead, or install texlive |
YAML parse error |
Bad frontmatter in chapter | Check the chapter file indicated in error |