ワンクリックで
standup
Generate daily standup notes from TekAgent activity, git history, and pending PRs
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generate daily standup notes from TekAgent activity, git history, and pending PRs
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Analyze GitHub issues, assess complexity, and suggest an implementation approach
Review pull requests with conversational, actionable feedback
Security review of code changes focusing on OWASP top 10 and Tekton-specific risks
Find good issues to work on by scanning repos for approachable tasks
| name | standup |
| description | Generate daily standup notes from TekAgent activity, git history, and pending PRs |
| user_invocable | true |
| always_enabled | true |
When asked to generate standup notes, use BOTH sources:
Fetch the tracked activity from TekAgent:
curl -s http://localhost:8000/api/activity?hours=24
This returns all interactions — PRs reviewed, issues analyzed, agent chats. Each entry has:
action: what was done (reviewed, analyzed, chatted)repo: which repositoryitem_type: pr or issueitem_number: PR/issue numbertitle: PR/issue titledetail: additional contextcreated_at: when it happenedAlso check recent commits and PRs:
gh pr list --author="@me" --state=open --json number,title,url,reviewDecision,updatedAt
gh pr list --search "review-requested:@me" --state=open --json number,title,url
git config user.name
Group activity into categories:
Yesterday / Since Last Standup:
Today / Next:
Blockers:
Open PRs:
Keep each bullet concise. Focus on outcomes, not individual actions.