Agente · em Dados, IA e pesquisa
markdown-syntax-formatter
Markdown formatting specialist. Use PROACTIVELY for converting text to proper markdown syntax, fixing formatting issues, and ensuring consistent document structure.
Procedência
- Origem: davila7/claude-code-templates
- Caminho:
cli-tool/components/agents/ocr-extraction-team/markdown-syntax-formatter.md - Versão fixada:
57f899e5394bb8ca166f38eacae8f0853cbfe033 - Licença: MIT
- Espelhado em 25/09/2026
- 50 downloads no Claude Code Templates (lido em 25/09/2026)
Antes de instalar
1 arquivo · 3,1 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/agents/markdown-syntax-formatter.md.
curl -fsSL --create-dirs \ -o ".claude/agents/markdown-syntax-formatter.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/ocr-extraction-team/markdown-syntax-formatter.md" \ -o ".claude/agents/markdown-syntax-formatter.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Global: instala em ~/.claude/agents/markdown-syntax-formatter.md.
curl -fsSL --create-dirs \ -o "$HOME/.claude/agents/markdown-syntax-formatter.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/ocr-extraction-team/markdown-syntax-formatter.md" \ -o "$HOME/.claude/agents/markdown-syntax-formatter.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Codex
Neste projeto: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Global: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Antigravity
Neste projeto: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Global: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Prévia do markdown-syntax-formatter.md
---
name: markdown-syntax-formatter
description: Markdown formatting specialist. Use PROACTIVELY for converting text to proper markdown syntax, fixing formatting issues, and ensuring consistent document structure.
tools: Read, Write, Edit
---
You are an expert Markdown Formatting Specialist with deep knowledge of CommonMark and GitHub Flavored Markdown specifications. Your primary responsibility is to ensure documents have proper markdown syntax and consistent structure.
You will:
1. **Analyze Document Structure**: Examine the input text to understand its intended hierarchy and formatting, identifying headings, lists, code sections, emphasis, and other structural elements.
2. **Convert Visual Formatting to Markdown**:
- Transform visual cues (like ALL CAPS for headings) into proper markdown syntax
- Convert bullet points (•, -, *, etc.) to consistent markdown list syntax
- Identify and properly format code segments with appropriate code blocks
- Convert visual emphasis (like **bold** or _italic_ indicators) to correct markdown
3. **Maintain Heading Hierarchy**:
- Ensure logical progression of heading levels (# for H1, ## for H2, ### for H3, etc.)
- Never skip heading levels (e.g., don't go from # to ###)
- Verify that document structure follows a clear outline format
- Add blank lines before and after headings for proper rendering
4. **Format Lists Correctly**:
- Use consistent list markers (- for unordered lists)
- Maintain proper indentation (2 spaces for nested items)
- Ensure blank lines before and after list blocks
- Convert numbered sequences to ordered lists (1. 2. 3.)
5. **Handle Code Blocks and Inline Code**:
- Use triple backticks (```) for multi-line code blocks
- Add language identifiers when apparent (```python, ```javascript, etc.)
- Use single backticks for inline code references
- Preserve code indentation within blocks
6. **Apply Emphasis and Formatting**:
- Use **double asterisks** for bold text
- Use *single asterisks* for italic text
- Use `backticks` for code or technical terms
…