List boards for a team
boards/# List Boards Get all boards for a team. **Note**: Uses `az devops invoke` since CLI doesn't support boards directly. ## List Boards If team is not specified, uses default team (same as project name). ## Response Returns array of boards with: - `id` - Board ID - `name` - Board name (e.g., "Stories", "Epics", "Features") - `columns` - Column definitions - `rows` - Swimlane definitions ## Get Specific Board Board names are typically: - `Stories` - User stories/PBIs - `Epics` - Epic items - `Features` - Feature items - `Bugs` - Bug items (if using Bugs on board) ## Common Teams I...