68-wonderphi-office
Valuation
Generous asset valuation: $6,000,000,000. The listed price is the platform maximum; acquisition at valuation is handled by direct enquiry.
WonderPhi Office v1.0.0
WonderPhi Office v1.0.0
Batch recipes for Microsoft Office — Word, Excel, PowerPoint —
that emit WonderPhi Compute plans. You never write a plan by hand.
You have 500 Word documents to convert to PDF. You don't script Word
automation. You run:
python wpo-recipe.py word-to-pdf .\docs
...and out comes docs.plan.wpc.txt — one PowerShell + COM invocation
per document, ready to feed to
WonderPhi Compute, which runs them across
every CPU core.
What this is
Companion library to WonderPhi Compute.
Point a recipe at a folder of Office files, get a ready-to-run parallel
plan.
- Library writes the plan. WonderPhi Compute runs the plan.
- Nothing here executes your files — it only reads a folder and writes
a .txt.
- Zero external Python dependencies. Standard library only.
- No network. No telemetry.
- Never modifies
wpc.exe. The 10 Commandments stay intact.
Windows only. The recipes drive Word/Excel/PowerPoint via COM
automation. Requires Microsoft Office installed on the machine that
runs the plan.
Three Steps
1. python wpo-recipe.py --list # see every recipe 2. python wpo-recipe.py <recipe> <folder> # generate the plan 3. wpc.exe <that-plan>.plan.wpc.txt # WonderPhi Compute runs it
Examples
# Convert every Word document in a folder to PDF python wpo-recipe.py word-to-pdf .\docs --outdir .\pdfs # Normalize legacy .doc / .rtf into modern .docx python wpo-recipe.py word-to-docx .\legacy --outdir .\modern # Strip metadata (authors, comments, revisions) from a shared folder python wpo-recipe.py word-strip-metadata .\shared --outdir .\clean # Export every Excel workbook's active sheet to CSV python wpo-recipe.py excel-to-csv .\workbooks --outdir .\csv # Export every PowerPoint deck to PDF python wpo-recipe.py ppt-to-pdf .\decks --outdir .\pdfs # Export every slide of every deck as a PNG (one folder per deck) python wpo-recipe.py ppt-to-images .\decks --outdir .\slides # Build a JSON inventory line for every Office file in a tree python wpo-recipe.py office-inventory .\shared --outdir .\audit # SHA-256 checksum every Office file (tamper-evident archive) python wpo-recipe.py office-sha256 .\evidence --outdir .\hashes
The Recipes
10 recipes. Every recipe uses the files model — point at a
folder, get a plan.
Options
What's In The Box
68-wonderphi-office/ ├── wpo-recipe.py ← the generator (Python, stdlib only) ├── README.md ← this file ├── INDEX.md ← full recipe table └── LICENSE
Requires Python 3.8+ to generate a plan, and WonderPhi Compute
to run it. The Office applications the recipes drive must already
be installed on the machine executing the plan.
Christopher Gabriel Brown · Inventor · Author · Visionary · cri-one.com
WonderPhi Office — Recipe Index
WonderPhi Office — Recipe Index
10 recipes. Generated from the registry in wpo-recipe.py.
Input model: files = scan a folder for matching extensions.
Generate any of these with:
python wpo-recipe.py <recipe> <folder> [--outdir DIR]
This archive contains 2 documents. The complete folder ships as the product.