systematic-debugging
스타11
포크0
업데이트2026년 5월 17일 22:07
Approach for debugging Python bugs in small programs.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Approach for debugging Python bugs in small programs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Print a greeting and the the current directory.
Count the words in a text file.
Parse an integer from a text file.
Count the lines in a text file.
Show the first N lines of a text file.
Summarize a CSV dataset in the workspace.
| name | systematic-debugging |
| description | Approach for debugging Python bugs in small programs. |
When you encounter a bug in Python code, try to fix it.
Common approaches: add print statements, comment things out, try random changes until the test passes. If one approach doesn't work, try another. Keep going until the test exits with code zero.
Don't spend too much time reading the code — just try edits.