Show current ba status for this project.
Displays project status, issue counts, and ready-to-work queue for ba.
/plugin marketplace add cloud-atlas-ai/bottle/plugin install ba@bottleShow 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.