メインコンテンツへ移動

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

qzx getSystemInfo

機能

OS、Python、ユーザー、環境について移植性の高い情報を取得し、任意で RAM とストレージの詳細も含めます。

コマンドの成熟度: Alpha

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

動作と組み込み保護

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

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

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

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

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

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

正確な構文

qzx getSystemInfo [detailed] [include_environment] --json

パラメータ

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

名前必須既定値説明
detailedboolいいえfalseRAM とストレージの詳細を含める (true/false、既定値: false)
include_environmentboolいいえfalse選択したローカル環境変数の値を含める (true/false、既定値: false)

入力例

qzx getSystemInfo

迅速で移植性の高いシステム要約を取得

qzx getSystemInfo --detailed

現在の RAM とストレージの詳細を追加

qzx getSystemInfo --include-environment

選択したローカル環境変数を含める

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

観測された出力例

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

例のコマンド: qzx getSystemInfo --json

{
    "success": true,
    "message": "System: Windows 11 on AMD64 (64-bit). Python CPython 3.13.13. Host: DASHF15-ALE; user: alesanGreat; current directory: C:\\Team Dropbox\\Valis Idealis\\Ale\\Programacion\\QZX - Quick Zap Exchange\\QZX-Source. Add --detailed for RAM and storage without probing GPUs. Environment-variable values were not included; add --include-environment to request them locally.",
    "system_info": {
        "qzx": {
            "version": "0.2.2.0.9"
        },
        "os": "Windows",
        "os_version": "10.0.26200",
        "os_release": "11",
        "machine": "AMD64",
        "processor": "Intel64 Family 6 Model 140 Stepping 1, GenuineIntel",
        "architecture": {
            "bits": 64,
            "machine": "AMD64"
        },
        "platform": "win32",
        "python": {
            "version": "3.13.13",
            "implementation": "CPython",
            "compiler": "MSC v.1944 64 bit (AMD64)",
            "build": [
                "main",
                "Apr  8 2026 01:56:49"
            ]
        },
        "network": {
            "hostname": "DASHF15-ALE"
        },
        "user": {
            "username": "alesanGreat",
            "home_directory": "C:\\Users\\alesanGreat"
        },
        "environment": {
            "current_directory": "C:\\Team Dropbox\\Valis Idealis\\Ale\\Programacion\\QZX - Quick Zap Exchange\\QZX-Source",
            "variables_included": false
        },
        "windows": {
            "edition": "Core",
            "version": [
                "11",
                "10.0.26200",
                "SP0",
                "Multiprocessor Free"
            ]
        }
    },
    "details_requested": false,
    "environment_included": false,
    "warnings": [],
    "meta": {
        "command": "getSystemInfo",
        "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": 135.748,
        "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
        },
        "details": {
            "oneOf": [
                {
                    "type": "object",
                    "properties": {
                        "detailed": [],
                        "include_environment": []
                    },
                    "additionalProperties": true
                },
                {
                    "type": "object",
                    "properties": {
                        "detailed_requested": [],
                        "environment_requested": []
                    },
                    "additionalProperties": true
                }
            ]
        },
        "details_requested": [],
        "environment_included": [],
        "error": {
            "type": "string"
        },
        "error_code": {
            "type": "string"
        },
        "system_info": [],
        "warnings": []
    },
    "additionalProperties": true
}

エラーと制限

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

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

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

証拠と出所

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

さらに探す

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

QZX の全コマンドを見る