standup
星标10
分支0
更新时间2026年4月28日 12:20
Summarize recent activity across issues and commits.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Summarize recent activity across issues and commits.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Add a comment to an issue.
Document a completed issue in the wiki (functional, technical, decision, solution).
Summarize a ticket's history, description, comments, and status.
Start tracked work: find/create ticket, set in-progress, track progress in comments.
Bump the tracker VERSION (semver) so update-check hook notifies existing installs.
Create a new issue (ticket, bug, feature request).
| name | standup |
| description | Summarize recent activity across issues and commits. |
| allowed-tools | Read, Glob, Grep, Bash(git log *), Bash(jq *) |
Generate a standup summary of recent project activity.
jq instead of reading the full file. Token-efficient TOON output:
jq -r --arg since "$(date -u -v-24H +%Y-%m-%dT%H:%M:%SZ 2>/dev/null || date -u -d '24 hours ago' +%Y-%m-%dT%H:%M:%SZ)" '
[.[] | select(.updated >= $since)] as $r
| "issues[\($r | length)]{id,status,priority,title}:",
($r[] | " \(.id),\(.status),\(.priority),\(.title)")
' .project/issues_index.json
This emits TOON (Token-Oriented Object Notation) — ~40% fewer tokens than JSON. Only use the bare filename if jq is unavailable; never dump the full file./rebuild-index.git log --oneline --since="24 hours ago" for recent commits.Keep the whole standup output ≤ ~25 lines. No analysis paragraphs — bullets only.