infinite-agents-public/.claude/commands/sync.md

810 B

Agent Synchronization Report

Instructions

Run these commands IN PARALLEL to gather sync data:

Recent Activity (Last Hour)

  1. Recent commits with details:

    git log --since="1 hour ago" --pretty=format:"%h|%ar|%an|%s" --stat
    
  2. If no recent commits, show last 3:

    git log -3 --pretty=format:"%h|%ar|%an|%s" --stat
    
  3. Current branch and status:

    git branch --show-current && echo "---" && git status --short
    

Development Velocity

  1. Commits this week:

    git log --since="1 week ago" --oneline | wc -l
    
  2. Commits today:

    git log --since="midnight" --oneline | wc -l
    
  3. Files changed today:

    git log --since="midnight" --numstat --pretty="" | wc -l