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 语言
英语
星标
84
分支
27

安装方式

默认使用会先检查来源的 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 查看