Generate daily codebase activity summary from Azure DevOps, git, and optionally Confluence
Generates daily 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 summary of today's (or specified date's) codebase activity.
$ARGUMENTS - Optional date in YYYY-MM-DD format (defaults to today)Run collectors to gather fresh data:
DATE="${ARGUMENTS:-$(date +%Y-%m-%d)}"
# Collect from all sources
node $PLUGIN_DIR/collectors/azure-prs.js --days 1
node $PLUGIN_DIR/collectors/azure-workitems.js --days 1
node $PLUGIN_DIR/collectors/git-commits.js --days 1
Filter each data source for the target date:
node $PLUGIN_DIR/collectors/filter-by-date.js .insights/raw/prs.json --day $DATE > /tmp/prs.json
node $PLUGIN_DIR/collectors/filter-by-date.js .insights/raw/workitems.json --day $DATE > /tmp/workitems.json
node $PLUGIN_DIR/collectors/filter-by-date.js .insights/raw/commits.json --day $DATE > /tmp/commits.json
If Atlassian MCP tools are available, search for related documentation changes:
mcp__plugin_triage_atlassian__search to find recently modified pagesSkip silently if MCP tools are not configured.
Read the template from $PLUGIN_DIR/skills/insights/templates/daily-summary.md.
Combine all data sources and generate a comprehensive daily summary.
Save the report to .insights/$DATE-insights.md.
Remove temporary filtered files after the report is saved:
rm -f /tmp/prs.json /tmp/workitems.json /tmp/commits.json
Report includes: