Synchronize AI swarms with GitHub Projects for visual task management, progress tracking, and team coordination
# Project Board Sync - GitHub Projects Integration ## Overview Synchronize AI swarms with GitHub Projects for visual task management, progress tracking, and team coordination. ## Core Features ### 1. Board Initialization ```bash # Connect swarm to GitHub Project using gh CLI # Get project details PROJECT_ID=$(gh project list --owner @me --format json | \ jq -r '.projects[] | select(.title == "Development Board") | .id') # Initialize swarm with project npx ruv-swarm github board-init \ --project-id "$PROJECT_ID" \ --sync-mode "bidirectional" \ --create-views "swarm-status,agent-workload,priority" # Create project fields for swarm tracking gh project field-create $PROJECT_ID --owner @me \ --name "Swarm Status" \ --data-type "SINGLE_SELECT" \ --single-select-options "pending,in_progress,completed"
Sign in to view the full prompt.
Sign In