Backlog tasks
Show the current task backlog — pending, active, blocked, and overdue tasks. Use when the user asks about tasks, status, what needs to be done, or what's in progress.
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/tasks" ~/.claude/skills/backloghq-backlog-tasks && rm -rf "$T"
manifest:
skills/tasks/SKILL.mdsource content
Task Status Overview
Show the current state of the task backlog. Use the backlog MCP tools to query and present the following:
- Active tasks — call
with filtertask_list
to show tasks currently being worked on+ACTIVE - Overdue tasks — call
with filtertask_list
to show tasks past their due date+OVERDUE - Blocked tasks — call
with filtertask_count
to count blocked tasks+BLOCKED status:pending - Pending tasks by priority — call
with filtertask_list
and group results by priority (H, M, L, none)status:pending - Tasks with docs — call
with filtertask_count
to count tasks with attached specs/docs+doc status:pending - Recently completed — call
with filtertask_list
to show work done in the last 7 daysstatus:completed end.after:now-7d
Present the results in a concise, scannable format. Skip sections that have zero results. If the backlog is completely empty, say so and suggest using
/backlog:plan to create tasks.