File size: 26,453 Bytes
47091a0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 | #!/usr/bin/env python3
"""
kpi_dashboard.py -- Skill-quality KPI report generator.
Phase 4 of the skill-quality plan. Reads the persistence sinks the
scorer and lifecycle already write and emits a single Markdown digest
the user can commit, share, or watch in a file viewer:
- ``~/.claude/skill-quality/<slug>.json`` (quality scores)
- ``~/.claude/skill-quality/<slug>.lifecycle.json`` (lifecycle tier)
- ``<skills_dir>/<slug>/SKILL.md`` (category frontmatter)
- ``<agents_dir>/<slug>.md`` (category frontmatter)
Design notes:
- Pure read-only. Never mutates sidecars or skill files.
- All aggregation happens in pure functions returning dataclasses so
the CLI output, JSON output, and tests see the same shape.
- Missing category falls back to ``skill_category.infer_category`` on
the skill's tags — keeps the report useful before backfill has run.
- Archive candidates still appear in the report even when their
quality sidecar was removed, because the lifecycle sidecar is the
authoritative record for non-active tiers.
"""
from __future__ import annotations
import argparse
import concurrent.futures
import json
import logging
import sys
from dataclasses import dataclass, field
from datetime import datetime, timezone
from pathlib import Path
from typing import Any, Iterable
from ctx_lifecycle import (
LifecycleState,
LifecycleSources,
STATE_ACTIVE,
STATE_ARCHIVE,
STATE_DEMOTE,
STATE_WATCH,
)
from skill_category import CATEGORIES, infer_category, read_existing_category
from skill_quality import QualityScore
from ctx.core.wiki.wiki_utils import parse_frontmatter_and_body
_logger = logging.getLogger(__name__)
_GRADES: tuple[str, ...] = ("A", "B", "C", "D", "F")
_UNCATEGORIZED = "uncategorized"
_LIFECYCLE_STATES: tuple[str, ...] = (
STATE_ACTIVE, STATE_WATCH, STATE_DEMOTE, STATE_ARCHIVE,
)
_PARALLEL_QUALITY_READ_THRESHOLD = 512
_QUALITY_READ_WORKERS = 8
# ────────────────────────────────────────────────────────────────────
# Aggregation types
# ────────────────────────────────────────────────────────────────────
@dataclass(frozen=True)
class EntityRow:
"""One slug's dashboard-relevant facts, joined across sinks."""
slug: str
subject_type: str # "skill" | "agent"
category: str # always a concrete string (never None)
grade: str # "A"/"B"/"C"/"D"/"F" or "" if no score
score: float # 0..1; 0.0 if no score
hard_floor: str | None
lifecycle_state: str # one of _LIFECYCLE_STATES
consecutive_d_count: int
computed_at: str # ISO-8601 or ""
@dataclass(frozen=True)
class DashboardSummary:
"""The full aggregation — serializable to JSON, renderable to Markdown."""
generated_at: str
total: int
by_subject: dict[str, int] = field(default_factory=dict)
grade_counts: dict[str, int] = field(default_factory=dict)
lifecycle_counts: dict[str, int] = field(default_factory=dict)
category_breakdown: list[dict[str, Any]] = field(default_factory=list)
hard_floor_counts: dict[str, int] = field(default_factory=dict)
low_quality_candidates: list[dict[str, Any]] = field(default_factory=list)
archived: list[dict[str, Any]] = field(default_factory=list)
def to_dict(self) -> dict[str, Any]:
return {
"generated_at": self.generated_at,
"total": self.total,
"by_subject": dict(self.by_subject),
"grade_counts": dict(self.grade_counts),
"lifecycle_counts": dict(self.lifecycle_counts),
"category_breakdown": [dict(c) for c in self.category_breakdown],
"hard_floor_counts": dict(self.hard_floor_counts),
"low_quality_candidates": [dict(c) for c in self.low_quality_candidates],
"archived": [dict(a) for a in self.archived],
}
# ────────────────────────────────────────────────────────────────────
# Category resolution
# ────────────────────────────────────────────────────────────────────
def _skill_source_path(
slug: str,
sources: LifecycleSources,
*,
subject_type: str | None = None,
) -> Path | None:
if subject_type in (None, "skill"):
skill_path = sources.skills_dir / slug / "SKILL.md"
if skill_path.is_file():
return skill_path
if subject_type in (None, "agent"):
agent_path = sources.agents_dir / f"{slug}.md"
if agent_path.is_file():
return agent_path
return None
def _resolve_category(
slug: str,
sources: LifecycleSources,
*,
subject_type: str | None = None,
) -> str:
"""Read existing category, else infer from tags, else uncategorized."""
if subject_type not in (None, "skill", "agent"):
return _UNCATEGORIZED
path = _skill_source_path(slug, sources, subject_type=subject_type)
if path is None:
return _UNCATEGORIZED
try:
raw = path.read_text(encoding="utf-8", errors="replace")
except OSError:
return _UNCATEGORIZED
existing = read_existing_category(raw)
if existing in CATEGORIES:
return existing
fm, _ = parse_frontmatter_and_body(raw)
tags_raw = fm.get("tags", []) if isinstance(fm, dict) else []
if isinstance(tags_raw, list):
tags: Iterable[str] = [t for t in tags_raw if isinstance(t, str)]
elif isinstance(tags_raw, str):
tags = [p.strip() for p in tags_raw.split(",") if p.strip()]
else:
tags = []
inferred = infer_category(tags)
return inferred or _UNCATEGORIZED
# ────────────────────────────────────────────────────────────────────
# Row building
# ────────────────────────────────────────────────────────────────────
def _iter_quality_slugs(sidecar_dir: Path) -> list[str]:
if not sidecar_dir.is_dir():
return []
out: list[str] = []
for path in sorted(sidecar_dir.glob("*.json")):
name = path.name
if name.endswith(".lifecycle.json"):
continue
# Skip internal state files (dotfiles like .hook-state.json) —
# they share the sidecar directory but are not entity slugs and
# fail the strict slug validator downstream.
if name.startswith("."):
continue
out.append(path.stem)
return out
def _quality_sources(sidecar_dir: Path) -> list[tuple[str, Path, Path]]:
out: list[tuple[str, Path, Path]] = [
(slug, sidecar_dir, sidecar_dir / f"{slug}.json")
for slug in _iter_quality_slugs(sidecar_dir)
]
mcp_dir = sidecar_dir / "mcp"
if mcp_dir.is_dir():
for slug in _iter_quality_slugs(mcp_dir):
out.append((slug, mcp_dir, mcp_dir / f"{slug}.json"))
return out
def _read_quality_file(
path: Path,
*,
subject_type_override: str | None = None,
) -> QualityScore | None:
data = json.loads(path.read_text(encoding="utf-8"))
if not isinstance(data, dict):
raise ValueError(f"quality sidecar must be a JSON object: {path}")
subject_type = subject_type_override or str(data.get("subject_type") or "skill")
return QualityScore(
slug=str(data["slug"]),
subject_type=subject_type,
raw_score=float(data.get("raw_score", 0.0)),
score=float(data.get("score", 0.0)),
grade=str(data.get("grade") or "D"),
hard_floor=data.get("hard_floor"),
signals={},
weights={},
computed_at=str(data.get("computed_at") or ""),
)
def _iter_lifecycle_slugs(sidecar_dir: Path) -> list[str]:
if not sidecar_dir.is_dir():
return []
suffix = ".lifecycle.json"
return sorted(p.name[: -len(suffix)] for p in sidecar_dir.glob(f"*{suffix}"))
def _read_lifecycle_file(path: Path) -> LifecycleState | None:
try:
data = json.loads(path.read_text(encoding="utf-8"))
except (json.JSONDecodeError, OSError):
return None
if not isinstance(data, dict):
return None
history_raw = data.get("history", [])
history = tuple(
dict(e) for e in history_raw if isinstance(e, dict)
)
try:
streak = int(data.get("consecutive_d_count", 0))
except (TypeError, ValueError):
streak = 0
return LifecycleState(
slug=str(data.get("slug") or path.name.removesuffix(".lifecycle.json")),
subject_type=str(data.get("subject_type") or "skill"),
state=str(data.get("state") or STATE_ACTIVE),
state_since=str(data.get("state_since") or ""),
consecutive_d_count=streak,
last_grade=str(data.get("last_grade") or ""),
last_seen_computed_at=str(data.get("last_seen_computed_at") or ""),
history=history,
)
def _load_lifecycle_states(sidecar_dir: Path) -> dict[str, LifecycleState]:
if not sidecar_dir.is_dir():
return {}
states: dict[str, LifecycleState] = {}
for path in sorted(sidecar_dir.glob("*.lifecycle.json")):
state = _read_lifecycle_file(path)
if state is not None:
states[state.slug] = state
return states
def _build_row(
slug: str,
*,
score: QualityScore | None,
lifecycle_subject_type: str | None = None,
lifecycle_state: str,
consecutive_d_count: int,
sources: LifecycleSources,
) -> EntityRow:
subject = (
score.subject_type
if score is not None
else lifecycle_subject_type or _guess_subject(slug, sources)
)
return EntityRow(
slug=slug,
subject_type=subject,
category=_resolve_category(slug, sources, subject_type=subject),
grade=(score.grade if score is not None else ""),
score=(score.score if score is not None else 0.0),
hard_floor=(score.hard_floor if score is not None else None),
lifecycle_state=lifecycle_state,
consecutive_d_count=consecutive_d_count,
computed_at=(score.computed_at if score is not None else ""),
)
def _guess_subject(slug: str, sources: LifecycleSources) -> str:
"""Used only when no quality sidecar exists (archived-and-cleared case)."""
if (sources.skills_dir / slug / "SKILL.md").is_file():
return "skill"
if (sources.agents_dir / f"{slug}.md").is_file():
return "agent"
return "skill"
def collect_rows(
*, sources: LifecycleSources,
) -> list[EntityRow]:
"""Walk both sinks and return one row per known slug (union)."""
lifecycle_cache: dict[Path, dict[str, LifecycleState]] = {}
def lifecycle_states(sidecar_dir: Path) -> dict[str, LifecycleState]:
if sidecar_dir not in lifecycle_cache:
lifecycle_cache[sidecar_dir] = _load_lifecycle_states(sidecar_dir)
return lifecycle_cache[sidecar_dir]
def load_quality_source(
source: tuple[str, Path, Path],
) -> tuple[str, Path, QualityScore | None]:
slug, sidecar_dir, sidecar_path = source
try:
score = _read_quality_file(
sidecar_path,
subject_type_override=(
"mcp-server" if sidecar_dir.name == "mcp" else None
),
)
except (json.JSONDecodeError, ValueError, OSError, KeyError, TypeError) as exc:
_logger.warning("kpi_dashboard: skipping %s: %s", slug, exc)
score = None
return slug, sidecar_dir, score
quality_sources = _quality_sources(sources.sidecar_dir)
if len(quality_sources) >= _PARALLEL_QUALITY_READ_THRESHOLD:
with concurrent.futures.ThreadPoolExecutor(
max_workers=_QUALITY_READ_WORKERS,
) as pool:
quality_results = list(pool.map(load_quality_source, quality_sources))
else:
quality_results = [load_quality_source(source) for source in quality_sources]
quality_rows: list[tuple[str, Path, QualityScore | None, LifecycleState | None]] = []
quality_subjects: set[tuple[str, str]] = set()
for slug, sidecar_dir, score in quality_results:
if score is not None:
quality_subjects.add((slug, score.subject_type))
quality_rows.append((slug, sidecar_dir, score, None))
lifecycle_rows: list[tuple[str, Path, QualityScore | None, LifecycleState | None]] = []
for lifecycle_slug, lifecycle_state in lifecycle_states(sources.sidecar_dir).items():
if (lifecycle_slug, lifecycle_state.subject_type) not in quality_subjects:
lifecycle_rows.append(
(lifecycle_slug, sources.sidecar_dir, None, lifecycle_state)
)
row_sources = sorted(
quality_rows + lifecycle_rows,
key=lambda item: (item[0], str(item[1]), item[3].subject_type if item[3] else ""),
)
rows: list[EntityRow] = []
for slug, sidecar_dir, score, lifecycle_override in row_sources:
lc = lifecycle_override
if lc is None and score is not None:
candidates = [sidecar_dir]
if sidecar_dir != sources.sidecar_dir:
candidates.append(sources.sidecar_dir)
for candidate_dir in candidates:
candidate = lifecycle_states(candidate_dir).get(slug)
if candidate is not None and candidate.subject_type == score.subject_type:
lc = candidate
break
elif lc is None:
lc = lifecycle_states(sidecar_dir).get(slug)
if lc is not None:
state = lc.state
streak = lc.consecutive_d_count
lifecycle_subject_type = lc.subject_type
else:
state = STATE_ACTIVE
streak = 0
lifecycle_subject_type = None
rows.append(
_build_row(
slug,
score=score,
lifecycle_subject_type=lifecycle_subject_type,
lifecycle_state=state,
consecutive_d_count=streak,
sources=sources,
)
)
return rows
# ────────────────────────────────────────────────────────────────────
# Aggregation
# ────────────────────────────────────────────────────────────────────
def _grade_key(grade: str) -> str:
"""Normalize blank grades to 'F' for counting — no score ≈ worst signal."""
return grade if grade in _GRADES else "F"
def aggregate(
rows: list[EntityRow], *, now: datetime | None = None, top_n: int = 10,
) -> DashboardSummary:
now = now or datetime.now(timezone.utc)
by_subject: dict[str, int] = {}
grade_counts: dict[str, int] = {g: 0 for g in _GRADES}
lifecycle_counts: dict[str, int] = {s: 0 for s in _LIFECYCLE_STATES}
hard_floor_counts: dict[str, int] = {}
category_buckets: dict[str, list[EntityRow]] = {c: [] for c in CATEGORIES}
category_buckets[_UNCATEGORIZED] = []
for r in rows:
by_subject[r.subject_type] = by_subject.get(r.subject_type, 0) + 1
grade_counts[_grade_key(r.grade)] += 1
lifecycle_counts[r.lifecycle_state] = (
lifecycle_counts.get(r.lifecycle_state, 0) + 1
)
if r.hard_floor:
hard_floor_counts[r.hard_floor] = (
hard_floor_counts.get(r.hard_floor, 0) + 1
)
bucket = r.category if r.category in category_buckets else _UNCATEGORIZED
category_buckets[bucket].append(r)
category_breakdown: list[dict[str, Any]] = []
for cat, cat_bucket in category_buckets.items():
if not cat_bucket:
continue
scored = [r for r in cat_bucket if r.grade in _GRADES]
avg_score = (
sum(r.score for r in scored) / len(scored) if scored else 0.0
)
mix = {g: 0 for g in _GRADES}
for r in cat_bucket:
mix[_grade_key(r.grade)] += 1
category_breakdown.append(
{
"category": cat,
"count": len(cat_bucket),
"avg_score": round(avg_score, 4),
"grade_mix": mix,
}
)
# Canonical order: taxonomy first, then uncategorized.
_rank = {c: i for i, c in enumerate(CATEGORIES)}
_rank[_UNCATEGORIZED] = len(CATEGORIES)
category_breakdown.sort(key=lambda c: _rank.get(c["category"], 999))
# Low-quality candidates: D/F grade, sorted by (streak desc, score asc).
candidates = [
r for r in rows
if _grade_key(r.grade) in ("D", "F")
and r.lifecycle_state in (STATE_ACTIVE, STATE_WATCH)
]
candidates.sort(key=lambda r: (-r.consecutive_d_count, r.score))
low_quality = [
{
"slug": r.slug,
"subject_type": r.subject_type,
"category": r.category,
"grade": r.grade or "F",
"score": round(r.score, 4),
"lifecycle_state": r.lifecycle_state,
"consecutive_d_count": r.consecutive_d_count,
"hard_floor": r.hard_floor,
}
for r in candidates[: max(0, top_n)]
]
archived = [
{
"slug": r.slug,
"subject_type": r.subject_type,
"category": r.category,
"last_grade": r.grade or "",
"computed_at": r.computed_at,
}
for r in rows if r.lifecycle_state == STATE_ARCHIVE
]
return DashboardSummary(
generated_at=now.isoformat(timespec="seconds"),
total=len(rows),
by_subject=by_subject,
grade_counts=grade_counts,
lifecycle_counts=lifecycle_counts,
category_breakdown=category_breakdown,
hard_floor_counts=hard_floor_counts,
low_quality_candidates=low_quality,
archived=archived,
)
# ────────────────────────────────────────────────────────────────────
# Markdown rendering
# ────────────────────────────────────────────────────────────────────
def _pct(n: int, total: int) -> str:
if total <= 0:
return "—"
return f"{(100.0 * n / total):.1f}%"
def _render_grade_row(grade: str, count: int, total: int) -> str:
return f"| {grade} | {count} | {_pct(count, total)} |"
def render_markdown(summary: DashboardSummary) -> str:
"""Render a Markdown digest — one file, commit-friendly."""
out: list[str] = []
out.append("# Skill Quality KPI Dashboard")
out.append("")
out.append(f"_Generated: {summary.generated_at}_")
out.append("")
out.append(f"**Total entities:** {summary.total}")
if summary.by_subject:
parts = [
f"{subject}: {count}"
for subject, count in sorted(summary.by_subject.items())
]
out.append(f"**By subject:** {' · '.join(parts)}")
out.append("")
# Grade distribution
out.append("## Grade distribution")
out.append("")
out.append("| Grade | Count | Share |")
out.append("| ----- | ----: | ----: |")
for g in _GRADES:
out.append(_render_grade_row(g, summary.grade_counts.get(g, 0), summary.total))
out.append("")
# Lifecycle
out.append("## Lifecycle tiers")
out.append("")
out.append("| State | Count |")
out.append("| ----- | ----: |")
for s in _LIFECYCLE_STATES:
out.append(f"| {s} | {summary.lifecycle_counts.get(s, 0)} |")
out.append("")
# Hard floors
if summary.hard_floor_counts:
out.append("## Hard floors active")
out.append("")
out.append("| Reason | Count |")
out.append("| ------ | ----: |")
for reason, count in sorted(
summary.hard_floor_counts.items(), key=lambda kv: (-kv[1], kv[0]),
):
out.append(f"| {reason} | {count} |")
out.append("")
# Category breakdown
out.append("## By category")
out.append("")
out.append("| Category | Count | Avg score | A | B | C | D | F |")
out.append("| -------- | ----: | --------: | -: | -: | -: | -: | -: |")
for entry in summary.category_breakdown:
mix = entry["grade_mix"]
out.append(
"| {cat} | {count} | {avg:.3f} | {a} | {b} | {c} | {d} | {f} |".format(
cat=entry["category"],
count=entry["count"],
avg=entry["avg_score"],
a=mix.get("A", 0), b=mix.get("B", 0), c=mix.get("C", 0),
d=mix.get("D", 0), f=mix.get("F", 0),
)
)
out.append("")
# Low-quality candidates
out.append("## Top demotion candidates")
out.append("")
if not summary.low_quality_candidates:
out.append("_No active D/F-grade entries — corpus is healthy._")
else:
out.append(
"| Slug | Subject | Category | Grade | Score | State | D-streak | Hard floor |"
)
out.append(
"| ---- | ------- | -------- | :---: | ----: | ----- | -------: | ---------- |"
)
for c in summary.low_quality_candidates:
out.append(
"| {slug} | {subj} | {cat} | {grade} | {score:.3f} | {state} | {streak} | {floor} |".format(
slug=c["slug"],
subj=c["subject_type"],
cat=c["category"],
grade=c["grade"],
score=c["score"],
state=c["lifecycle_state"],
streak=c["consecutive_d_count"],
floor=c.get("hard_floor") or "—",
)
)
out.append("")
# Archived
out.append("## Archived (restorable)")
out.append("")
if not summary.archived:
out.append("_None._")
else:
out.append("| Slug | Subject | Category | Last grade | Computed at |")
out.append("| ---- | ------- | -------- | :--------: | ----------- |")
for a in summary.archived:
out.append(
"| {slug} | {subj} | {cat} | {grade} | {at} |".format(
slug=a["slug"],
subj=a["subject_type"],
cat=a["category"],
grade=a["last_grade"] or "—",
at=a["computed_at"] or "—",
)
)
out.append("")
return "\n".join(out) + "\n"
# ────────────────────────────────────────────────────────────────────
# CLI
# ────────────────────────────────────────────────────────────────────
def _build_sources_from_config() -> LifecycleSources:
from ctx_config import cfg
from skill_quality import default_sidecar_dir
return LifecycleSources(
skills_dir=cfg.skills_dir,
agents_dir=cfg.agents_dir,
sidecar_dir=default_sidecar_dir(),
)
def generate(
*, sources: LifecycleSources, top_n: int = 10, now: datetime | None = None,
) -> DashboardSummary:
rows = collect_rows(sources=sources)
return aggregate(rows, now=now, top_n=top_n)
def cmd_render(args: argparse.Namespace) -> int:
sources = _build_sources_from_config()
summary = generate(sources=sources, top_n=args.limit)
if args.json:
payload = json.dumps(summary.to_dict(), indent=2, sort_keys=True)
if args.out:
Path(args.out).write_text(payload, encoding="utf-8")
else:
print(payload)
return 0
md = render_markdown(summary)
if args.out:
Path(args.out).write_text(md, encoding="utf-8")
print(f"Wrote {args.out}")
else:
print(md)
return 0
def cmd_summary(args: argparse.Namespace) -> int:
sources = _build_sources_from_config()
summary = generate(sources=sources, top_n=0)
print(f"Total: {summary.total}")
for g in _GRADES:
print(f" {g}: {summary.grade_counts.get(g, 0)}")
print("Lifecycle:")
for s in _LIFECYCLE_STATES:
print(f" {s}: {summary.lifecycle_counts.get(s, 0)}")
return 0
def build_argparser() -> argparse.ArgumentParser:
p = argparse.ArgumentParser(
prog="kpi_dashboard",
description="Render the skill-quality KPI dashboard.",
)
sub = p.add_subparsers(dest="cmd", required=True)
r = sub.add_parser("render", help="Render Markdown or JSON dashboard")
r.add_argument("--out", help="Write to this path instead of stdout")
r.add_argument("--json", action="store_true", help="Emit JSON instead of Markdown")
r.add_argument("--limit", type=int, default=10,
help="Max rows in the demotion-candidates section")
r.set_defaults(func=cmd_render)
s = sub.add_parser("summary", help="Print a terse one-screen summary")
s.set_defaults(func=cmd_summary)
return p
def main(argv: list[str] | None = None) -> int:
parser = build_argparser()
args = parser.parse_args(argv)
return int(args.func(args))
if __name__ == "__main__":
sys.exit(main())
__all__ = [
"DashboardSummary",
"EntityRow",
"aggregate",
"collect_rows",
"generate",
"main",
"render_markdown",
]
|