agentsclimarketplace

Docx manipulation

Skill cxcscmu/SkillLearnBench/skills/b1-one-shot-gemini-3.1-flash-lite-preview/offer-letter-generator/docx-manipulation

[COLM'26] SkillLearnBench is the first benchmark for evaluating continual learning methods that automatically generate agent skills.

Install
npx -y skills add cxcscmu/SkillLearnBench --skill docx-manipulation

Assembled 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.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.