跳到主要内容

文件 · 命令参考

qzx getHumanLanguageStats

作用

分析文件以估算自然语言分布;支持通配符和递归搜索。

命令成熟度:Alpha

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

行为与内置保护

只检查,不改变状态

此操作直接执行

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

无需网络即可运行

设计为无需提权即可运行

此分析器为只读。词典警告和单文件失败会在结构化字段中返回;任何失败也会使整体状态失败,同时不会污染 JSON 输出。

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

准确语法

qzx getHumanLanguageStats <file_path> [ignore_comments] [min_word_length] [languages] [recursive] [show_files_match] --json

参数

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

名称类型必填默认值描述
file_pathstr未声明要分析的文件路径。支持 *.txt 等通配符
ignore_commentsboolfalse指定分析文本时是否忽略代码注释。支持 -i 或 --ignore-comments 标志。
min_word_lengthint4语言检测时考虑的最小单词长度
languagesstr未声明要检测的语言列表,以逗号分隔(默认:所有可用语言)
recursiveboolfalse指定是否递归搜索目录。支持 -r、-R 或 --recursive 标志。
show_files_matchboolfalse指定是否显示找到的文件列表。支持 --show_files_match 标志。

输入示例

qzx getHumanLanguageStats myfile.txt

分析文本文件的语言分布

qzx getHumanLanguageStats code.py -i

使用标志分析 Python 文件并忽略注释

qzx getHumanLanguageStats "*.md" false 3

分析当前目录中的所有 Markdown 文件

qzx getHumanLanguageStats "docs/*.txt" -i

分析 docs 目录中的文本文件并忽略注释

qzx getHumanLanguageStats "src/**/*.py" -r

使用 -r 标志递归分析 src 目录中的 Python 文件

qzx getHumanLanguageStats "**/*.py" -r -i

使用标志递归分析所有 Python 文件并忽略注释

qzx getHumanLanguageStats "**/*.py" -r --show_files_match

递归分析所有 Python 文件并显示找到的文件列表

要获得完整结构化载荷,请添加 --json: qzx getHumanLanguageStats <file_path> [ignore_comments] [min_word_length] [languages] [recursive] [show_files_match] --json

代表性输出示例

此示意 JSON 源自当前实现所支持的结果契约。它展示命令可能返回的内容,并不声称这是录制的实际执行;具体值会随输入、设备、权限和可选工具而变化。

示例命令: qzx getHumanLanguageStats myfile.txt --json

{
    "success": true,
    "message": "Analyzes files to estimate human-language distribution, with wildcard and recursive search support. In this illustrative example, the command completed successfully.",
    "meta": {
        "command": "getHumanLanguageStats",
        "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": 0,
        "schema_version": 1
    },
    "aggregated_stats": [
        {
            "name": "example",
            "status": "ok"
        }
    ],
    "file_stats": [
        {
            "path": "README.md",
            "language": "English",
            "confidence_percent": 98.4
        }
    ],
    "files_analyzed": "C:\\project\\example.txt",
    "files_failed": "C:\\project\\example.txt",
    "files_found": "C:\\project\\example.txt",
    "files_processed": "C:\\project\\example.txt",
    "matched_files": "C:\\project\\example.txt",
    "status": "ok",
    "warnings": [
        {
            "name": "example",
            "status": "ok"
        }
    ]
}
查看 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
        },
        "aggregated_stats": [],
        "error": {
            "type": "string"
        },
        "error_code": {
            "type": "string"
        },
        "file_stats": [],
        "files_analyzed": [],
        "files_failed": [],
        "files_found": [],
        "files_processed": [],
        "matched_files": [],
        "status": {
            "type": "string"
        },
        "warnings": []
    },
    "additionalProperties": true
}

错误与限制

公开契约要求失败时返回 success=false 和具有描述性的 message。此目录尚未为每个命令声明专门的错误分类;请检查结果,不要推断不存在的错误码。

QZX 仍处于 alpha 阶段。可选依赖、权限和主机能力可能影响结果。

证据流程:可进行确定性自动捕获。

证据与来源

文档渠道
开发文档 0.2.2.0.9 · main · sha256:cfba936e39931c286ca23add0ae546693db17d8b316e7cbc3891d26642d9b7e8
可用性
0.2.2.0.9 或更早

继续探索

这些命令同样属于 文件 类别。对比它们,选择最适合解决任务的操作。

浏览所有 QZX 命令