fix-issue
Fixes GitHub issues by investigating, patching, testing, and linting according to project rules.
Install
mkdir -p .claude/skills/fix-issue-exit-zero-labs && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/18222" && unzip -o skill.zip -d .claude/skills/fix-issue-exit-zero-labs && rm skill.zipInstalls to .claude/skills/fix-issue-exit-zero-labs
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Fix a GitHub issue following ThreatForge coding standards and conventionsKey capabilities
- →Understand GitHub issue descriptions and comments
- →Investigate codebase to identify root causes
- →Implement code fixes following project conventions
- →Write tests to reproduce bugs and verify fixes
- →Lint and format code using project-specific tools
How it works
The skill reads a GitHub issue, investigates the codebase to find the root cause, implements a fix, writes tests, and then lints and formats the code before creating a commit.
Inputs & outputs
When to use fix-issue
- →Fix GitHub issue
- →Resolve bug report
- →Automate patch implementation
About this skill
Fix issue
Follow ../implement-issue/SKILL.md with bug-specific emphasis:
- reproduce the defect
- add a discriminating failing test
- fix the root cause with the smallest complete change
- avoid unrelated refactoring
The same effort, plan, anti-slop, verification, and authorization boundaries apply.
When not to use it
- →When the user wants to implement changes that do not follow ThreatForge coding standards
- →When the user wants to make changes without writing verification tests
- →When the user wants to skip linting and formatting
Limitations
- →Requires following ThreatForge coding standards and conventions
- →Requires writing tests to reproduce and verify fixes
- →Requires linting and formatting code before committing
How it compares
This skill automates the entire process of fixing a GitHub issue, from understanding the problem to committing the solution, which is more complete than manual bug fixing.
Compared to similar skills
fix-issue side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| fix-issue (this skill) | 0 | 5mo | No flags | Intermediate |
| debug-with-valgrind | 2 | 7mo | Review | Intermediate |
| jit-regression-test | 1 | 5mo | No flags | Beginner |
| dreamers-fix | 0 | 10d | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
debug-with-valgrind
facet-rs
Debug crashes, segfaults, and memory errors using valgrind integration with nextest through pre-configured profiles
jit-regression-test
dotnet
Extract a standalone JIT regression test case from a given GitHub issue and save it under the JitBlue folder. Use this when asked to create or extract a JIT regression test from an issue.
dreamers-fix
mrStorrs
Lightweight bug-fix pipeline — cuts a fresh feature branch, surveys scope, writes a regression test, implements the fix, runs tests. Exits at green tests. Triggers: /dreamers-fix, fix this bug, bug fix, address the bug.
country-atlas-ci-fix
dimbo1324
Use when GitHub Actions, pre-commit, tests, typing, lint, SQL lint, Docker smoke, or Playwright checks fail.
python-testing-patterns
wshobson
Implement comprehensive testing strategies with pytest, fixtures, mocking, and test-driven development. Use when writing Python tests, setting up test suites, or implementing testing best practices.
dependency-upgrade
wshobson
Manage major dependency version upgrades with compatibility analysis, staged rollout, and comprehensive testing. Use when upgrading framework versions, updating major dependencies, or managing breaking changes in libraries.