원클릭으로
standup
Generate a daily standup report from git history and GitHub activity
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate a daily standup report from git history and GitHub activity
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.