Skip to main content

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.

الانتقال إلى التثبيت

معلومات المصدر

المستودع
hoangsonww/AI-Agents-Orchestrator
آخر نشاط في المصدر
٤ أبريل ٢٠٢٦ في ٠٣:٥٠
لغة SKILL.md المكتشفة
الإنجليزية
النجوم
٨٤
التفرعات
٢٧

خيارات التثبيت

يُحدَّد Prompt الذي يراجع المصدر أولًا بشكل افتراضي. يمكنك التبديل إلى أمر مباشر أو تنزيل نسخة محلية.

مراجعة ملفات المصدر

اقرأ SKILL.md وأي ملفات مرافقة يعرضها SkillsMP قبل أن تقرر التثبيت.

مستكشف الملفات
3 ملفات

عرض SKILL.md

SKILL.md
تعليمات المصدر · معاينة للقراءة فقط
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. ## Generate all reports ```bash 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 types - **perf_*.json** — Agent performance: success rates, call counts, task type distribution - **workflow_*.json** — Workflow analytics: per-workflow runs, success rates, avg iterations - **health_*.json** — System health: Python version, disk, memory, dependencies - **config_*.json** — Config audit: agent availability, workflow structure, settings - **dashboard_*.html** — Interactive HTML dashboard with Chart.js (4 charts + KPI cards) ## After generating Report which files were created and their sizes. Mention the HTML dashboard can be opened in a browser.
عرض على GitHub