원클릭으로
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 직업 분류 기준
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.
| 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}')
"