Install
openclaw skills install @momansouri83/python-execExecutes Python code snippets locally by running the provided code through a temporary script via PowerShell.
openclaw skills install @momansouri83/python-execThis skill executes Python scripts to create/write Excel, Word, or PowerPoint files using python-docx, openpyxl, and python-pptx. It requires Python 3.10+ and the installed libraries.
python-docx, openpyxl, python-pptxModerator-approved (required for activation due to file system access).
# Example: Create a Word doc
from docx import Document
doc = Document()
doc.add_heading('Hello', level=1)
doc.save('output.docx')