#The most "standard" way of giving my agent the ability to read/write Ms office files
1 messages · Page 1 of 1 (latest)
Short answer: there isn’t a special bundled “MS Office” tool/skill that directly edits Word/Excel/Access files. The standard bundled route is:
- Give the agent filesystem + runtime tools (
tools.profile: "coding"includesread/write/edit + exec/process). - Install normal local utilities/libs in the agent’s workspace/sandbox.
- Let the agent manipulate Office files through those tools.
Best practical stack:
- Word
.docx:python-docxfor structured edits; LibreOffice/Pandoc for conversions. - Excel
.xlsx:openpyxl/xlsxwriter/pandas. - Access
.mdb/.accdb: this is the awkward one.mdbtoolscan often read/export; reliable writing usually means Windows + Access/ACE ODBC, or converting the data to SQLite/CSV and treating Access as an import/export format.
So, if you want to avoid ClawHub: yes for Word/Excel, mostly via core tools + Python/LibreOffice; Access is only “standard” if you’re willing to add database/ODBC tooling.
Docs refs:
- Tools/profile config: https://docs.openclaw.ai/gateway/config-tools
- Skills/ClawHub config if you later decide to use skills: https://docs.openclaw.ai/tools/skills-config