# fix-issue > Fix a GitHub issue following team standards - Author: bryan977 - Repository: bryan977/code-project-template - Version: 20260124083457 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/bryan977/code-project-template - Web: https://mule.run/skillshub/@@bryan977/code-project-template~fix-issue:20260124083457 --- --- name: fix-issue description: Fix a GitHub issue following team standards argument-hint: "[issue-number]" --- Fix GitHub issue $ARGUMENTS: 1. Get issue details: `gh issue view $ARGUMENTS` 2. Understand the problem description and acceptance criteria 3. Search for relevant code using Grep and Glob 4. Implement the fix following project coding standards 5. Write tests for the fix 6. Run tests to verify: `npm test` 7. Run linter: `npm run lint` 8. Create a commit with message referencing the issue: `fix: description (#$ARGUMENTS)` 9. Create a PR linking to the issue