Agent skill · Content & Marketing

minimax-docx

Professional DOCX document creation, editing, and formatting using OpenXML SDK (.NET). Three pipelines: (A) create new documents from scratch, (B) fill/edit content in existing documents, (C) apply template formatting with XSD validation gate-check. MUST use this skill whenever the user wants to produce, modify, or format a Word document — including when they say "write a report", "draft a proposal", "make a contract", "fill in this form", "reformat to match this template", or any task whose final output is a .docx file. Even if the user doesn't mention "docx" explicitly, if the task implies a

vibeevalgithub.com/vibeevalGitHub ↗
claude-codeships scriptsMIT
Install
npx skills add vibeeval/vibecosystem --skill minimax-docx --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 74
SKILL.md size: 15 KB
Bundled scripts: yes
Version: 1.0.0
Declared author: MiniMaxAI
Path: skills/minimax-docx/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 521
Language: C#

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# minimax-docx Create, edit, and format DOCX documents via CLI tools or direct C# scripts built on OpenXML SDK (.NET). ## Setup **First time:** `bash scripts/setup.sh` (or `powershell scripts/setup.ps1` on Windows, `--minimal` to skip optional deps). **First operation in session:** `scripts/env_check.sh` — do not proceed if `NOT READY`. (Skip on subsequent operations within the same session.) ## Quick Start: Direct C# Path When the task requires structural document manipulation (custom styles, complex tables, multi-section layouts, headers/footers, TOC, images), write C# directly instead of wrestling with CLI limitations. Use this scaffold: ```csharp // File: scripts/dotnet/task.csx (or a new .cs in a Console project) // dotnet run --project scripts/dotnet/MiniMaxAIDocx.Cli -- run-script task.csx #r "nuget: DocumentFormat.OpenXml, 3.2.0" using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Packaging; using DocumentFormat.OpenXml.Wordprocessing; using var doc = WordprocessingDocument.Create("output.docx", WordprocessingDocumentType.Document); var mainPart = doc.AddMainDocumentPart(); mainPart.Document = new Document(new Body()); // --- Your logic here --- // Read the relevant

What's inside
Steps it walks through
  1. Setup
  2. Quick Start: Direct C# Path
  3. CLI shorthand
  4. Pipeline routing
  5. Pre-processing
  6. Scenario A: Create
  7. Scenario B: Edit / Fill
  8. Scenario C: Apply Template
  9. Validation pipeline
  10. Critical rules
  11. References
  12. Scenario guides (read first for each pipeline)
  13. C# code samples (compilable, heavily commented — read when writing code)
  14. Markdown references (read when you need specifications or design rules)
Ships with 24 files
  • LICENSE
  • assets/styles/academic_styles.xml
  • assets/styles/corporate_styles.xml
  • assets/styles/default_styles.xml
  • assets/xsd/aesthetic-rules.xsd
  • assets/xsd/business-rules.xsd
  • assets/xsd/common-types.xsd
  • assets/xsd/wml-subset.xsd
  • references/cjk_typography.md
  • references/cjk_university_template_guide.md
  • references/comments_guide.md
  • references/design_good_bad_examples.md
  • references/design_principles.md
  • references/openxml_element_order.md
  • references/openxml_encyclopedia_part1.md
  • references/openxml_encyclopedia_part2.md
  • references/openxml_encyclopedia_part3.md
  • references/openxml_namespaces.md
  • references/openxml_units.md
  • references/scenario_a_create.md
  • references/scenario_b_edit_content.md
  • references/scenario_c_apply_template.md
  • references/track_changes_guide.md
  • references/troubleshooting.md
first 24 of 74
Commands it runs
dotnet run --project scripts/dotnet/MiniMaxAIDocx.Cli --
scripts/docx_preview.sh doc.docx
More from vibecosystem
All skills →
About this skill
What does the minimax-docx skill do?

Professional DOCX document creation, editing, and formatting using OpenXML SDK (.NET). Three pipelines: (A) create new documents from scratch, (B) fill/edit content in existing documents, (C) apply template formatting with XSD validation gate-check. MUST use this skill whenever the user wants to produce, modify, or format a Word document — including when they say "write a report", "draft a proposal", "make a contract", "fill in this form", "reformat to match this template", or any task whose final output is a .docx file. Even if the user doesn't mention "docx" explicitly, if the task implies a

How do I install it?

Run `npx skills add vibeeval/vibecosystem --skill minimax-docx --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going