Generate weekly codebase activity summary from Azure DevOps, git, and optionally Confluence
Generates weekly codebase activity summaries from Azure DevOps, Git, and Confluence data.
/plugin marketplace add lttr/claude-marketplace/plugin install dev-flow@lttr-claude-marketplacedf/insights/Generate a comprehensive summary of the week's codebase activity.
$ARGUMENTS - Optional date within target week (defaults to current week)Run collectors to gather the week's data:
DATE="${ARGUMENTS:-$(date +%Y-%m-%d)}"
# Collect 7 days of data
node $PLUGIN_DIR/collectors/azure-prs.js --days 7
node $PLUGIN_DIR/collectors/azure-workitems.js --days 7
node $PLUGIN_DIR/collectors/git-commits.js --days 7
Filter each data source for the target week (Mon-Sun):
node $PLUGIN_DIR/collectors/filter-by-date.js .insights/raw/prs.json --week $DATE > /tmp/prs.json
node $PLUGIN_DIR/collectors/filter-by-date.js .insights/raw/workitems.json --week $DATE > /tmp/workitems.json
node $PLUGIN_DIR/collectors/filter-by-date.js .insights/raw/commits.json --week $DATE > /tmp/commits.json
The filter outputs the ISO week (e.g., 2025-W02) to stderr for naming.
If Atlassian MCP tools are available:
Skip silently if MCP tools are not configured.
Read the template from $PLUGIN_DIR/skills/insights/templates/weekly-summary.md.
Generate a comprehensive weekly summary covering:
Save the report to .insights/YYYY-WXX-insights.md (ISO week format).
Remove temporary filtered files after the report is saved:
rm -f /tmp/prs.json /tmp/workitems.json /tmp/commits.json
Report includes: