- Current branch: !`git branch --show-current`
Generates git commit summaries for standups, reports, or PRs based on specified scope.
/plugin marketplace add CloudAI-X/claude-workflow/plugin install project-starter@claude-workflowgit branch --show-currentgit remote show origin 2>/dev/null | grep 'HEAD branch' | cut -d' ' -f5 || echo "main"git log --oneline --since="midnight" --author="$(git config user.email)" 2>/dev/null || echo "No commits today"git log --oneline --since="1 week ago" --author="$(git config user.email)" 2>/dev/null | head -20 || echo "No commits this week"git log --oneline $(git remote show origin 2>/dev/null | grep 'HEAD branch' | cut -d' ' -f5 || echo "main")..HEAD 2>/dev/null | head -20 || echo "No branch commits"git diff --stat $(git merge-base HEAD origin/$(git remote show origin 2>/dev/null | grep 'HEAD branch' | cut -d' ' -f5 || echo "main"))..HEAD 2>/dev/null | tail -5 || echo "No changes"Generate a clear, concise summary based on the scope:
Format the output as:
Scope: $ARGUMENTS