一键导入
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.