بنقرة واحدة
standup
Summarize your recent GitHub activity (PRs, reviews, issues) for standup reporting.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Summarize your recent GitHub activity (PRs, reviews, issues) for standup reporting.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Publish agent research as a durable Markdown vault entry, optionally with a GitHub Gist share artifact.
Iteratively ask clarifying questions to enrich the current Plan before review.
Create, switch, list, and delete git worktrees with `git wt` (the git-wt CLI). Use when working on multiple branches in parallel, isolating an experiment in its own checkout, or whenever the user mentions worktrees or `git wt`.
Extract technical learnings from the session and save them to the learn repository.
Iteratively refine the current Plan by applying Codex review feedback until Codex has no more issues to raise.
Review the current plan by auto-selecting appropriate reviewer agents based on project characteristics.
| name | standup |
| description | Summarize your recent GitHub activity (PRs, reviews, issues) for standup reporting. |
| allowed-tools | Bash(gh *), AskUserQuestion |
Summarize your recent GitHub activity to help prepare for standup meetings.
Use AskUserQuestion to ask the user:
What time range should I cover? (default: yesterday)
Examples: "yesterday", "last 3 days", "this week", "2026-03-18..2026-03-20"
If the user accepts the default or says something like "yesterday" / "default", use yesterday's date range. Otherwise, parse the user's input into a date range.
Compute the --since ISO 8601 date string (e.g. 2026-03-21T00:00:00) accordingly.
Run the following gh commands in parallel to collect activity. Replace SINCE with the computed date and USERNAME with the output of gh api user -q .login.
PRs authored:
gh search prs --author=USERNAME --created=">SINCE" --json repository,title,url,state,createdAt,closedAt --limit 50
PRs reviewed:
gh search prs --reviewed-by=USERNAME --updated=">SINCE" --json repository,title,url,state,createdAt --limit 50
Issues authored or assigned:
gh search issues --author=USERNAME --created=">SINCE" --json repository,title,url,state,createdAt --limit 50
gh search issues --assignee=USERNAME --updated=">SINCE" --json repository,title,url,state,createdAt --limit 50
Review comments (optional, for richer context):
gh api "search/issues?q=commenter:USERNAME+updated:>SINCE+type:pr" --jq '.items[] | {title,html_url,repository_url}' 2>/dev/null
Deduplicate results and organize into a concise standup summary using this format:
## Standup Summary (DATE_RANGE)
### PRs Created
- [repo] title (status) — url
### PRs Reviewed
- [repo] title — url
### Issues
- [repo] title (status) — url
### Other Activity
- (any review comments on PRs not already listed)
Omit sections that have no items. Keep descriptions brief — this is for a quick verbal standup.
After presenting the summary, ask:
Would you like me to go deeper on any item, or adjust the time range?
gh CLI to be authenticated (gh auth status)gh