它能做什么
中文摘要
「python-debugpy」的原始 GitHub SKILL.md 将它定位为:Debug Python with pdb, breakpoint(), post-mortem inspection, and debugpy remote attach.。它的核心价值是把测试策略、回归路径和发布前验证步骤前置到 Agent 工作流;强化 Agent 的规划、分工、浏览器操作和自主调试能力。文档重点章节包括「Choose」「Commands」「pdb」。
为什么推荐
推荐理由
推荐它,是因为它在「调试工具」分类里热度靠前(GitHub Stars 380,125),同时原始文档信息密度足够高。原文列出的执行要点包括:`breakpoint()`: local code, source edits ok, fastest path.;`python3 -m pdb`: no source edit, launch from the beginning.。对经常重复的任务来说,这类 Skill 能把经验沉淀到工作流前端,减少临场猜测。
什么时候用
适用场景
- 处理 Web 应用路由、部署、缓存、服务端渲染和生产问题
- 建立测试闭环、回归验证、安全检查和发布前质量门
- 提升 Agent 的规划、调试、浏览器自动化和多代理协作能力
使用前先看
主要亮点
- 01
Debug Python 结合 pdb, breakpoint(), post-mortem inspection, 和 d。
- 02
原文摘录:Debug Python 结合 pdb, breakpoint(), post-mortem ins
- 03
原文要点:breakpoint(): local code, source edits ok, fastest p
- 04
补充线索:python3 -m pdb: no source edit, launch 来自 the begi
原始文档
原文摘录
Debug Python with pdb, breakpoint(), post-mortem inspection, and debugpy remote attach.