$npx -y skills add ShZhao27208/Aut_Sci_Write --skill sci-pptGenerate professional academic PowerPoint (PPTX) presentations from paper PDFs, structured outlines, or plain text. Use for thesis defense, seminar reports, literature presentations, and graduate school applications. Supports automatic figure extraction, LaTeX formula rendering,
| 1 | # Sci-PPT — Academic Auto-PPT Agent |
| 2 | |
| 3 | A specialized tool for generating professional academic presentations directly from paper content or structured outlines. |
| 4 | |
| 5 | ## Core Behavioral Rules (The 12 Laws) |
| 6 | |
| 7 | 1. **Format**: Use `1. Title` for chapters and `- Point` for bullets. |
| 8 | 2. **Markdown**: 🚫 DO NOT use `##` for slide titles; it is not recognized by the parser. |
| 9 | 3. **Innovation**: Identify the core innovation of the paper and highlight it in **Red**. |
| 10 | 4. **Imagery**: Use HD extraction (600 DPI) for figures; minimum width >= 300px. |
| 11 | 5. **No Scrapping**: 🚫 PROHIBITED to scrap low-quality bitmaps from PDF streams. |
| 12 | 6. **Formulas**: Render LaTeX formulas as high-quality transparent PNGs. |
| 13 | 7. **Transparency**: All generated formula/media assets must have transparent backgrounds. |
| 14 | 8. **Feedback**: Inform the user if an operation (like PDF parsing) will take >10 seconds. |
| 15 | 9. **Final Output**: 🚫 DO NOT output intermediate Markdown; generate and provide the `.pptx` directly. |
| 16 | 10. **Colors**: Use `#1E3A5F` (Primary Blue) and `#EE0000` (Highlight Red). |
| 17 | 11. **Layout**: Ensure zero text-overflow or figure-text overlap. |
| 18 | 12. **Professionalism**: Keep communication brief and technical; skip AI pleasantries. |
| 19 | |
| 20 | ## Usage |
| 21 | |
| 22 | ### Simple Text Input |
| 23 | ```python |
| 24 | from aut_sci_ppt import create_ppt |
| 25 | |
| 26 | create_ppt(""" |
| 27 | 主题:[Title] |
| 28 | 申请人:[Name] |
| 29 | 1. [Section Title] |
| 30 | - [Content] |
| 31 | """, "output.pptx") |
| 32 | ``` |
| 33 | |
| 34 | ### PDF to PPT (Academic Workflow) |
| 35 | ```python |
| 36 | from aut_sci_ppt import auto_generate_ppt |
| 37 | |
| 38 | output = auto_generate_ppt("paper.pdf", author="张三", advisor="李教授") |
| 39 | ``` |
| 40 | |
| 41 | ## Translation and API keys |
| 42 | - No translation API key is required by default. PDF-to-PPT keeps extracted content in the paper's original language. |
| 43 | - Optional Chinese translation is available only when explicitly requested with `translate=True` in Python or `--translate` in the CLI. |
| 44 | - `MOONSHOT_API_KEY` (in `~/.aut_sci_write/.env`) is only used for that optional translation path. If translation is not requested, the workflow does not read or require this key. |
| 45 | - Network access is still required for LaTeX formula rendering (via codecogs.com). |
| 46 | |
| 47 | |
| 48 | |
| 49 | |
| 50 | |
| 51 | --- |
| 52 | |
| 53 | ## © License & Copyright |
| 54 | |
| 55 | **Aut_Sci_Write** — Autonomous Scientific Writer |
| 56 | |
| 57 | - **Author**: Shuo Zhao |
| 58 | - **License**: MIT License |
| 59 | - **Copyright**: © 2026 Shuo Zhao. All rights reserved. |
| 60 | - **Original Work**: This is an original work created by the author. No reproduction, redistribution, or commercial use without explicit permission. |
| 61 | **Permission is hereby granted**, free of charge, to any person obtaining a copy of this software... (**See the LICENSE file in the root directory for the full MIT terms.**) |
| 62 | |
| 63 | --- |
| 64 | |
| 65 | *This skill is part of the Aut_Sci_Write suite. For full license terms, see the [LICENSE](../LICENSE) file in the project root.* |
| 66 | --- |