Skip to main content

health-check

Run system health checks and generate a health report. Use when checking system status, agent availability, or before deployments.

インストールへ移動

ソース情報

リポジトリ
hoangsonww/AI-Agents-Orchestrator
ソースの最終更新活動
2026年4月4日 03:50
検出された SKILL.md の言語
英語
スター
83
フォーク
28

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

ファイルエクスプローラー
3 ファイル

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
health-check
description
Run system health checks and generate a health report. Use when checking system status, agent availability, or before deployments.
Run health checks for the orchestrator system and generate a report. ## Steps 1. Execute the health checker: ```bash python3 -c " from orchestrator.observability.health import HealthChecker from orchestrator.observability.report_generator import ReportGenerator import json checker = HealthChecker() results = checker.run_all_checks() print(json.dumps(results, indent=2, default=str)) gen = ReportGenerator(reports_dir='./reports') path = gen.generate_health_report(health_results=results) print(f'\nReport saved: {path}') " ``` 2. Summarize the health status: - Overall status (healthy/degraded/unhealthy) - Each check result with details - Any action items for degraded/unhealthy checks
GitHubで見る