AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Docx

skill-woodfishhhh-ez-math-model-docx · by woodfishhhh

Use when EZ_math_model needs to convert paper.md to paper.docx, read a DOCX problem statement, preserve equations and tables, or package a modeling report as a Word document.

No reviews yet
0 installs
7 views
0.0% view→install

Install

$ agentstack add skill-woodfishhhh-ez-math-model-docx

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-woodfishhhh-ez-math-model-docx)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Docx? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

docx — Word 文档读写与打包

何时使用

  • paper.md 转换为 paper.docx
  • 读取用户上传的 .docx 题目。
  • 需要参考模板、图片嵌入、公式对象或表格保真。

优先链路

  1. 宿主 docx skill。
  2. pandoc 直调。
  3. python-docx 兜底。

Markdown 转 DOCX

pandoc paper.md `
  --from gfm+tex_math_dollars+pipe_tables `
  --to docx `
  --output paper.docx `
  --resource-path .

有参考模板时追加:

--reference-doc 

DOCX 转文本

优先使用宿主 docx skill。没有宿主能力时,用 python-docx 提取段落和表格,再写成 Markdown 友好文本。

产出要求

  • 输出文件默认与 paper.md 同目录:paper.docx
  • 图片必须嵌入,不保留失效本地链接。
  • $...$$$...$$ 尽量转换为 Word 可编辑公式;失败时保留原始 LaTeX 文本并写诊断。

对象级验收

DOCX 不是“文件存在就合格”。转换后必须把 .docx 当 zip 解包检查:

  • word/document.xml 必须存在且可读取。
  • 公式验收:统计 m:oMath / m:oMathPara。若 paper.md 有公式但 DOCX 中

公式对象数为 0,formal 模式失败。

  • 图片验收:统计 word/media/*。Markdown 图片引用数不得超过嵌入图片数;

缺图必须列出文件名。

  • 表格验收:统计 w:tbl。Markdown 表格应转换为 Word 表格对象;未转换时至少

降级为 warning,formal 视严重程度阻塞。

  • LaTeX fallback:统计 word/document.xml 中残留 $...$。formal 模式下残留

公式文本不得直接标为通过。

EZMM 内置 scripts/runtime/audit_export.py 会执行上述检查,生成 export_audit.jsonexport_audit.md

失败诊断

| 情况 | 处理 | |---|---| | 宿主 skill、pandoc、python-docx 都不可用 | 保留 paper.md,在 diagnostics.md 写缺失工具 | | 公式渲染异常 | formal 模式阻塞正式发布;demo 模式保留 LaTeX 文本并降级 | | 图片路径错误 | 检查 Markdown 相对路径和 --resource-path |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.