docx-working-with-headersfooters
Sub-skill of docx: Working with Headers/Footers.
Best use case
docx-working-with-headersfooters is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sub-skill of docx: Working with Headers/Footers.
Teams using docx-working-with-headersfooters should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/working-with-headersfooters/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How docx-working-with-headersfooters Compares
| Feature / Agent | docx-working-with-headersfooters | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Sub-skill of docx: Working with Headers/Footers.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# 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")
```Related Skills
verify-Codex-run-commit-vs-working-tree-before-closing
After a Codex implementation run, verify the claimed file set against the actual commit and working tree before treating the issue as fully complete.
docx
Comprehensive Word document toolkit for reading, creating, and editing .docx files. Supports text extraction, document creation with python-docx, and tracked changes via redlining workflow. Use for legal, academic, or professional document manipulation.
docker-4-networking-patterns
Sub-skill of docker: 4. Networking Patterns (+1).
python-docx-report-generation-from-database
Sub-skill of python-docx: Report Generation from Database (+1).
python-docx-batch-document-generation
Sub-skill of python-docx: Batch Document Generation.
python-docx-6-style-management-and-custom-styles
Sub-skill of python-docx: 6. Style Management and Custom Styles.
python-docx-5-image-insertion-and-positioning
Sub-skill of python-docx: 5. Image Insertion and Positioning.
python-docx-4-headers-footers-and-page-setup
Sub-skill of python-docx: 4. Headers, Footers, and Page Setup.
python-docx-3-table-creation-and-formatting
Sub-skill of python-docx: 3. Table Creation and Formatting.
python-docx-2-advanced-paragraph-formatting
Sub-skill of python-docx: 2. Advanced Paragraph Formatting.
python-docx-1-document-structure
Sub-skill of python-docx: 1. Document Structure (+3).
python-docx-1-basic-document-creation
Sub-skill of python-docx: 1. Basic Document Creation.