Drive a running Microsoft Word instance from Python — xlwings, but for Word, and LLM-friendly.
Project description
wordlive
Drive a running Microsoft Word instance from Python — xlwings, but for Word.
Built for both human scripting and LLM agents. Windows-only.
Install
pip install wordlive
# Add to a python project
uv add wordlive
# Or as a `uv` tool
uv tool install wordlive
(Requires Python 3.10+ and pywin32 on Windows.)
Rendering pages to PNG (snapshot) needs the optional snapshot extra, which
pulls in PyMuPDF:
pip install "wordlive[snapshot]"
uv add "wordlive[snapshot]"
Python
import wordlive as wl
with wl.attach() as word:
doc = word.documents.active
# Reads
outline = doc.outline()
bookmarks = doc.bookmarks.list()
# See it the way a vision model would — render a section to PNG
# (needs `wordlive[snapshot]`):
png = doc.heading("Introduction").snapshot()[0].png
# Polite writes — preserves the user's cursor and view, atomic Ctrl-Z.
with doc.edit("Update address block"):
doc.bookmarks["Address"].set_text("123 Main St")
doc.content_controls["Signatory"].set_text("Jane Doe")
doc.heading("Introduction").insert_paragraph_after("New context paragraph.")
CLI
JSON in, JSON out — designed to drop straight into an LLM tool-use loop:
wordlive status
wordlive outline # heading structure (heading:N)
wordlive outline --all # every paragraph (para:N) — alias of `paragraphs`
wordlive paragraphs # same: para:N, level, offsets, text
wordlive read bookmark Address
wordlive write bookmark Address --text "123 Main St"
# Insert a new paragraph relative to ANY anchor (heading, paragraph, bookmark, …):
wordlive insert --anchor-id heading:1 --text "..." # after (default)
wordlive insert --anchor-id para:3 --text "..." --before
# Append / prepend at the very end / start of the document (no anchor needed):
wordlive append --text "Closing note." # new final paragraph
wordlive prepend --text "DRAFT" --inline # join the first paragraph
# Address anchors by ID (the IDs `outline`/`paragraphs` emit — `heading:N`, `para:N`, `bookmark:NAME`, `cc:NAME`):
wordlive replace --anchor-id heading:3 --text "Updated section text"
wordlive go-to --anchor-id bookmark:Address
# Explicit cursor surface (the non-preferred mode — deliberately moves the cursor):
wordlive cursor read # where is the cursor? which para:N?
wordlive cursor write --text "inserted here" # type at the cursor
# Styles + paragraph formatting (atomic-undo):
wordlive style list
wordlive style apply --anchor-id heading:3 --name "Heading 2"
wordlive format-paragraph --anchor-id heading:3 --alignment center --space-before 6
# Tables (cells are anchors: table:N:R:C):
wordlive table list
wordlive table read 1
wordlive replace --anchor-id table:1:2:2 --text "$450"
wordlive table add-row --table 1 --values '["Lodging", "$600"]'
wordlive table create --anchor-id end --rows 2 --cols 2 --header \
--data '[["Item","Cost"],["Travel","$400"]]' # build a new table
wordlive table delete 2
# Page / column / section breaks (explicit one-off mark; for a style use --page-break-before):
wordlive insert-break --anchor-id heading:3 --kind page
wordlive format-paragraph --anchor-id heading:3 --page-break-before
# Collaboration: comments + track changes (the polite, non-destructive surface):
wordlive comment add --anchor-id heading:3 --text "Please expand this." --author Bot
wordlive comment list
wordlive comment resolve --index 1
wordlive track on # record edits as revisions; `track off` to stop
# Lists & numbering (any anchor's paragraphs):
wordlive list apply --anchor-id heading:6 --type numbered
wordlive list restart --anchor-id heading:6
# Sections, headers & footers (header:S:WHICH / footer:S:WHICH):
wordlive section list
wordlive header write --section 1 --text "ACME Corporation"
wordlive footer read --section 1
# Images — from a file or base64 (--wrap is required: inline | auto | square | …):
wordlive insert-image --anchor-id heading:3 --path diagram.png --wrap auto
base64 logo.png | wordlive insert-image --anchor-id bookmark:Logo --base64 - --wrap inline --width 96
# Snapshot — render page(s) to PNG so a vision model can SEE the layout
# (needs the `snapshot` extra: pip install "wordlive[snapshot]"):
wordlive snapshot --anchor-id heading:3 --out section.png # the section's page(s)
wordlive snapshot --page 2 --out p2.png # one page
wordlive snapshot --pages 1-3 # base64 PNGs inline (JSON)
# Batch multiple ops in a single Ctrl-Z:
wordlive exec --script ops.json
Where ops.json looks like:
{
"label": "Update report",
"ops": [
{"op": "write_bookmark", "name": "Address", "text": "123 Main St"},
{"op": "write_cc", "name": "Signatory", "text": "Jane Doe"},
{"op": "insert_paragraph", "anchor_id": "heading:3", "text": "New risk paragraph."},
{"op": "replace", "anchor_id": "heading:3", "text": "Updated section text"},
{"op": "apply_style", "anchor_id": "heading:3", "name": "Heading 2"},
{"op": "format_paragraph", "anchor_id": "heading:3", "alignment": "center", "space_before": 6}
]
}
Exit codes: 0 ok, 1 other, 2 anchor-not-found, 3 Word-busy, 4 Word-not-running, 5 ambiguous-match (replace --find hit several).
Agent skills
wordlive ships two LLM-facing skills (SKILL.md): wordlive-cli (the
command-line workflow) and wordlive-python (the import wordlive as wl API).
Each covers the anchor model, every verb, and the exit-code / exception contract.
An agent that hits wordlive --help is pointed straight at wordlive llm-help,
which prints the whole guide to stdout in one shot — no install step, no Word:
wordlive llm-help # the CLI guide
wordlive llm-help --python # the Python-API guide
Or drop the skill files into a project or your home directory so coding tools
discover them on their own (CLI skill by default; --python for just Python,
--both for both):
wordlive install-skill # ./.agents/skills/wordlive-cli/SKILL.md
wordlive install-skill --both # also drops wordlive-python/SKILL.md
wordlive install-skill --system # into ~/.agents/skills/ instead
MCP server (Claude Desktop & other agents)
Prefer MCP? wordlive ships a server so Claude Desktop and other MCP clients can
drive your open document directly. Three ways to set it up, easiest first:
1. One-click bundle. Download wordlive.mcpb (built from
mcpb/) and drop it
onto Claude Desktop → Settings → Extensions.
2. install-mcp. Register the server in your client's config in one command
(it uses uvx, so there's no separate install step):
wordlive install-mcp # → Claude Desktop's config
wordlive install-mcp --client claude-code # → ./.mcp.json
wordlive install-mcp --print # just print the JSON snippet
3. By hand. pip install "wordlive[mcp,snapshot]" (the snapshot extra adds
the vision tool), then add to claude_desktop_config.json:
{ "mcpServers": { "wordlive": { "command": "wordlive-mcp" } } }
It exposes four dispatch tools — word_read, word_write, word_exec, and
word_snapshot (which returns a rendered page as an image). The full op
vocabulary and anchor model are in the one-page guide, fetchable as a tool call
with word_read(command="guide") (also the wordlive://guide resource). Word
must be running on the same Windows machine. See
docs/mcp.md.
Examples
Runnable, out-of-the-box scripts live in
examples/ — Python
(using the library) and PowerShell (driving the CLI). Each attaches to the
document you already have open; the read-only and append-only ones are safe to
try on a real document.
python examples/python/read_outline.py # read-only: print the outline
python examples/python/append_note.py "Reviewed." # append one paragraph (atomic, polite)
.\examples\powershell\Show-Outline.ps1
.\examples\powershell\Invoke-WordliveWithRetry.ps1 write bookmark Address --text "123 Main St"
Design
- Politeness first — operations preserve the user's
Selection, view, and scroll. The user keeps editing alongside you. - Semantic anchors over
Selection— operations target bookmarks, content controls, or headings — never the live cursor unless you ask. - Atomic undo — every
doc.edit()opens a WordUndoRecord, so a single Ctrl-Z reverts the whole block. - Escape hatch — every wrapper exposes
.comfor the raw COM object; you're never blocked by missing coverage.
See spec.md for the full design.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wordlive-0.11.0.tar.gz.
File metadata
- Download URL: wordlive-0.11.0.tar.gz
- Upload date:
- Size: 327.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ae1e5152a6743f9de3de097053c4db2c0d40f12a6be905ff5880890a793b5fb
|
|
| MD5 |
05aed4f5ee5b0665799a3b01c192094a
|
|
| BLAKE2b-256 |
0442819cfb1e6ce52ee1e64576680b069f9ebdf43103900b3e0f60f9ca27f17e
|
Provenance
The following attestation bundles were made for wordlive-0.11.0.tar.gz:
Publisher:
release.yml on thomas-villani/wordlive
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wordlive-0.11.0.tar.gz -
Subject digest:
4ae1e5152a6743f9de3de097053c4db2c0d40f12a6be905ff5880890a793b5fb - Sigstore transparency entry: 1694462550
- Sigstore integration time:
-
Permalink:
thomas-villani/wordlive@702d8024180d8443a568456737d0c03fb2c34dac -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/thomas-villani
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@702d8024180d8443a568456737d0c03fb2c34dac -
Trigger Event:
push
-
Statement type:
File details
Details for the file wordlive-0.11.0-py3-none-any.whl.
File metadata
- Download URL: wordlive-0.11.0-py3-none-any.whl
- Upload date:
- Size: 102.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb360b1a47959b6a4f5a675896ed48dc5a85b4f361c19e3cd6640998ae77d8e8
|
|
| MD5 |
6219dbb793fcc7f71fdcf86d8dca53f5
|
|
| BLAKE2b-256 |
a9c0bd537f9f90d3b987347f8089e7b7bb03978c998e1676eaef2fac5ce2c6f5
|
Provenance
The following attestation bundles were made for wordlive-0.11.0-py3-none-any.whl:
Publisher:
release.yml on thomas-villani/wordlive
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wordlive-0.11.0-py3-none-any.whl -
Subject digest:
eb360b1a47959b6a4f5a675896ed48dc5a85b4f361c19e3cd6640998ae77d8e8 - Sigstore transparency entry: 1694462656
- Sigstore integration time:
-
Permalink:
thomas-villani/wordlive@702d8024180d8443a568456737d0c03fb2c34dac -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/thomas-villani
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@702d8024180d8443a568456737d0c03fb2c34dac -
Trigger Event:
push
-
Statement type: