agentsclimarketplace

Fix issue

Skill huzaifa525/claude-code-optimizer/templates/.claude/skills/fix-issue

Optimize Claude Code token usage — 22 skills, 8 hooks, 6 rules. One npm install. Zero manual steps. Cut costs by 67%.

Install
npx -y skills add huzaifa525/claude-code-optimizer --skill fix-issue

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when the user wants to fix a GitHub issue by number, resolve a bug report, or close an issue.

SKILL.md

1.3 KB, as published. Nobody here has run it

Fix GitHub issue #$ARGUMENTS.

Steps

  1. Fetch the issue

    gh issue view $ARGUMENTS
    
  2. Understand requirements — read the issue title, description, labels, and comments

  3. Create a branch

    git checkout -b fix/issue-$ARGUMENTS
    
  4. Find relevant code — use Grep and Glob to locate files related to the issue

  5. Read the code — understand the current behavior and why it's wrong

  6. Implement the fix — make the minimum changes needed

  7. Write/update tests — ensure the fix is tested

  8. Run tests — verify nothing is broken

    [test command from CLAUDE.md or package.json]
    
  9. Commit with conventional message:

    git add [specific files]
    git commit -m "fix: [description] (#$ARGUMENTS)"
    
  10. Show summary — what was changed, why, and what tests cover it

If issue doesn't exist

Tell the user the issue was not found.

<!-- Skill by Huzefa Nalkheda Wala | github.com/huzaifa525 | claude-code-optimizer -->

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.