From me
Generate a daily standup summary from git activity. On-demand only — triggers when the user types `/me:standup`, asks for a standup, or says "what did I do yesterday". Reads git log for the user's commits over a window (default: last 24h on current branch's repo) and produces a 3-bullet Slack-style summary — Yesterday / Today / Blockers. Supports `--all` to scan multiple repos under `~/repos/`.
How this skill is triggered — by the user, by Claude, or both
Slash command
/me:standupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Daily standup generator. Reads git for what the user actually did, writes a short Slack-style summary.
Daily standup generator. Reads git for what the user actually did, writes a short Slack-style summary.
/me:standup # current repo, last 24h (skip weekends)
/me:standup --since "2 days ago" # custom window
/me:standup --all # scan every git repo under ~/repos/
/me:standup --repos <path> # scan every git repo under <path>
git config user.email in the target repo. If unset, ask the user once and stop (don't guess).--since="1 day ago". On Mondays, widen to --since="3 days ago" automatically so Friday's work is included.--all: every directory under ~/repos/ that contains a .git folder. Skip directories where the user has no commits in the window.--repos <path>: same as --all but rooted at <path>.git log --author="<email>" --since="<window>" --all --no-merges \
--pretty=format:"%h|%ad|%s" --date=short --name-only
git status --porcelain and git diff --stat to surface in-progress items for the "Today" section.*Standup — <YYYY-MM-DD>*
*Yesterday*
• <repo>: <what you did, 1 line>
• <repo>: <what you did, 1 line>
*Today*
• <in-progress bullet from uncommitted work, or ask user>
*Blockers*
• <none / ask user>
Rules for bullets:
git status, git diff --stat). If nothing is in progress, ask the user in one sentence: "What are you working on today?" and wait.<repo>: prefix.--all: stop, say "not in a git repo — try /me:standup --all to scan ~/repos/".~/repos/ dir: if --all is used and ~/repos/ doesn't exist, ask where the user keeps their repos.--no-merges is on; fine.--author + --since are authoritative. Don't try to reconstruct pre-rebase history.npx claudepluginhub panospro/protops-skills --plugin ship-readyCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.