Without QZX
Windows PowerShell
(Get-Date).ToString("yyyy-MM-dd")Linux
date +%FmacOS
date +%FQZX — Quick Zap Exchange
QZX gives agents, automation and developers one documented CLI vocabulary for supported operations on Windows, Linux and macOS. It prints readable messages by default and complete structured results when you pass --json.
QZX is completely free and open source. Donations are welcome because they support ongoing development, but they never unlock features or change the product experience.
python -m pip install qzx
qzx qzxListCommands
qzx getCurrentDate --json
The website also documents a newer development checkout. Every command page labels whether the capability is present in the published wheel.
An observed result
The QZX snapshot is complete stdout from a real Windows 11 10.0.26200 run with QZX 0.2.2.0.2 and CPython 3.13.12; no fields were invented.
Windows PowerShell
(Get-Date).ToString("yyyy-MM-dd")Linux
date +%FmacOS
date +%Fqzx getCurrentDate --json{
"success": true,
"date": "2026-07-25",
"message": "Current date is Saturday, July 25, 2026 (ISO format: 2026-07-25)",
"details": {
"year": 2026,
"month": 7,
"month_name": "July",
"day": 25,
"day_of_week": "Saturday",
"day_of_year": 206,
"week_of_year": 30
},
"meta": {
"command": "getCurrentDate",
"duration_ms": 0.985,
"schema_version": 1
}
}Captured on 25 July 2026; date and duration change on each run. See the reference and evidence.
What the interface changes
Use the same command name on supported hosts instead of maintaining a separate instruction for each shell.
Request JSON deliberately with --json, then inspect success, message and command-specific fields.
Availability, platform dependencies, mutations, backups and observed evidence are documented instead of implied.
Published channel
The inspected official wheel contains 93 historical command spellings that normalize to 93 current catalog capabilities. Its published metadata declares Python >=3.9.
Development documentation
The current catalog documents 93 commands: the 93 capabilities reconciled with the wheel plus 0 development-only capabilities. The checkout requires Python >=3.13.
QZX supports the standard CPython 3.13.x build. Other Python versions or implementations may work, but experimental free-threaded CPython builds, PyPy, and other implementations are not certified. See the compatibility evidence.
QZX is a local command interface, not a sandbox or a guarantee of native parity. Prefer it when a documented command covers the operation and a consistent result contract helps. Use native APIs or the shell for capabilities QZX does not model.