smithery/korallis

document-processing-docx

Process, parse, create, and manipulate Microsoft Word (.docx) documents programmatically using libraries like docx or mammoth.js for document generation and data extraction.

Installation

$ npx skills add smithery/korallis --skill document-processing-docx

Summary

  • Process, parse, create, and manipulate Microsoft Word (.docx) documents programmatically using libraries like docx or mammoth.js for document generation and data extraction.
  • Use when generating Word documents from templates, extracting text and formatting from .docx files, creating reports and invoices, parsing resumes and forms, converting Word to HTML, creating mail merge documents, or automating document workflows.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/korallis · top by installs.

npx skills add smithery/korallis

Browse all from smithery/korallis

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,553 B
  • docs SUMMARY.md 453 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Document Processing - DOCX Files

When to use this skill

  • Generating Word documents from templates
  • Extracting text content from .docx files
  • Creating automated reports and invoices
  • Parsing resumes and job applications
  • Converting Word documents to HTML or Markdown
  • Creating mail merge documents programmatically
  • Extracting tables and data from Word files
  • Automating document generation workflows
  • Creating contracts or agreements from templates
  • Processing bulk document uploads
  • Extracting metadata from Word documents
  • Building document management systems

When to use this skill

  • Creating, editing Word documents programmatically.
  • When working on related tasks or features
  • During development that requires this expertise

Use when: Creating, editing Word documents programmatically.

Example

\\\`typescript import { Document, Packer, Paragraph } from 'docx';

const doc = new Document({ sections: [{ children: [new Paragraph("Hello World")] }] }); \\\`

Resources