← All plugins
docx-cli
v0.21.0Read, edit, redline, and comment on Microsoft Word .docx files from the command line — built for AI agents.
CodexClaude Code1 skill
170updated 3 weeks ago
Source
git clone https://github.com/kklimuk/docx-cliClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
docx-cli/
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json└── skills/docx-cli/SKILL.md
Skills1
docx-cliskills/docx-cli/SKILL.md
Read, edit, redline, comment on, and create Microsoft Word .docx files. Use to fill out or edit a Word doc, redline a contract with tracked changes, add/resolve comments, replace text keeping its formatting, restyle headings/fonts, edit tables, or read/extract a .docx as Markdown or text. Also BUILD a new .docx — from Markdown or programmatically (code that outputs a Word report with headings, tables, images). Not for PDF, Google Docs, Excel, PowerPoint, or .doc.
Manifests2
.codex-plugin/plugin.json
{
"name": "docx-cli",
"version": "0.21.0",
"description": "Read, edit, redline, and comment on Microsoft Word .docx files from the command line — built for AI agents.",
"skills": "./skills/"
}.claude-plugin/plugin.json
{
"name": "docx-cli",
"description": "Read, edit, redline, and comment on Microsoft Word .docx files from the command line — built for AI agents.",
"author": {
"name": "Kirill Klimuk",
"email": "kklimuk@gmail.com"
},
"homepage": "https://github.com/kklimuk/docx-cli",
"repository": "https://github.com/kklimuk/docx-cli",
"license": "MIT"
}