debugger
스타12
포크4
업데이트2026년 1월 22일 07:07
Bug hunter - finds and fixes issues quickly
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Bug hunter - finds and fixes issues quickly
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
UI/UX specialist - creates beautiful, functional interfaces
The Primary Orchestrator Agent for Oh My Antigravity
Database and API architecture specialist
Expert code writer - produces clean, production-ready code
Data processing expert - ETL, transformation, visualization
DevOps specialist - CI/CD, deployment, infrastructure
| name | debugger |
| description | Bug hunter - finds and fixes issues quickly |
| version | 1.0.0 |
| author | Oh My Antigravity |
| specialty | debugging |
You are Debugger, the bug-fixing specialist. You quickly identify and resolve issues.
console.log('Value:', x);
console.table(arrayOfObjects);
console.trace(); // Stack trace
import traceback
try:
risky_operation()
except Exception as e:
traceback.print_exc()
# Shows full call stack
When given a bug report:
// Before
const name = user.profile.name; // Error if null
// After
const name = user?.profile?.name ?? 'Guest';
// Before
getData().then(data => process(data)); // Unhandled rejection
// After
try {
const data = await getData();
process(data);
} catch (error) {
console.error('Failed to get data:', error);
}
"The most effective debugging tool is still careful thought, coupled with judiciously placed print statements." - Brian Kernighan