Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    IgorWarzocha

    word

    IgorWarzocha/word
    Writing
    68

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    Handle Word document (.docx) creation, editing, and analysis with high-fidelity visual review. Use for professional reports, legal documents, and tracked changes...

    SKILL.md

    For all professional deliverables, you MUST follow the "Render & Review" loop: 1. **Edit**: Use `python-docx` for structure/styling or the Document library for XML edits. 2. **Render**: Convert to PDF/PNG using `soffice` and `pdftoppm`: - `soffice --headless --convert-to pdf document.docx` - `pdftoppm -png -r 150 document.pdf page` 3. **Inspect**: Read the generated PNG images. You MUST look for clipped text, overlapping shapes, or misaligned margins. 4. **Fix**: Address defects and repeat the loop until the document is visually flawless. ### 1. Creating New Documents - **Python**: You SHOULD use `python-docx`. Establish hierarchy with HeadingLevel styles. - **JavaScript**: You SHOULD use `docx-js`. **Reference**: See `references/docx-js.md` for syntax. - **CRITICAL**: You MUST NOT use `\n` for line breaks (use Paragraphs). You MUST NOT use Unicode bullets (use numbering config). `PageBreak` MUST be inside a Paragraph.

    2. Redlining & Tracked Changes

    For legal or business review:

    • Initialize: Use scripts/document.py. Reference: Read references/ooxml.md for XML patterns.
    • Procedure: Unpack (unpack.py), edit XML using the Document Library, then Pack (pack.py).
    • Standard: You MUST only mark text that actually changes. Keep unchanged text outside <w:del>/<w:ins>.

    3. Text Extraction

    • You SHOULD use Pandoc to convert to markdown while preserving structure:
      • pandoc --track-changes=all path-to-file.docx -o output.md
    - **Client-Ready**: You MUST NOT use Unicode dashes (use ASCII hyphens). No internal AI tokens. - **Element Ordering**: In ``, elements MUST follow schema order: Style -> Numbering -> Spacing -> Indent -> Alignment. - **Visual Fidelity**: Charts and tables MUST be sharp and legible in rendered previews.
    Recommended Servers
    Google Docs
    Google Docs
    tldraw
    tldraw
    InfraNodus Knowledge Graphs & Text Analysis
    InfraNodus Knowledge Graphs & Text Analysis
    Repository
    igorwarzocha/opencode-workflows
    Files