원클릭으로
debug-fix
Find and fix a bug or issue — from any source (GitHub issue, error message, user report, or observed behavior)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Find and fix a bug or issue — from any source (GitHub issue, error message, user report, or observed behavior)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Review code changes or a pull request — delegates to specialist agents for code quality, security, performance, and documentation.
Safely refactor code with test coverage as a safety net
Scan changes, commit, push, and create a PR — with confirmation at each step
Test-Driven Development loop — write a failing test first, then the minimum code to pass it, then refactor. Repeat.
Write comprehensive tests for new or changed code. Use automatically when new features are added, functions are created, or behavior is modified.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
| name | debug-fix |
| description | Find and fix a bug or issue — from any source (GitHub issue, error message, user report, or observed behavior) |
| argument-hint | [issue number, error message, or description of the problem] |
| disable-model-invocation | true |
Find and fix the following issue:
Problem: $ARGUMENTS
Determine what kind of input this is:
gh issue view $ARGUMENTS (GitHub), or check the project's issue trackerIf the problem is unclear, ask clarifying questions before proceeding.
git log for recent commits that mention the issueFollow this sequence — don't skip ahead to guessing:
git log --oneline -20 -- <file> to see what recently changed in the affected files. git log --all --grep="<keyword>" to find related commits.git bisect or targeted grep to identify when the behavior changed, or which input triggers it.fix: <what was wrong and why> (#number)