with one click
standup
Generate a daily standup report from git history and GitHub activity
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Generate a daily standup report from git history and GitHub activity
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Open a PR for the current feature branch — validate, self-review, simplify, organize commits, push, create the PR, wait for CI and review, then address feedback. Use when implementation is complete and ready for review.
Respond to PR review comments systematically in thread context
Review and address PR feedback using 6-dimensional code review
Add a field to NULLABLE_FIELDS in scripts/regenerate_client.py and regenerate the client. Use when a TypeError appears in logs or tests because a generated model expected a non-null value but the StockTrim API returned null.
Regenerate the StockTrim OpenAPI client from the live spec, run quality checks, and commit the result. Use when the StockTrim API spec changes, a new endpoint is added, or NULLABLE_FIELDS in scripts/regenerate_client.py is updated.
Add a new MCP tool to stocktrim_mcp_server, including the tool function, service layer, and test. Use when exposing an existing helper to AI clients via the Model Context Protocol.
| name | standup |
| description | Generate a daily standup report from git history and GitHub activity |
| allowed-tools | Bash(git log*), Bash(git config*), Bash(gh pr*), Bash(gh issue*), Read |
Generate a standup report summarizing what changed since yesterday.
Create a daily standup summary: yesterday's work, today's plans, blockers.
gh) is installed and authenticatedgit log --since="1 day ago" --oneline --author="$(git config user.email)"
gh pr list --author="@me" --state=open
gh issue list --assignee="@me" --state=open
## Standup — [Date]
### Yesterday
- [type]: [one-liner per commit/PR]
### Today
- [planned task from open issues/PRs]
### Blockers
- [none | what's blocking]
Present the report. Infer "Today" from open PRs and issues.