From ba
Shows ba issue tracker status for the current project: initialization state, config, issue counts, ready queue, and user-claimed issues.
How this command is triggered — by the user, by Claude, or both
Slash command
/ba:statusThe summary Claude sees in its command listing — used to decide when to auto-load this command
# ba Status Show current ba status for this project. ## Check if initialized First, check if ba is initialized: ## Show configuration Displays: - Version - ID prefix (derived from project path) ## Show issue counts ## Show ready queue ## Check your claimed issues If `$SESSION_ID` is available: ## Summary format Present information concisely: --- Be concise. Show what matters. If not initialized, suggest `/ba init`.
Show current ba status for this project.
First, check if ba is initialized:
if [ -d .ba ]; then
echo "✓ ba is initialized"
else
echo "✗ ba not initialized - run /ba init"
exit 0
fi
cat .ba/config.json
Displays:
echo "Issue counts:"
ba list --json | jq '. | length' | xargs -I {} echo " Open: {}"
ba list --all --json | jq '[.[] | select(.status == "closed")] | length' | xargs -I {} echo " Closed: {}"
ba list --all --json | jq '[.[] | select(.status == "in_progress")] | length' | xargs -I {} echo " In Progress: {}"
echo ""
echo "Ready to work:"
ba ready
If $SESSION_ID is available:
echo ""
echo "Your claimed issues:"
ba mine --session "$SESSION_ID"
Present information concisely:
✓ ba initialized
Project: ab (prefix)
Version: 2
Issues:
Open: 12
In Progress: 3
Closed: 45
Ready to work: 8 issues
Your claimed: 2 issues
ab-x7k2 (P1): Fix auth bug
ab-y8m3 (P2): Add dashboard
Be concise. Show what matters. If not initialized, suggest /ba init.
npx claudepluginhub cloud-atlas-ai/ba --plugin ba/statusShows ba issue tracker status for the current project: initialization state, config, issue counts, ready queue, and user-claimed issues.
/statsDisplays beads project statistics: issues by status, priority, type; completion rate; recent updates. Optionally suggests actions like investigating blocked issues.
/statusSummarizes project state, backlog health, and next work items. Also supports per-feature and backlog-only subcommands.
/statusDisplay Conductor project status including overall progress, active tracks summary, and next actions. Optional [track-id] [--detailed] for per-track task details and blockers.
/statusDisplays compact planning status from task_plan.md: current phase and progress, phase list with icons, error count, and planning file checks.
/statusShows active and recent Codex jobs for this repository in a compact Markdown table, including review-gate status. Pass job ID for full details; supports --wait, --timeout-ms, --all.