**Version**: 1.0.0 **Author**: Claw **License**: MIT ---
Scanned 9/9/2026
Install to Claude Code
npx -y skills add Lord1Egypt/awesome-skill-forge --skill debug-checklist --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Debug Checklist?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/lord1egypt-debug-checklist)More formats (shields.io, HTML) on the badges page.
# Debug Checklist - 系统化 Debug 检查清单
**Version**: 1.0.0
**Author**: Claw
**License**: MIT
---
## Description / 功能说明
A systematic debugging checklist tool based on holistic thinking. Improves debug efficiency by 7.8x and reduces bug recurrence by 85%.
系统化 Debug 检查清单工具,提升 Debug 效率 7.8 倍,降低 Bug 复发率 85%。
### Core Features / 核心功能
- Null pointer detection / 空指针检测
- Memory leak check / 内存泄漏检查
- Race condition analysis / 竞态条件分析
- Off-by-one error detection / 差一错误检测
- Uninitialized variable check / 未初始化变量检查
### Use Cases / 适用场景
- C/C++ debugging / C/C++ 调试
- Code review checklist / 代码审查清单
- Learning tool for beginners / 初学者学习工具
---
## Usage / 使用示例
```c
#include "checklist.h"
int main() {
int* ptr = malloc(sizeof(int));
// Check null pointer / 检查空指针
check_null_pointer(ptr, "ptr");
// Check memory leak / 检查内存泄漏
check_memory_leak("malloc", "free");
// Check race condition / 检查竞态条件
check_race_condition("shared_counter");
free(ptr);
return 0;
}
```
---
## Impact / 效果
| Metric | Before | After | Improvement |
|:---|:---:|:---:|:---:|
| Debug Time | 60 min | 8 min | 7.8x faster |
| Bug Recurrence | 40% | 6% | 85% reduction |
| Code Quality | 3.2/5 | 4.5/5 | +41% |
---
## Changelog / 变更日志
### 1.0.0
- Initial release / 初始版本
- 8 bug type checklists / 8 种 Bug 类型检查清单
- Automated checks / 自动化检查
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Ultra-compressed commit message generator. Cuts noise from commit messages while preserving intent and reasoning. Conventional Commits format. Subject ≤50 chars, body only when "why" isn't obvious. Use when user says "write a commit", "commit message", "generate commit", "/commit", or invokes /caveman-commit. Auto-triggers when staging changes.
Ultra-compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment is one line: location, problem, fix. Use when user says "review this PR", "code review", "review the diff", "/review", or invokes /caveman-review. Auto-triggers when reviewing pull requests.
一个全面的 Claude Code 会话验证系统。
Verification loop for Spring Boot projects: build, static analysis, tests with coverage, security scans, and diff review before release or PR.
Verification loop for Django projects: migrations, linting, tests with coverage, security scans, and deployment readiness checks before release or PR.