Office Document Editor
by @tsukisama9292
Professional DOCX/PPTX document editing with tracked changes, formatting preservation, highlights, strikethrough, and Git version control.
clawhub install office-document-editorπ About This Skill
name: office-document-editor description: Professional DOCX/PPTX document editing with tracked changes, formatting preservation, highlights, strikethrough, and Git version control. license: MIT metadata: openclaw: requires: bins: - uv - curl install: - id: uv-env kind: uv path: . bins: [docx_editor.py, pptx_editor.py, generate_diff.py]
Universal Office Document Editor
Professional document editing for any DOCX/PPTX file from any source.
Quick Reference
| Task | Approach |
|------|----------|
| Fetch file from upload | bash scripts/fetch_file.sh upload |
| Fetch file from URL | bash scripts/fetch_file.sh https://example.com/file.docx |
| Fetch file from SFTP | bash scripts/fetch_file.sh sftp://user@host:/path/file.docx |
| Edit DOCX | uv run python scripts/docx_editor.py input.docx output.docx edits.json |
| Edit PPTX | uv run python scripts/pptx_editor.py input.pptx output.pptx edits.json |
| Generate diff | uv run python scripts/generate_diff.py old.docx new.docx diff.md |
| Interactive mode | bash scripts/interactive_edit.sh |
File Sources
Uploaded Files (Chat Attachments)
# Get latest uploaded DOCX
bash scripts/fetch_file.sh upload output.docxGet latest uploaded PPTX
bash scripts/fetch_file.sh upload output.pptx
Location: ~/.openclaw/workspace/media/inbound/file_*.docx
Local Filesystem Paths
# Copy from local path
bash scripts/fetch_file.sh ~/Documents/report.docx output.docxOr direct path
bash scripts/fetch_file.sh /absolute/path/file.pptx output.pptx
Public URLs
# Download from URL
bash scripts/fetch_file.sh https://example.com/document.docx output.docx
SFTP/SSH Remote Files
# Fetch via SFTP
bash scripts/fetch_file.sh sftp://user@host:/path/file.docx output.docx
Creating Edit Rules
Create edits.json with your editing instructions:
{
"description": "Edit description",
"replacements": [
{
"search": "old text",
"replace": "new text",
"style": "highlight"
}
],
"additions": [
{
"after": "after this text",
"text": "add this text",
"style": "highlight"
}
],
"slides": [
{
"action": "rearrange",
"order": [0, 2, 1, 3]
}
]
}
Supported Styles
replace - Direct replacementhighlight - Yellow highlightdelete - Strikethroughbold - Bold textunderline - UnderlineSlide Actions (PPTX only)
rearrange - Change slide orderadd - Add new slideremove - Delete slideEditing Documents
Edit DOCX
uv run python scripts/docx_editor.py input.docx output.docx edits.json
Features:
Edit PPTX
uv run python scripts/pptx_editor.py input.pptx output.pptx edits.json
Features:
Generate Diff Report
uv run python scripts/generate_diff.py input.docx output.docx diff-report.md
Output: Standard Unified Diff format in Markdown.
Complete Workflow
Step 1: Fetch File
# From upload
bash scripts/fetch_file.sh upload input.docxFrom URL
bash scripts/fetch_file.sh https://example.com/file.docx input.docxFrom local path
bash scripts/fetch_file.sh ~/Documents/file.docx input.docx
Step 2: Create Edit Rules
{
"description": "IRB Review Response",
"replacements": [
{
"search": "2026 εΉ΄ 2 ζ 28 ζ₯",
"replace": "2026 εΉ΄ 8 ζ 31 ζ₯",
"style": "highlight"
}
]
}
Step 3: Execute Edit
uv run python scripts/docx_editor.py input.docx output.docx edits.json
Step 4: Generate Reports
# Unified Diff
uv run python scripts/generate_diff.py input.docx output.docx diff.mdConvert to Markdown
uv run markitdown output.docx > output.md
Step 5: Version Control
git add *.docx *.md diff.md
git commit -m "Edit: Description of changes"
Interactive Mode
For guided editing:
bash scripts/interactive_edit.sh
This will prompt you through: 1. File source selection 2. Edit type selection 3. Details collection 4. Output location
Examples
Example 1: Text Replacement with Highlight
{
"replacements": [
{
"search": "February 28, 2026",
"replace": "August 31, 2026",
"style": "highlight"
}
]
}
Example 2: Add Text After Question
{
"additions": [
{
"after": "What is the research topic?",
"text": "[ANSWER] Data Structures and Algorithms",
"style": "highlight"
}
]
}
Example 3: Rearrange Slides
{
"slides": [
{
"action": "rearrange",
"order": [0, 2, 1, 3, 4]
}
]
}
Notes
Format Preservation
Table Text Replacement
python-docx requires exact match (including spaces, punctuation, newlines) for table text.
Solutions:
1. Use shorter search strings
2. Use markitdown to preview table content first
3. Use exact match in JSON
Git Best Practices
.gitignoreDependencies
Installation
cd ~/.openclaw/workspace/skills/office-document-editor
uv sync
Troubleshooting
"No replacements made"
Cause: Text doesn't match exactly
Solution:
# Preview content
uv run markitdown input.docxUse exact text from preview
"Virtual environment not found"
Solution:
cd ~/.openclaw/workspace/skills/office-document-editor
uv sync
"File not found"
Solutions:
Scripts Reference
fetch_file.sh
Universal file fetcher for all source types.
bash scripts/fetch_file.sh [output_filename]
Sources:
upload - Latest uploaded file/path/to/file - Local pathhttps://... - Public URLsftp://... - SFTP remotedocx_editor.py
Edit Word documents with formatting.
uv run python scripts/docx_editor.py input.docx output.docx edits.json
pptx_editor.py
Edit PowerPoint presentations.
uv run python scripts/pptx_editor.py input.pptx output.pptx edits.json
generate_diff.py
Generate Unified Diff reports.
uv run python scripts/generate_diff.py old.docx new.docx diff.md
interactive_edit.sh
Interactive guided editing.
bash scripts/interactive_edit.sh
workflow_complete.sh
Complete automated workflow.
bash scripts/workflow_complete.sh input.docx edits.json
π‘ Examples
Example 1: Text Replacement with Highlight
{
"replacements": [
{
"search": "February 28, 2026",
"replace": "August 31, 2026",
"style": "highlight"
}
]
}
Example 2: Add Text After Question
{
"additions": [
{
"after": "What is the research topic?",
"text": "[ANSWER] Data Structures and Algorithms",
"style": "highlight"
}
]
}
Example 3: Rearrange Slides
{
"slides": [
{
"action": "rearrange",
"order": [0, 2, 1, 3, 4]
}
]
}
π Tips & Best Practices
Format Preservation
Table Text Replacement
python-docx requires exact match (including spaces, punctuation, newlines) for table text.
Solutions:
1. Use shorter search strings
2. Use markitdown to preview table content first
3. Use exact match in JSON
Git Best Practices
.gitignore