| id | paper_writing_skills_index |
| name | Paper Writing Skills Index |
| description | Skills for the Paper Write Team: report and academic templates for
HTML/PDF rendering. Each template file is self-contained (HTML + CSS
or LaTeX in a single markdown file).
|
Paper Writing Skills
Resources for the Paper Write Team's reporter agent. Each template is a
self-contained markdown file with the full HTML+CSS or LaTeX content.
Templates
| Template | File | Style | Use Case |
|---|
report_standard | report_standard.md | Professional report (Manus-style), HTML+CSS | Default for all reports |
report_academic | report_academic.md | Formal academic paper, HTML+CSS | HTML preview for academic papers |
latex_cn | latex_cn.md | Chinese academic paper, LaTeX | Chinese academic PDF via Tectonic |
latex_en | latex_en.md | English academic paper, LaTeX | English academic PDF via Tectonic |
How to Use
Report style (default)
- Reporter reads this skill index
- Reporter reads
report_standard.md — contains both the HTML template and CSS
- Reporter reads paper.md, parses frontmatter, converts Markdown body to HTML
- Reporter fills the HTML template with metadata + CSS + content
- Reporter writes the final HTML file
- The UI exports the HTML to PDF on user request (browser print-to-PDF using the
@media print CSS rules)
Academic style
- Reporter reads this skill index
- Reporter reads the LaTeX template (
latex_cn.md or latex_en.md based on lang)
- Reporter reads paper.md, parses frontmatter, converts Markdown body to LaTeX
- Reporter fills the LaTeX template with metadata + content, writes .tex file
- Reporter runs Tectonic to compile PDF
- Reporter also reads
report_academic.md to generate an HTML preview
Custom templates
Users can add their own .md template files to this directory following the
same format (frontmatter + HTML/CSS or LaTeX in code blocks).