docx-tables
Installation
SKILL.md
docx-tables
Create Word documents with tables that work everywhere - Word, Google Docs, etc.
⚠️ THE 5 CRITICAL RULES
1. Dual-Width Sizing (MOST CRITICAL)
Set widths in TWO places - on table AND on each cell:
// Table level
new Table({
width: { size: 9360, type: WidthType.DXA },
columnWidths: [1872, 7488],
rows: [...]
})