一键导入
health-check
Run system health checks and generate a health report. Use when checking system status, agent availability, or before deployments.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run system health checks and generate a health report. Use when checking system status, agent availability, or before deployments.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| 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.
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}')
"
Generate all orchestrator report types — execution summaries, agent performance, workflow analytics, health, config audit, and HTML dashboard with charts. Use after task runs or for project status overview.
Run the project test suite with optional filtering by marker or file. Use when you need to verify code changes, check test status, or diagnose test failures.
Review code changes for security vulnerabilities, authentication gaps, injection risks, and unsafe patterns. Use before merging PRs or after security-sensitive changes.