mit einem Klick
generate-reports
// 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.
// 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 system health checks and generate a health report. Use when checking system status, agent availability, or before deployments.
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 | generate-reports |
| description | 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. |
Generate reports for the AI Coding Tools Orchestrator.
python3 -c "
import yaml
from orchestrator.observability.report_generator import ReportGenerator
with open('orchestrator/config/agents.yaml') as f:
config = yaml.safe_load(f)
gen = ReportGenerator(reports_dir='./reports')
paths = gen.seed_reports(config=config)
for p in paths:
print(f' Generated: {p}')
print(f'\n{len(paths)} reports generated in reports/')
"
Report which files were created and their sizes. Mention the HTML dashboard can be opened in a browser.