Docx manipulation
Manipulate Word documents using python-docx, including text replacement and handling conditional sections.From its SKILL.md
npx -y skills add cxcscmu/SkillLearnBench --skill docx-manipulationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
1.1 KB, 203 tokens by cl100k_base, as published. Nobody here has run it
python-docx Skill
Use python-docx to read, modify, and save .docx files.
Replacing Placeholders
Iterate through paragraphs and runs to find and replace placeholders like {{KEY}}.
from docx import Document
def replace_text(doc, replacements):
for paragraph in doc.paragraphs:
for key, value in replacements.items():
if key in paragraph.text:
paragraph.text = paragraph.text.replace(key, value)
# Also check tables
for table in doc.tables:
for row in table.rows:
for cell in row.cells:
for paragraph in cell.paragraphs:
for key, value in replacements.items():
if key in paragraph.text:
paragraph.text = paragraph.text.replace(key, value)
return doc
Handling Conditional Sections
For sections like {{IF_CONDITION}}...{{END_IF_CONDITION}}, identify the range of paragraphs and remove/retain based on the condition.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.