メインコンテンツへ移動

開発 · コマンドリファレンス

qzx getGitStatus

機能

Git の状態を構造化して要約します。ブランチ、リモート、変更、最近のコミットを含みます。

コマンドの成熟度: Alpha

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

動作と組み込み保護

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

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

必要に応じてネイティブツールを使用します

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

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

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

正確な構文

qzx getGitStatus [repo_path] --json

パラメータ

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

名前必須既定値説明
repo_pathstrいいえ"."分析するディレクトリのパス (既定値: 現在の作業ディレクトリ)

入力例

qzx getGitStatus

現在のディレクトリの Git 状態を表示

qzx getGitStatus C:/some/path

C:/some/path にあるリポジトリの Git 状態を表示

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

観測された出力例

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

例のコマンド: qzx getGitStatus ../artifacts/qzx-evidence/git-status --json

{
    "success": true,
    "is_git_repository": true,
    "repo_path": "C:\\Team Dropbox\\Valis Idealis\\Ale\\Programacion\\QZX - Quick Zap Exchange\\artifacts\\qzx-evidence\\git-status",
    "branch": "main",
    "tracking_branch": null,
    "sync_status": {
        "ahead": 0,
        "behind": 0,
        "in_sync": true
    },
    "changes": {
        "staged": [
            "staged.txt"
        ],
        "modified": [
            "tracked.txt"
        ],
        "untracked": [
            "untracked.txt"
        ],
        "deleted": [],
        "renamed": []
    },
    "changes_summary": {
        "staged_count": 1,
        "modified_count": 1,
        "untracked_count": 1,
        "deleted_count": 0,
        "total_changes": 3
    },
    "remotes": {
        "origin": {
            "fetch": "https://example.invalid/qzx-evidence.git",
            "push": "https://example.invalid/qzx-evidence.git"
        }
    },
    "recent_commits": [
        {
            "hash": "cf86262",
            "author": "QZX Evidence Fixture",
            "date": "2026-08-08",
            "subject": "Create controlled QZX evidence fixture"
        }
    ],
    "message": "Git Repository Status for 'C:\\Team Dropbox\\Valis Idealis\\Ale\\Programacion\\QZX - Quick Zap Exchange\\artifacts\\qzx-evidence\\git-status':\n- Branch: main\n- Tracking: None\n- Uncommitted Changes: Staged=1, Modified=1, Untracked=1, Deleted=0\n- Latest Commit: [cf86262] Create controlled QZX evidence fixture by QZX Evidence Fixture (2026-08-08)",
    "meta": {
        "command": "getGitStatus",
        "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": 872.168,
        "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
        },
        "branch": [],
        "changes": {
            "type": "object",
            "properties": {
                "staged": [],
                "modified": [],
                "untracked": [],
                "deleted": [],
                "renamed": []
            },
            "additionalProperties": true
        },
        "changes_summary": {
            "type": "object",
            "properties": {
                "staged_count": [],
                "modified_count": [],
                "untracked_count": [],
                "deleted_count": [],
                "total_changes": []
            },
            "additionalProperties": true
        },
        "error": {
            "type": "string"
        },
        "is_git_repository": {
            "type": "boolean"
        },
        "recent_commits": [],
        "remotes": [],
        "repo_path": [],
        "sync_status": {
            "type": "object",
            "properties": {
                "ahead": [],
                "behind": [],
                "in_sync": {
                    "type": "boolean"
                }
            },
            "additionalProperties": true
        },
        "tracking_branch": []
    },
    "additionalProperties": true
}

エラーと制限

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

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

{
    "success": false,
    "error": "Path '../artifacts/qzx-evidence/git-status-missing' does not exist.",
    "message": "Path '../artifacts/qzx-evidence/git-status-missing' does not exist.",
    "meta": {
        "command": "getGitStatus",
        "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": 8.048,
        "schema_version": 1
    }
}

取得したコマンド: qzx getGitStatus ../artifacts/qzx-evidence/git-status-missing --json

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

証拠と出所

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

さらに探す

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

QZX の全コマンドを見る