メインコンテンツへ移動

システム · コマンドリファレンス

qzx getCurrentDateTime

機能

現在のローカル日時を、タイムゾーン、カレンダー、ISO 週、タイムスタンプとともに表示します。

コマンドの成熟度: Alpha

実際の利用とフィードバックに使えますが、インターフェースと動作はまだ変更される可能性があります。 これは現在の開発チェックアウトに対する評価です。今後の各不変リリースタグには、そのバージョンに含まれた正確な評価が保存されます。 PyPI 0.2.2.0.9 で利用できます。ドキュメントは alpha チェックアウト 0.2.2.0.9 に対応しています。

動作と組み込み保護

状態を変更せずに検査します

この操作は直接実行されます

ネイティブプログラムを呼び出さずに動作します

ネットワークを使わずに動作します

権限昇格なしで動作するよう設計されています

この安全分類は 2026-08-25 に OpenAI GPT-5.6 Pro が実装ダイジェスト sha256:01b8166477a10edcf7f9eff64de71b0f003b8eca2b999bd10309617bde4f6b3d と照合してレビューしました。

正確な構文

qzx getCurrentDateTime [output_format] --json

パラメータ

スワイプするか横スクロールバーを使って、すべての列を表示してください。

名前必須既定値説明
output_formatstrいいえ"full"表示形式: full、simple、iso

入力例

qzx getCurrentDateTime

タイムゾーンとカレンダー情報付きでローカル日時を表示

qzx getCurrentDateTime --output-format simple

コンパクトなローカル日時を表示

qzx getCurrentDateTime --output-format iso

タイムゾーンを含む ISO 8601 値を表示

完全な構造化ペイロードを取得するには --json を追加します: qzx getCurrentDateTime [output_format] --json

観測された出力例

Windows 11 上の QZX 0.2.2.0.9 で取得。終了コードは 0。ホスト依存の値や所要時間は変わる場合があります。

例のコマンド: qzx 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
    }
}
JSON 結果コントラクトを見る
{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "type": "object",
    "required": [
        "success",
        "message",
        "meta"
    ],
    "properties": {
        "success": {
            "type": "boolean"
        },
        "message": {
            "type": "string"
        },
        "meta": {
            "type": "object",
            "required": [
                "command",
                "command_maturity",
                "duration_ms",
                "schema_version"
            ],
            "properties": {
                "command": {
                    "type": "string"
                },
                "command_maturity": {
                    "type": "object",
                    "required": [
                        "stage",
                        "label",
                        "sequence",
                        "public_executable",
                        "stability",
                        "summary",
                        "promotion_review_required",
                        "assessment_scope"
                    ],
                    "properties": {
                        "stage": {
                            "type": "string"
                        },
                        "label": {
                            "type": "string"
                        },
                        "sequence": {
                            "type": "integer"
                        },
                        "public_executable": {
                            "type": "boolean"
                        },
                        "stability": {
                            "type": "string"
                        },
                        "summary": {
                            "type": "string"
                        },
                        "promotion_review_required": {
                            "type": "boolean"
                        },
                        "assessment_scope": {
                            "type": "string"
                        },
                        "note": {
                            "type": "string"
                        },
                        "review": {
                            "type": "object",
                            "required": [
                                "reviewed_on",
                                "rationale",
                                "evidence"
                            ],
                            "properties": {
                                "reviewed_on": {
                                    "type": "string",
                                    "format": "date"
                                },
                                "rationale": {
                                    "type": "string"
                                },
                                "evidence": {
                                    "type": "array",
                                    "minItems": 1,
                                    "items": {
                                        "type": "string"
                                    }
                                },
                                "replacement": {
                                    "type": "string"
                                }
                            },
                            "additionalProperties": false
                        }
                    },
                    "additionalProperties": true
                },
                "duration_ms": {
                    "type": "number"
                },
                "schema_version": {
                    "type": "integer"
                }
            },
            "additionalProperties": true
        },
        "date": {
            "type": "object",
            "properties": {
                "year": [],
                "month": [],
                "month_name": [],
                "day": [],
                "day_of_week": [],
                "day_of_year": [],
                "iso_week": [],
                "iso_week_year": [],
                "quarter": [],
                "is_leap_year": []
            },
            "additionalProperties": true
        },
        "details": {
            "type": "object",
            "properties": {
                "received": [],
                "supported": []
            },
            "additionalProperties": true
        },
        "error": {
            "type": "string"
        },
        "error_code": {
            "type": "string"
        },
        "iso_format": [],
        "output": [],
        "output_format": [],
        "time": {
            "type": "object",
            "properties": {
                "hour_24": [],
                "hour_12": [],
                "minute": [],
                "second": [],
                "microsecond": [],
                "am_pm": [],
                "timezone": [],
                "utc_offset": []
            },
            "additionalProperties": true
        },
        "timestamp": []
    },
    "additionalProperties": true
}

エラーと制限

公開コントラクトでは失敗時に success=false と説明的な message が必要です。このカタログではまだコマンドごとのエラー分類を宣言していません。結果を確認し、存在しないコードを推測しないでください。

QZX は alpha 段階です。オプション依存関係、権限、ホスト機能によって結果が変わる場合があります。

{
    "success": false,
    "error_code": "invalid_output_format",
    "error": "Unsupported output format 'invalid-golden-core-format'; choose full, simple, iso.",
    "message": "Could not report the current date and time because --output-format must be full, simple, or iso.",
    "details": {
        "received": "invalid-golden-core-format",
        "supported": [
            "full",
            "simple",
            "iso"
        ]
    },
    "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": 5.311,
        "schema_version": 1
    }
}

取得したコマンド: qzx getCurrentDateTime --output-format invalid-golden-core-format --json

証拠フロー: 取得済み・ダイジェストで検証済み。

証拠と出所

ドキュメントチャネル
開発ドキュメント 0.2.2.0.9 · main · sha256:cfba936e39931c286ca23add0ae546693db17d8b316e7cbc3891d26642d9b7e8
提供状況
0.2.2.0.9 以前

さらに探す

これらのコマンドも システム カテゴリに属します。比較して、タスクに最適な操作を選んでください。

QZX の全コマンドを見る