원클릭으로
debugging
Debugging patterns and strategies - use when debugging issues, errors, or unexpected behavior
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Debugging patterns and strategies - use when debugging issues, errors, or unexpected behavior
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Firecrawl gives AI agents and apps fast, reliable web context with strong search, scraping, and interaction tools. One install command sets up three skill segments: live CLI tools, app-integration build skills, and outcome-focused workflow skills. Route the reader to the right usage path after install.
Generate conventional commit messages - use when creating commits, writing commit messages, or asking for git commit help.
Create a decision history record in the history/ directory. Use before writing any implementation code for a new feature, architecture change, or significant technical decision.
Full development workflow from planning through deployment for AI Agent features. Use when developing new features, making significant architecture changes, or starting work on any non-trivial implementation.
Test execution workflow - run unit tests, linting, and type checking. Use when verifying code quality, running the full test suite, or checking before a commit.
Code review checklist - use for checking Python code quality, bugs, security issues, and best practices. Use when a user asks for a code review, needs to assess whether a change is safe to merge, or needs to review AI-agent code for production risk.
| name | debugging |
| description | Debugging patterns and strategies - use when debugging issues, errors, or unexpected behavior |
Apply systematic debugging approaches to identify, explain, and fix issues.
Use this skill when:
# Use structured logging instead of print
import logging
logger = logging.getLogger(__name__)
logger.debug(f"Variable state: {variable}")
import pdb; pdb.set_trace() # Set breakpoint
# Commands: n (next), s (step), p (print), c (continue), q (quit)
breakpoint() # Python 3.7+ - uses pdb by default
type(variable)