Word Document Pack
★Trusted◇Sandbox optionalv1.0.0MIT✔Verified80by AgentNode · published 5 months ago · toolpack
Create, edit, and analyze Microsoft Word documents.
Generate DOCX files with headings, tables, images, styles, and formatting. Extract text and metadata from existing documents. Uses python-docx.
Quick Start
agentnode install word-document-packRuns in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.
Usage
From packagefrom word_document_pack.tool import run
result = run(
action="create",
filename="quarterly_report_q1_2026.docx",
content=[
{"type": "heading", "level": 1, "text": "Q1 2026 Performance Report"},
{"type": "paragraph", "text": "This report summarizes key metrics and achievements for the first quarter of 2026."},
{"type": "heading", "level": 2, "text": "Revenue Summary"},
{"type": "table", "headers": ["Month", "Revenue", "Growth"], "rows": [
["January", "$142,000", "+12%"],
["February", "$158,000", "+11%"],
["March", "$175,000", "+10.8%"]
]},
{"type": "heading", "level": 2, "text": "Key Highlights"},
{"type": "list", "items": [
"Launched 3 new product features",
"Customer base grew by 2,400 accounts",
"Support ticket resolution time improved by 35%"
]},
{"type": "paragraph", "text": "Full details are available in the attached appendix.", "bold": True}
]
)
print(f"Document created: {result['filename']}")
print(f"File size: {result['size_bytes'] / 1024:.0f} KB")
print(f"Pages (estimated): {result['page_estimate']}")Runs locally on your machine. No execution data is sent to AgentNode. Permissions are checked before execution. Learn how this works
Verification
Package installs and imports correctly. runtime checks passed.
This package was executed and validated by AgentNode before listing. Install, import, and runtime checks passed.
Verified in real_auto mode
Last verified 28d ago· Runner v2.0.0
Use this when you need to...
- ›Generate formatted invoices and contracts as Word documents
- ›Extract text and tables from uploaded .docx files for processing
- ›Create mail-merge documents from template and CSV data
- ›Convert meeting notes into structured Word reports with headings
- ›Analyze Word documents for word count, structure, and formatting
README
Version History
Capabilities
Permissions
Declared by the publisher. Checked before execution by the policy gate.
Permissions are policy-checked before execution. For trusted and curated packages that run on the host, network and filesystem access are policy-checked but not OS-sandboxed. When runtime isolation is required for untrusted/community code, AgentNode uses sandbox-or-fail-closed if the required container runtime and pinned image are available. Learn more
Privacy
All tool execution happens locally on your machine. AgentNode never receives:
- • Tool inputs or outputs
- • Execution logs
- • Data your agent processes
Only install events and search queries are sent to the registry.
agentnode install word-document-packFiles (3)
License
MITStats
Compatibility
Frameworks
Runtime
pythonPython Version
>=3.10Trust & Security
Publisher
AgentNode
@agentnode