원클릭으로
generating-writeup
Academic/technical writeups with Pandoc-compatible markdown. Use for documentation, reports, or technical explanations.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Academic/technical writeups with Pandoc-compatible markdown. Use for documentation, reports, or technical explanations.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate commit message for staged changes, pause for approval, then commit. Stage files first with `git add`, then run this skill.
Context compression for verbose outputs. Use when conversation context exceeds 70% capacity or when summarizing large outputs.
Evidence-based codebase investigation. Use when exploring unfamiliar code, understanding architecture, or gathering context for implementation.
| name | generating-writeup |
| description | Academic/technical writeups with Pandoc-compatible markdown. Use for documentation, reports, or technical explanations. |
| compatibility | Designed for Claude Code |
| metadata | {"allowed-tools":"Read, Write, Edit, Bash, Glob, Grep"} |
Creates structured technical documentation in Pandoc-compatible markdown. Suitable for academic papers, technical reports, and documentation.
template.md for syntax---
title: "Document Title"
author: "Author Name"
date: YYYY-MM-DD
bibliography: references.bib
reference-section-title: References
abstract: |
Brief summary of document contents and key findings.
---
See template.md in this skill directory for full template with
frontmatter, BibTeX examples, and directory structure.
| Style | Format | Example |
|---|---|---|
| IEEE | numeric | [1] |
| APA | author-date | (Author, 2024) |
| Chicago | author-date | (Author 2024) |
| Vancouver | numeric | (1) |
Alternatives available from the Zotero Style Repository.
Code Blocks:
# Use language hints for syntax highlighting
def example():
return "formatted code"
Tables:
| Header 1 | Header 2 |
|---|---|
| Data | Data |
Citations:
Use [@citation-key] for Pandoc citations.
Math:
Inline: $E = mc^2$
Block: $$\int_0^\infty f(x) dx$$
# Generate PDF from markdown sections
pandoc 0*.md -o output.pdf --citeproc --number-sections
CRITICAL: NEVER add manual section numbers to headings.
Use --number-sections flag in pandoc. Manual "2. Section" creates
duplicate numbering in PDFs.
Academic: Full structure with abstract, citations, formal language Technical: Focused on implementation, code examples, diagrams Report: Executive summary, findings, recommendations