ネットワーク · コマンドリファレンス
qzx diagnoseWebsite
機能
DNS、TLS 証明書、HTTP 到達性を 1 つのフローで関連付け、HTTPS サイトが失敗している理由を診断します。
コマンドの成熟度: Alpha
実際の利用とフィードバックに使えますが、インターフェースと動作はまだ変更される可能性があります。 これは現在の開発チェックアウトに対する評価です。今後の各不変リリースタグには、そのバージョンに含まれた正確な評価が保存されます。 PyPI 0.2.2.0.9 で利用できます。ドキュメントは alpha チェックアウト 0.2.2.0.9 に対応しています。
動作と組み込み保護
状態を変更せずに検査します
この操作は直接実行されます
必要に応じてネイティブツールを使用します
文書化されたタスクのためにネットワークを使用します
権限昇格なしで動作するよう設計されています
診断チェックのみを実行します。DNS 解決、TLS 証明書の検査、到達性確認の HTTPS リクエストです。スキームのないドメインは既定で HTTPS を使用します。ネットワークアクセス前に、HTTPS 以外のスキーム、数値 IP アドレス、埋め込み認証情報、query string、fragment、シェルに敏感な文字を含む宛先を拒否します。権威 DNS が名前不存在を返した場合は不要な TLS/HTTP 問い合わせを避けます。プローブ内部の失敗は部分診断として示し、サイト停止として誤表示しません。
この安全分類は 2026-09-10 に OpenAI GPT-5.6 Sol が実装ダイジェスト sha256:7da1246f5eb89d528f235dfc19e325e3e697c7b7b902cbb26078d0955e4c4452 と照合してレビューしました。
正確な構文
qzx diagnoseWebsite <target> [timeout] --jsonパラメータ
スワイプするか横スクロールバーを使って、すべての列を表示してください。
| 名前 | 型 | 必須 | 既定値 | 説明 |
|---|---|---|---|---|
| target | str | はい | 未宣言 | 診断するドメインまたは HTTPS URL。ポートやパスを含められます |
| timeout | float | いいえ | 10 | HTTP リクエストの最大待機時間 (秒、0.1-60、既定値: 10) |
入力例
qzx diagnoseWebsite example.com1 コマンドで Web サイトの DNS、TLS、HTTP を診断
qzx diagnoseWebsite https://example.com/docs --json特定の HTTPS パスについて構造化診断を取得
qzx diagnoseWebsite example.com:8443/status --timeout 15 --jsonカスタムポート上の HTTPS サービスを、長めの HTTP タイムアウトで診断
完全な構造化ペイロードを取得するには --json を追加します: qzx diagnoseWebsite <target> [timeout] --json
代表的な出力例
この説明用 JSON は現在の実装が裏付ける結果コントラクトから生成されています。記録された実行だと主張せず、コマンドが返し得る内容を示します。値は入力、マシン、権限、オプションツールによって変わります。
例のコマンド: qzx diagnoseWebsite example.com --json
{
"success": true,
"message": "Diagnoses why an HTTPS website may be failing by correlating DNS, TLS certificate, and HTTP reachability evidence. In this illustrative example, the command completed successfully.",
"meta": {
"command": "diagnoseWebsite",
"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
},
"details": {
"summary": "Additional structured context is included here."
},
"dns": [
{
"name": "example",
"status": "ok"
}
],
"findings": [
{
"name": "example",
"status": "ok"
}
],
"healthy": true,
"host": "example.com",
"http": "Example value",
"network_requests": true,
"overall_status": [
{
"name": "example",
"status": "ok"
}
],
"partial": "Example value",
"path": "C:\\project\\example.txt",
"port": 443,
"primary_issue_layer": "Example value",
"probe_status": [
{
"name": "example",
"status": "ok"
}
],
"read_only": true,
"recommendations": [
{
"name": "example",
"status": "ok"
}
],
"related_commands": [
{
"name": "example",
"status": "ok"
}
],
"remediation": "Example value",
"report": "Analysis complete.\nNo blocking issues were found.",
"target": "Example value",
"timeout_seconds": [
{
"name": "example",
"status": "ok"
}
],
"tls": [
{
"name": "example",
"status": "ok"
}
],
"url": "https://example.com"
}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": [],
"dns": [],
"error": [],
"error_code": [],
"findings": [],
"healthy": {
"type": "boolean"
},
"host": [],
"http": [],
"network_requests": {
"type": "boolean"
},
"overall_status": [],
"partial": [],
"path": [],
"port": [],
"primary_issue_layer": [],
"probe_status": [],
"read_only": {
"type": "boolean"
},
"recommendations": [],
"related_commands": {
"type": "array"
},
"remediation": {
"type": "string"
},
"report": [],
"target": [],
"timeout_seconds": [],
"tls": [],
"url": []
},
"additionalProperties": true
}エラーと制限
公開コントラクトでは失敗時に success=false と説明的な message が必要です。このカタログではまだコマンドごとのエラー分類を宣言していません。結果を確認し、存在しないコードを推測しないでください。
QZX は alpha 段階です。オプション依存関係、権限、ホスト機能によって結果が変わる場合があります。
証拠フロー: 承認済みエンドポイントまたはレビュー済み fixture が必要。
証拠と出所
- ドキュメントチャネル
- 開発ドキュメント 0.2.2.0.9 · main · sha256:cfba936e39931c286ca23add0ae546693db17d8b316e7cbc3891d26642d9b7e8
- 提供状況
- 0.2.2.0.9 以前
さらに探す
関連コマンド
これらのコマンドも ネットワーク カテゴリに属します。比較して、タスクに最適な操作を選んでください。