what-shipped
Installation
SKILL.md
What Shipped
Create a plain-language shipping summary from live repo truth. Do not rely on memory alone when git, GitHub, deploy, or tracker state can be checked.
Workflow
-
Establish scope.
- Use the user's requested window exactly when provided: today, yesterday, this week, since last update, last N PRs, a release branch, or a commit range.
- For relative dates, use the current local date/time and state the exact date range if the answer could be ambiguous.
- If the user says "today" after midnight and recent work crossed midnight, inspect both local
git log --sinceand merged PR timestamps so the summary reflects the practical working window.
-
Verify repository state.
- Run
git status --short --branchto avoid confusing dirty local work with shipped work. - Identify the default branch from
gh repo view --json defaultBranchRefor recentorigin/HEAD. - Refresh the default branch with
git fetch origin <branch>when safe.
- Run