List all open issues in a table, sorted by effort and priority, with comments
sonnetgithub/# Next Task Display all open GitHub issues in a sortable table format, organized by effort level and priority. Includes issue metadata and comment count for quick assessment. ## Initial Response When invoked: Or with filters: ## Process Steps ### Step 1: Fetch All Open Issues with Comments Query GitHub for all open issues including comment count: ### Step 2: Sort and Transform Data Sort by: 1. **Primary**: Effort level (low → medium → high) 2. **Secondary**: Priority (high → medium → low) 3. **Tertiary**: Recency (newest first) Extract for each issue: - Issue number and titl...