QZX 없이
Windows PowerShell
(Get-Date).ToString("o")Linux
date --iso-8601=secondsmacOS
date +%Y-%m-%dT%H:%M:%S%zQuick Zap Exchange
QZX는 시스템, 파일, 네트워크, 개발에서 반복되는 작업을 Windows, Linux, macOS에서 예측 가능한 명령으로 통합하고, 사람용 출력과 자동화용 JSON을 제공합니다.
빠른 읽기 전용 ISO 타임스탬프로 QZX 동작을 확인합니다.
python -m pip install --upgrade qzx
qzx getCurrentDateTime --output-format iso --json
터미널에서 두 명령을 실행하세요. JSON에 success: true와 비어 있지 않은 message가 있으면 첫 확인이 성공한 것입니다. 복사만으로는 설치되거나 실행되지 않습니다.
QZX — Quick Zap Exchange는 Alejandro Sánchez가 제작하고 유지관리합니다.
Codex, Claude Code 및 Gemini CLI용 QZX — 빠른 시작관찰된 결과
QZX 캡처는 Windows 11 10.0.26200에서 QZX 0.2.2.0.9 및 CPython 3.13.13으로 실제 실행한 전체 stdout입니다. 필드를 꾸며내지 않았습니다.
Windows PowerShell
(Get-Date).ToString("o")Linux
date --iso-8601=secondsmacOS
date +%Y-%m-%dT%H:%M:%S%zqzx getCurrentDateTime --output-format iso --json{
"success": true,
"message": "Current local date and time (ISO 8601): 2026-09-10T14:51:35.977340-05:00.",
"output": "2026-09-10T14:51:35.977340-05:00",
"output_format": "iso",
"date": {
"year": 2026,
"month": 9,
"month_name": "September",
"day": 10,
"day_of_week": "Thursday",
"day_of_year": 253,
"iso_week": 37,
"iso_week_year": 2026,
"quarter": 3,
"is_leap_year": false
},
"time": {
"hour_24": 14,
"hour_12": 2,
"minute": 51,
"second": 35,
"microsecond": 977340,
"am_pm": "PM",
"timezone": "Hora est. Pacífico, Sudamérica",
"utc_offset": "-05:00"
},
"timestamp": 1789069895,
"iso_format": "2026-09-10T14:51:35.977340-05:00",
"meta": {
"command": "getCurrentDateTime",
"command_maturity": {
"stage": "alpha",
"label": "Alpha",
"sequence": 2,
"public_executable": true,
"stability": "interface_may_change",
"summary": "Available for real use and feedback while its interface and behavior can still evolve.",
"promotion_review_required": false,
"assessment_scope": "development_checkout"
},
"duration_ms": 3.731,
"schema_version": 1
}
}10 de septiembre de 2026에 캡처됨. 날짜와 실행 시간은 실행할 때마다 달라집니다. 참조와 근거 보기.
게시된 패키지를 설치하고 먼저 읽기 전용 명령을 실행하세요. 이후 에이전트가 반복해서 구현하던 진단을 QZX로 대체할 수 있는지 확인합니다.
python -m pip install --upgrade qzx
qzx getCurrentDateTime
qzx diagnoseProject .
qzx diagnoseStorage .
프로젝트 상태 확인, 저장 공간 조사, 웹사이트 진단을 할 때마다 PowerShell, Bash, Python을 다시 작성할 필요는 없습니다. QZX는 이런 반복 작업을 문서화하고 테스트할 수 있는 공통 인터페이스에 모읍니다.
QZX Result Contract v1은 성공, 메시지, 데이터, 오류를 검증 가능한 형태로 표현합니다. 새로운 업계 표준이라고 주장하는 것이 아니라, 다른 구현이 실제로 시험할 수 있는 작은 계약을 제공하는 것이 목적입니다.
qzx diagnoseWebsite https://example.com --json