Awesome-omni-skill status
Provide concise project / bead status and run Beads/waif helpers to augment results. Trigger on user queries such as: 'What is the current status?', 'Status of the project?', 'What is the status of <bead-id>?', 'audit', 'audit <bead-id>'
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/tools/status" ~/.claude/skills/diegosouzapw-awesome-omni-skill-status-1720b0 && rm -rf "$T"
manifest:
skills/tools/status/SKILL.mdsource content
Status
Overview
Provide a concise, human-friendly summary of project status or a specific bead. When no bead id is provided, run
waif CLI tool to summarize recent work and current work in progress. When a bead id is provided, run bd show <bead-id> --json and provide a detailed explanation of that bead (title, status, assignee, description, blockers, and related links).
When To Use
- User asks general project status (e.g., "What is the current status?", "Status of the project?", "audit the project", "audit").
- User asks about a specific bead id (e.g., "What is the status of bd-123?", "audit bd-123").
Behavior
- Detect whether the user provided a bead id in the request.
- If no bead id is provided:
- Run
to fetch in-progress work.waif in-progress --json - Parse the returned JSON and produce a short summary including:
- Number of in-progress beads
- Highest-priority items, a short description, and their assignees
- Any items in a blocked state or missing assignees
- A one-line suggestion for next action (e.g., "Review bd-123 assigned to @alice")
- Run
to fetch recently modified beads.waif recent --json - Run
for the last 3 completed beads to get more information.bd show <bead-id> --json - Parse and summarize the last 3 completed beads with titles, most recent comments and assignees.
- Run
- If a bead id is provided:
- Run
to fetch bead details.bd show <bead-id> --json - Parse and present: title, status, assignee, priority, description, blockers, dependencies, comments count, and relevant links.
- Run
- Handle errors gracefully: if
orwaif
are not available or return invalid JSON, present a helpful error and possible remediation steps.bd
Notes
- Keep the output concise and actionable for quick human consumption.