メインコンテンツへ移動

ファイル · コマンドリファレンス

qzx getHumanLanguageStats

機能

ファイルを分析して自然言語の分布を推定します。ワイルドカードと再帰検索に対応します。

コマンドの成熟度: Alpha

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

動作と組み込み保護

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

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

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

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

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

この分析器は読み取り専用です。辞書に関する警告とファイルごとの失敗は構造化フィールドで返され、どの失敗でも JSON 出力を汚染せずに全体状態も失敗になります。

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

正確な構文

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

パラメータ

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

名前必須既定値説明
file_pathstrはい未宣言分析するファイルのパス。*.txt のようなワイルドカードに対応
ignore_commentsboolいいえfalseテキスト分析時にコードコメントを無視するか指定します。-i または --ignore-comments フラグに対応します。
min_word_lengthintいいえ4言語検出で対象にする単語の最小長
languagesstrいいえ未宣言検出する言語のカンマ区切りリスト (既定値: 利用可能なすべて)
recursiveboolいいえfalseディレクトリを再帰検索するか指定します。-r、-R、--recursive フラグに対応します。
show_files_matchboolいいえfalse見つかったファイル一覧を表示するか指定します。--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 の全コマンドを見る