agentsclimarketplace

Fix issue

Skill justnau1020/claude-os/skills/development/fix-issue

Fix a GitHub issue end-to-end -- read the issue, implement the fix, write tests, and create a commit. Use when you want to fix a specific GitHub issue, resolve a bug report, or implement a feature request.From its SKILL.md

Install
npx -y skills add justnau1020/claude-os --skill fix-issue

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

2 things to look at

  • 3 stars3 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.
  • runs commandsInstructs the agent to run 2 commands, including `gh issue view $ARGUMENTS` and 1 more.

SKILL.md

1.4 KB, 268 tokens by cl100k_base, as published. Nobody here has run it

Fix GitHub Issue

Fix issue #$ARGUMENTS end-to-end.

Steps

1. Read the issue

gh issue view $ARGUMENTS

Understand the problem, expected behavior, and any reproduction steps.

2. Research the codebase

Find the relevant files using the issue description. Read the code to understand the current behavior and what needs to change.

3. Implement the fix

  • Follow the project's existing conventions and patterns
  • Make minimal, focused changes -- fix the bug, don't refactor surrounding code
  • Add type hints to any new code

4. Write or update tests

  • Add a test that would have caught this bug
  • Verify existing tests still pass
  • Mock external APIs -- no real network calls

5. Verify

Run the project's CI pipeline locally:

# Adjust these commands to match your project's tooling
pytest tests/ -v --tb=short
# lint check
# type check

6. Create a commit

Stage only the files you changed and commit with a message referencing the issue:

Fix #$ARGUMENTS: <brief description of what was fixed>

Do NOT push -- let the user decide when to push.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. 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.