pluginagentmarketplace/custom-plugin-python

Debugging

Python debugging techniques, pdb, and IDE debugging tools

First seen Jan 21, 2026

Installation

$ npx skills add pluginagentmarketplace/custom-plugin-python --skill debugging

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from pluginagentmarketplace/custom-plugin-python · top by installs.

npx skills add pluginagentmarketplace/custom-plugin-python

Browse all from pluginagentmarketplace/custom-plugin-python

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 6
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version2.1.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,278 B
  • docs SUMMARY.md 71 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 210 installs

SKILL.md

Python Debugging Skill

Overview

Master Python debugging using pdb, IDE debuggers, and advanced troubleshooting techniques.

Topics Covered

pdb Debugger

  • Basic pdb commands
  • Breakpoint() function
  • Post-mortem debugging
  • Remote debugging
  • pdb++ enhancements

IDE Debugging

  • VS Code debugger
  • PyCharm debugging
  • Breakpoint conditions
  • Watch expressions
  • Call stack navigation

Logging

  • logging module setup
  • Log levels and handlers
  • Structured logging
  • Log aggregation
  • Debug logging strategies

Profiling

  • cProfile usage
  • line_profiler
  • memory_profiler
  • py-spy for production
  • Flame graphs

Error Analysis

  • Traceback analysis
  • Exception chaining
  • Context managers for debugging
  • Sentry integration
  • Error monitoring

Prerequisites

  • Python fundamentals
  • Exception handling

Learning Outcomes

  • Debug effectively with pdb
  • Profile performance issues
  • Set up proper logging
  • Analyze production errors