Debug Checklist - 系统化 Debug 检查清单

# Debug Checklist - 系统化 Debug 检查清单

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "Debug Checklist - 系统化 Debug 检查清单" with this command: npx skills add gatsby047-oss/debug-checklist

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 / 使用示例

#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 / 效果

MetricBeforeAfterImprovement
Debug Time60 min8 min7.8x faster
Bug Recurrence40%6%85% reduction
Code Quality3.2/54.5/5+41%

Changelog / 变更日志

1.0.0

  • Initial release / 初始版本
  • 8 bug type checklists / 8 种 Bug 类型检查清单
  • Automated checks / 自动化检查

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Todo

Personal execution engine for tasks, projects, reminders, commitments, follow-ups, and next actions. Use whenever the user mentions something they need to do...

Registry SourceRecently Updated
1497
Profile unavailable
General

Todo management

Per-workspace SQLite todo manager (./todo.db) with groups and task statuses (pending/in_progress/done/skipped), operated via {baseDir}/scripts/todo.sh for adding, listing, editing, moving, and removing entries and managing groups.

Registry SourceRecently Updated
114.7K
Profile unavailable
Coding

Planning with files

Implements Manus-style file-based planning to organize and track progress on complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when aske...

Registry SourceRecently Updated
228.3K
Profile unavailable