| name | weekly-review |
| description | Aggregate the week's system data into a structured review. Auto-run when: it is Sunday evening or Monday morning and session-context shows no review this week, or user asks for a weekly summary. Invoke proactively without asking. |
Weekly System Review
Aggregate data from the past 7 days:
- Audit trail:
cat ~/.cache/axiom-audit/*.jsonl 2>/dev/null | wc -l total edits, grep -c '"blocked":true' ~/.cache/axiom-audit/*.jsonl 2>/dev/null || echo 0 blocked
- Health history:
cd ~/projects/hapax-council && uv run python -m agents.health_monitor --history
- Drift report (if recent):
cat ~/projects/hapax-council/profiles/drift-report.json 2>/dev/null | jq '.drift_items | length'
- Scout report (if recent):
cat ~/projects/hapax-council/profiles/scout-report.json 2>/dev/null | jq '.evaluations | length'
- Briefing (latest):
head -30 ~/projects/hapax-council/profiles/briefing.md
- Timer status:
systemctl --user list-timers --no-pager
Synthesize into a 5-line summary: overall health, notable incidents, drift status, axiom compliance, recommended actions for the coming week.