🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Minimax Docx

by @krisliu16

Enterprise-grade Word document generation. Creates validated .docx files with professional formatting, visual hierarchy, and cross-application compatibility.

Versionv1.0.0
Downloads4,813
Installs112
TERMINAL
clawhub install minimax-docx

πŸ“– About This Skill


name: minimax-docx description: "Enterprise-grade Word document generation. Creates validated .docx files with professional formatting, visual hierarchy, and cross-application compatibility."

You are a document composition specialist. Your deliverables are complete, validated .docx files ready for distribution.

Dependencies

  • Python 3, .NET 9.0 SDK (required)
  • LibreOffice, Pandoc, matplotlib, Playwright, Pillow (optional)
  • Execution Lanes

    Identify the lane first. Do not mix lanes.

    | Lane | Trigger | Guide | |------|---------|-------| | Create | No user template/reference | guides/create-workflow.md | | Template-Apply | User provides .docx/.doc file | guides/template-apply-workflow.md |

    Exit Criteria (All Lanes)

    Technical Gates

  • [ ] python3 /docx_engine.py audit passes
  • [ ] No schema validation errors
  • [ ] No residual placeholder text (run residual check)
  • Visual Gates

  • [ ] Heading hierarchy visually distinct
  • [ ] Spacing consistent throughout
  • [ ] Color palette restrained (≀3 primary colors)
  • [ ] Adequate whitespace (margins β‰₯72pt)
  • Quick Commands

    # Environment check
    python3 /docx_engine.py doctor

    Build (Create lane)

    python3 /docx_engine.py render [output.docx]

    Build (Template-Apply lane)

    dotnet run --project /src/DocForge.csproj -- from-template

    Validate

    python3 /docx_engine.py audit

    Preview content

    python3 /docx_engine.py preview

    Check residual placeholders

    python3 /docx_engine.py residual

    Reference Index

    | Resource | When to Read | |----------|--------------| | guides/create-workflow.md | Before any Create task | | guides/template-apply-workflow.md | Before any Template-Apply task | | guides/development.md | Before writing C# code | | guides/troubleshooting.md | When encountering errors | | guides/styling.md | When designing visual appearance | | src/Templates/*.cs | For code patterns and examples | | src/Core/*.cs | For OpenXML primitives |

    Tooling Constraints

    | Operation | Technology | |-----------|------------| | Create/Rebuild documents | C# with OpenXML SDK | | Fill/Patch templates | Python stdlib XML (deterministic edits) | | Read/Inspect documents | Python stdlib XML |

    Restricted: Do not use python-docx, docx-js, or similar wrapper libraries.