Backlog standup
Daily standup summary — what was completed recently, what's in progress, and what's blocked. Use when the user asks for a standup, status update, or summary of recent work.
install
source · Clone the upstream repo
git clone https://github.com/backloghq/backlog
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/backloghq/backlog "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/standup" ~/.claude/skills/backloghq-backlog-standup && rm -rf "$T"
manifest:
skills/standup/SKILL.mdsource content
Daily Standup
Generate a concise standup report by querying the backlog.
Process
-
Done — call
with filtertask_list
to show tasks completed in the last 24 hours. If empty, trystatus:completed end.after:now-1d
for the last week.end.after:now-7d -
In progress — call
with filtertask_list
to show tasks currently being worked on.+ACTIVE -
Blocked — call
with filtertask_list
to show tasks waiting on dependencies. For each, identify which task is blocking it.+BLOCKED status:pending -
Up next — call
with filtertask_list
and pick the top 3 by urgency that are NOT blocked. These are what should be worked on next.status:pending -
Overdue — call
with filtertask_count
to flag any overdue tasks.+OVERDUE
Format
Present as a brief, scannable report:
**Done**: [completed tasks or "nothing recent"] **In progress**: [active tasks or "nothing started"] **Blocked**: [blocked tasks and what's blocking them, or "none"] **Up next**: [top 3 actionable tasks by urgency] **Overdue**: [count, or skip if 0]
Keep it concise — this is a quick status check, not a full report. Skip sections that are empty.