원클릭으로
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.