weekly-report
The weekly-report skill generates a comprehensive productivity analysis from Agent Monitor session data, comparing current and previous week metrics across sessions, hours, tokens, costs, and completion rates. Users invoke it with optional arguments specifying "this week," "last week," or a custom date range, triggering API calls to fetch sessions, analytics, and pricing data that populate structured tables, daily breakdowns, tool usage reports, and actionable recommendations for workflow optimization.
git clone --depth 1 https://github.com/hoangsonww/Claude-Code-Agent-Monitor /tmp/weekly-report && cp -r /tmp/weekly-report/plugins/ccam-productivity/skills/weekly-report ~/.claude/skills/weekly-reportSKILL.md
# Weekly Report Generate a comprehensive weekly productivity report from Agent Monitor data. ## Input The user provides: **$ARGUMENTS** This may be: - "this week" or empty (default: current week Mon-Sun) - "last week" for the previous week - A date range: "2025-04-07 to 2025-04-13" ## Procedure 1. **Fetch weekly data** from `http://localhost:4820`: - `GET /api/sessions?limit=200` — filter to target week (default sort: most recently updated first) - `GET /api/analytics` — aggregated analytics - `GET /api/pricing/cost` — cost data 2. **Build the weekly report**: ### 📊 Week at a Glance | Metric | This Week | Last Week | Change | |--------|-----------|-----------|--------| | Sessions | N | N | ↑/↓ N% | | Total Hours | N | N | ↑/↓ N% | | Tokens Used | N | N | ↑/↓ N% | | Total Cost | $X.XX | $X.XX | ↑/↓ N% | | Completion Rate | N% | N% | ↑/↓ | ### 🏆 Highlights - Most productive day (by sessions completed) - Longest session and what it accomplished - Most used tools and any new tools adopted - Notable achievements (complex tasks completed, errors resolved) ### 📈 Daily Breakdown | Day | Sessions | Hours | Cost | Completion | |-----|----------|-------|------|------------| For each day of the week with activity. ### 🔧 Tool Usage Report - Top 10 tools by invocation count - Tools with highest error rate - Tool usage distribution chart (text-based) ### 💡 Productivity Insights - Peak productivity hours - Average session duration and trend - Cost efficiency trend - Model usage distribution ### 🎯 Recommendations for Next Week - Based on error patterns: what to improve - Based on cost trends: optimization opportunities - Based on tool usage: workflow suggestions ## Output Format Professional report format with: - Executive summary (3 sentences max) - Structured tables with week-over-week comparisons - Emoji-prefixed section headers for scannability - Actionable recommendations in priority order
Operate and maintain the local MCP server for this repository. Use for MCP tool updates, policy-guard changes, host configuration, and MCP runtime troubleshooting.
Run release-readiness checks for this repository. Use when validating docs, scripts, verification coverage, and operational safety before merge or release.
Understand this repository quickly before making changes. Use for architecture discovery, ownership mapping, command selection, and initial implementation planning.
Review backend route and hook logic for regressions, data integrity risks, and missing tests.
Review React UI changes for behavior regressions, state consistency, and UX breakage.
Review MCP server changes for tool safety, schema quality, and host integration correctness.
Debug production-like issues in this repository with disciplined evidence gathering. Use when fixing failing workflows, regressions, flaky behavior, or data inconsistencies across hooks, API, DB, websocket, and UI.
Operate and maintain the local MCP server for this project. Use when creating MCP host config, troubleshooting tool connectivity, modifying tool domains, or adjusting safety policy flags.