npx claudepluginhub cloud-atlas-ai/ba --plugin ba# 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`.
/vt-statusSummarizes project state, backlog health, and next tasks for morning standup briefing. Also supports backlog-only or specific feature status views.
/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.
/statusDisplays current design system state from .interface-design/system.md including direction, foundation, depth, tokens, patterns, and last updated time. Suggests setup options if no system found.
/statusChecks current session status and measures goal drift to assess alignment and progress in the conversation.
Share bugs, ideas, or general feedback.
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.