69-wonderphi-server
Valuation
Generous asset valuation: $20,000,000,000. The listed price is the platform maximum; acquisition at valuation is handled by direct enquiry.
WonderPhi Server v1.0.0
WonderPhi Server v1.0.0
Batch recipes for VM and server administration that emit WonderPhi
Compute plans. Point a recipe at a list of hosts, get a ready-to-run
parallel plan.
You have 40 Hyper-V VMs to snapshot before a maintenance window. You
don't write a for-loop. You run:
python wps-recipe.py hyperv-snapshot .\vms.txt
...and out comes vms.plan.wpc.txt — one snapshot command per VM,
dispatched by WonderPhi Compute across every
CPU core.
What this is
Companion library to WonderPhi Compute.
Recipes cover Hyper-V, WSL, SSH, WinRM, SFTP, and host discovery.
- Library writes the plan. WonderPhi Compute runs the plan.
- Nothing here executes remote commands — it only reads a file and
writes a .txt.
- Zero external Python dependencies. Standard library only.
- No network. No telemetry.
- Never modifies
wpc.exe. The 10 Commandments stay intact.
Runs on Windows; targets can be anything reachable by SSH / WinRM /
Hyper-V API.
Three Steps
1. python wps-recipe.py --list # see every recipe 2. python wps-recipe.py <recipe> <hosts.txt> # generate the plan 3. wpc.exe <that-plan>.plan.wpc.txt # WonderPhi Compute runs it
Input format: one target per line. What "target" means depends on
the recipe — a VM name for Hyper-V, a hostname for SSH, a distro name
for WSL. Blank lines and # comments are ignored.
Examples
# Checkpoint every VM in the list before an OS upgrade window python wps-recipe.py hyperv-snapshot .\vms.txt --tag pre-2026-Q3 # Export each VM (bare-metal-restore-ready archive) python wps-recipe.py hyperv-export .\vms.txt --tag 20260721 # Boot every named VM in parallel (spawn a lab fast) python wps-recipe.py hyperv-start .\vms.txt # Get uptime from every SSH host at once python wps-recipe.py ssh-uptime .\hosts.txt # apt update && upgrade across a fleet python wps-recipe.py ssh-upgrade .\hosts.txt # Test-NetConnection host:port against many endpoints python wps-recipe.py port-check .\endpoints.txt # apt update on every WSL distro python wps-recipe.py wsl-update .\distros.txt
The Recipes
19 recipes. All use the lines model — one target per line.
Options
What's In The Box
69-wonderphi-server/ ├── wps-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, WonderPhi Compute to run
it, and the appropriate remote-access tool (SSH/WinRM/Hyper-V module)
on the operator's machine.
Christopher Gabriel Brown · Inventor · Author · Visionary · cri-one.com
WonderPhi Server — Recipe Index
WonderPhi Server — Recipe Index
19 recipes. Generated from the registry in wps-recipe.py.
Input model: lines = one target per line in the input file.
Generate any of these with:
python wps-recipe.py <recipe> <hosts.txt> [--tag VALUE]
This archive contains 2 documents. The complete folder ships as the product.