Install
$ agentstack add skill-axutse-aos-agent-skill-document-aos-author-word ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →About
AOS Word Authoring
Use semantic Word structure and complete visual verification. Read [references/docx-workflow.md](references/docx-workflow.md) before complex authoring or section work.
Treat DOCX editability and preservation of existing structure as the primary contract. Do not rebuild an entire document when the user requests localized edits, and do not claim complete visual QA when LibreOffice rendering is unavailable.
Workflow
- Preserve the original file and make localized changes for edit requests.
- Use
python-docxfor normal authoring and targeted OOXML only where required. - Use real paragraph styles, list definitions, sections, headers, footers, and native tables.
- Set explicit page geometry, margins, image size, and table widths instead of relying on defaults.
- Run
set_docx_high_fidelity.pybefore final rendering. - Run
inspect_docx.pyand resolve unexpected metadata, sections, media, or settings. - Render the DOCX with
render_docx.pyand inspect every PNG page. - Re-render after each layout-sensitive change.
- Run
scrub_docx_metadata.pybefore external publication when personal metadata is not required.
Commands
python scripts/inspect_docx.py input.docx --json
python scripts/set_docx_high_fidelity.py input.docx output.docx
python scripts/scrub_docx_metadata.py input.docx public.docx
python scripts/render_docx.py public.docx --output-dir render --emit-pdf
python scripts/lo_convert_to_pdf.py public.docx output.pdf
Quality rules
- Do not deliver a DOCX solely because text extraction succeeds.
- Inspect every rendered page for clipping, overlaps, glyph substitution, broken tables, image blur, page breaks, headers, footers, and numbering.
- Keep tables editable and images proportional.
- Remove comments, tracked changes, private metadata, and placeholders unless the user requests them.
- If LibreOffice is unavailable, perform structural QA and disclose that render QA could not run.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: axutse
- Source: axutse/aos-agent-skill-document
- License: MIT
- Homepage: https://github.com/axutse/aos-agent-skill-document
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.