Stats
Actions
Tags
From cerebro-documentos
Use quando quiser ler ou gerar documentos Word (.docx) — peças, contratos, declarações, ofícios, relatórios.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cerebro-documentos:documento-wordThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> Inspirada na skill oficial docx da Anthropic. Usa Python.
Inspirada na skill oficial docx da Anthropic. Usa Python.
.docx final de uma minuta (com /minutar-documento)..docx para revisar ou resumir.pip install python-docx # gerar/editar
pip install docx2txt # extrair texto rápido
Ler texto:
import docx2txt
texto = docx2txt.process("peca.docx")
Gerar documento:
from docx import Document
doc = Document()
doc.add_heading("CONTRATO DE PRESTAÇÃO DE SERVIÇOS", level=1)
doc.add_paragraph("CLÁUSULA 1ª — DO OBJETO. ...")
t = doc.add_table(rows=1, cols=2); t.style = "Table Grid"
doc.save("contrato.docx")
Converter .docx ↔ outros formatos: pandoc (se instalado).
[PREENCHER]./minutar-documento · /revisar-peca · /documento-pdf
npx claudepluginhub kayquin/cerebro_ia --plugin cerebro-documentosCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.