跳到主要内容

系统 · 命令参考

qzx getSystemInfo

作用

获取可移植的操作系统、Python、用户和环境信息,并可选择包含 RAM 和存储详情。

命令成熟度:Alpha

可用于真实使用和反馈,但其接口与行为仍可能继续演进。 这是当前开发 checkout 的评估。未来每个不可变发布标签都会保留该版本中包含的准确评估。 可在 PyPI 0.2.2.0.9 使用。文档对应 alpha checkout 0.2.2.0.9。

行为与内置保护

只检查,不改变状态

此操作直接执行

无需调用原生程序即可运行

无需网络即可运行

设计为无需提权即可运行

此安全分类由 OpenAI GPT-5.6 Pro 于 2026-08-25 对照实现摘要 sha256:834c55f08061294f102973a15358141d1474a29772aaf92f6dc83ebf8efeb9f9 审阅。

准确语法

qzx getSystemInfo [detailed] [include_environment] --json

参数

滑动或使用横向滚动条查看所有列。

名称类型必填默认值描述
detailedboolfalse包含 RAM 和存储详情(true/false;默认:false)
include_environmentboolfalse包含所选本地环境变量值(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 命令