Docx manipulation
[COLM'26] SkillLearnBench is the first benchmark for evaluating continual learning methods that automatically generate agent skills.
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.
What its author says it does
Copied from the file, not written here
Manipulate Word documents using python-docx, including text replacement and handling conditional sections.
SKILL.md
1.1 KB, 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.