office-docs-python-docx-report-generation
Sub-skill of office-docs: Python-docx Report Generation (+4).
Best use case
office-docs-python-docx-report-generation is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sub-skill of office-docs: Python-docx Report Generation (+4).
Teams using office-docs-python-docx-report-generation 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/python-docx-report-generation/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How office-docs-python-docx-report-generation Compares
| Feature / Agent | office-docs-python-docx-report-generation | 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 office-docs: Python-docx Report Generation (+4).
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
# Python-docx Report Generation (+4)
## Python-docx Report Generation
```python
from docx import Document
from docx.shared import Inches, Pt
from docx.enum.text import WD_ALIGN_PARAGRAPH
# Create document
doc = Document()
# Add title
title = doc.add_heading('Monthly Report', level=0)
*See sub-skills for full details.*
## Openpyxl Excel Automation
```python
from openpyxl import Workbook
from openpyxl.styles import Font, PatternFill, Alignment
from openpyxl.chart import BarChart, Reference
# Create workbook
wb = Workbook()
ws = wb.active
ws.title = "Sales Data"
*See sub-skills for full details.*
## Python-pptx Presentation
```python
from pptx import Presentation
from pptx.util import Inches, Pt
from pptx.enum.text import PP_ALIGN
from pptx.dml.color import RgbColor
# Create presentation
prs = Presentation()
# Title slide
*See sub-skills for full details.*
## PyPDF Manipulation
```python
from pypdf import PdfReader, PdfWriter, PdfMerger
# Merge PDFs
merger = PdfMerger()
merger.append('report_part1.pdf')
merger.append('report_part2.pdf')
merger.append('appendix.pdf')
merger.write('complete_report.pdf')
merger.close()
*See sub-skills for full details.*
## Docx-Templates Bulk Generation
```python
from docxtpl import DocxTemplate
# Load template
doc = DocxTemplate("contract_template.docx")
# Context for template
context = {
'client_name': 'Acme Corporation',
'contract_date': '2026-01-17',
*See sub-skills for full details.*Related Skills
interactive-report-generator
Generate interactive HTML reports with Plotly visualizations from data analysis results. Supports dashboards, charts, and professional styling.
data-validation-reporter
Generate interactive validation reports with quality scoring, missing data analysis, and type checking. Combines Pandas validation, Plotly visualization, and YAML configuration for comprehensive data quality reporting.
orcaflex-reporting-fixture-proof-pattern
Build and extend fixture-backed OrcaFlex reporting proof paths in digitalmodel using stable metadata baselines, normalized HTML snapshots, and reusable reporting test helpers.
python-import-path-mismatch-debugging
Diagnose and fix ModuleNotFoundError when a package is installed but imports still fail due to environment/path mismatches
python-import-path-debugging
Diagnose ModuleNotFoundError when a package is installed but still fails to import
label-driven-prompt-generation-architecture
Pattern for building automation scripts that classify GitHub issues into prompt templates using label-based routing and extract contextual data for batch processing
blocker-reporting-outcome-validation
Pattern for closing issues where the deliverable is documented blockers rather than feature completion
agent-team-prompt-generation
Create self-contained execution prompts that define multi-role workflows for Codex sessions without external dependencies
gtm-workflow-gif-generation
Generate workflow-style GTM GIFs from validated HTML demo reports using synthetic scene slides plus Playwright/Pillow scroll capture, with Python 3.12 fallback and GIF size optimization.
gtm-demo-workflow-gif-generation
Generate GTM demo GIF assets from validated HTML reports, including both report-scroll GIFs and one higher-fidelity workflow-style GIF, while avoiding Playwright/Python environment traps.
python-debugpy
Debug Python: pdb REPL + debugpy remote (DAP).
bulk-docstring-addition
Add Google-style docstrings to all public functions and classes in a Python package. Uses AST parsing for precise gap detection, priority ranking by coverage ratio, and multi-file patching.