Sub-skill of docx: Modify Existing Document (+1).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill modify-existing-document --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Modify Existing Document?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-modify-existing-document-workspace-hub)More formats (shields.io, HTML) on the badges page.
---
name: docx-modify-existing-document
description: 'Sub-skill of docx: Modify Existing Document (+1).'
version: 1.1.0
category: data
type: reference
scripts_exempt: true
---
# Modify Existing Document (+1)
## Modify Existing Document
```python
from docx import Document
doc = Document("existing.docx")
# Replace text in paragraphs
for para in doc.paragraphs:
if "old text" in para.text:
for run in para.runs:
run.text = run.text.replace("old text", "new text")
doc.save("modified.docx")
```
## Add Content to Existing Document
```python
from docx import Document
doc = Document("existing.docx")
# Add new paragraph at end
doc.add_paragraph("New paragraph added.")
# Add new section
doc.add_page_break()
doc.add_heading("New Section", level=1)
doc.add_paragraph("Content for new section.")
doc.save("modified.docx")
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.