agentsclimarketplace

Docx manipulation

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

Manipulate Word documents using python-docx, including text replacement and handling conditional sections.From its SKILL.md

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.

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.

Keep looking

Skills are one crate of 325,949. 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.