#The most "standard" way of giving my agent the ability to read/write Ms office files

1 messages · Page 1 of 1 (latest)

glacial dirge
#

Particularly Word, Excel, and Access. I'm pretty sure there are clawhub plugins that'll cover this, but I've heard so many horror stories about clawhub, I really want to stick with the bundled stuff if at all possible.

desert turtleBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> ✅ Mark Solution

mighty oarBOT
#

Short answer: there isn’t a special bundled “MS Office” tool/skill that directly edits Word/Excel/Access files. The standard bundled route is:

  1. Give the agent filesystem + runtime tools (tools.profile: "coding" includes read/write/edit + exec/process).
  2. Install normal local utilities/libs in the agent’s workspace/sandbox.
  3. Let the agent manipulate Office files through those tools.

Best practical stack:

  • Word .docx: python-docx for structured edits; LibreOffice/Pandoc for conversions.
  • Excel .xlsx: openpyxl / xlsxwriter / pandas.
  • Access .mdb/.accdb: this is the awkward one. mdbtools can 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: