ワンクリックで
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 職業分類に基づく
| 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)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.