Word docx
Skill LFTPadilla/agent-dev-kit/plugins/dev-skills/skills/word-docx
Create Microsoft Word .docx documents from a title and body text. Use when the user asks for a Word file, .docx, formal letter, proposal, quote, report, or document to edit/share in Microsoft Word.From its SKILL.md
npx -y skills add LFTPadilla/agent-dev-kit --skill word-docxAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 1 command, including `python3 scripts/create_docx.py --title "Document title" --body-file input.md --output output.docx`.
SKILL.md
1.3 KB, 244 tokens by cl100k_base, as published. Nobody here has run it
Word DOCX
Use this skill when the user asks for a Word document.
Output
- Create a real
.docxfile, not plain text renamed as.docx. - Save it under the current workspace, preferably
workspace/or the current conversation folder. - Use a clear filename ending in
.docx. - Reply with the file path and a short note about what was created.
Tool
python3 scripts/create_docx.py \
--title "Document title" \
--body-file input.md \
--output output.docx
Body Format
The body file is plain text or simple Markdown:
- Lines starting with
#become Heading 1. - Lines starting with
##become Heading 2. - Lines starting with
-or*become bullets. - Blank lines separate paragraphs.
- Other lines become normal paragraphs.
Guidance
- For letters, include date, recipient, greeting, body, closing, and sender name if known.
- For business documents, use short sections with headings and bullets.
- If user did not give all details, make a clean draft with reasonable placeholders instead of blocking.
What ships with it: 1 file
5.2 KB alongside SKILL.md, 1 of them executable
scripts/
- create_docx.pyruns5.2 KB