Sub-skill of docx: Working with Headers/Footers.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill working-with-headersfooters --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Working With Headersfooters?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-working-with-headersfooters-workspace-hub)More formats (shields.io, HTML) on the badges page.
---
name: docx-working-with-headersfooters
description: 'Sub-skill of docx: Working with Headers/Footers.'
version: 1.1.0
category: data
type: reference
scripts_exempt: true
---
# Working with Headers/Footers
## Working with Headers/Footers
```python
from docx import Document
doc = Document()
# Add header
section = doc.sections[0]
header = section.header
header_para = header.paragraphs[0]
header_para.text = "Document Header"
# Add footer
footer = section.footer
footer_para = footer.paragraphs[0]
footer_para.text = "Page Footer"
doc.save("with_header_footer.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!