GitHub Issue Fixer Fix GitHub issues by implementing solutions on feature branches with proper testing. Prerequisites - CLI installed and authenticated - Repository cloned locally - Test command available (auto-detected or specified) Workflow 1. Understand the Issue Read the issue thoroughly. 2. Create Feature Branch Branch naming: (lowercase, hyphens). 3. Analyze the Codebase Before coding, understand the relevant parts: - Locate files related to the issue - Check existing tests for patterns - Review any referenced code in the issue 4. Implement the Fix Make minimal, focused changes that add…