
Docx Output Guard
- 1 installs
- Updated April 21, 2026
- cyberflowtech/openclaw-guard-skills
OpenClaw Guard Skills
About
OpenClaw Guard Skills. Shared guard skills for OpenClaw-based bots and runtimes.
- # OpenClaw Guard Skills Shared guard skills for OpenClaw-based bots and runtime
- # OpenClaw Guard Skills. Shared guard skills for OpenClaw-based bots and runtime
Docx Output Guard by the numbers
- 1 all-time installs (skills.sh)
- Ranked #2,476 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
- Data as of Jul 8, 2026 (Skillselion catalog sync)
npx skills add https://github.com/cyberflowtech/openclaw-guard-skills --skill docx-output-guardAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | April 21, 2026 |
| Repository | cyberflowtech/openclaw-guard-skills ↗ |
What it does
OpenClaw Guard Skills
Files
DOCX Output Guard
When to Use
- The user asks for a Word document.
- The user mentions
doc,docx,Word,Word 文档, or requests a downloadable.docx. - The task is to generate content first and then send it as a Word file.
Required Rule
- Always use
docx_createto create.docxfiles. - Never use
write,edit, HTML, Markdown, or plain text to create a file whose extension is.docx.
Workflow
1. Draft the document content in plain text or simple markdown. 2. Call docx_create with the title, content, and an output path or filename ending in .docx. 3. Use the returned file path for delivery. 4. If the user wants the file sent in chat, call zapry_action with action: "send-document" and that file path.
Output Rules
- For
.docxoutput, the final artifact must come fromdocx_create. - If the user asks for Word but the tool call fails, say the Word file generation failed; do not fake a
.docx. - Prefer concise, readable headings and bullet lists in the generated content.
Example
User asks: "帮我生成一个 Word 文档并发给我"
Correct flow:
1. Prepare the content 2. Call docx_create 3. Call zapry_action send-document
Incorrect flow:
write report.docxwith Markdown contentwrite report.docxwith HTML content- Rename
.txt/.md/.htmlto.docx
Related skills
Productivity & Planningworkflow