debugging
block/ai-rulesManage AI rules, commands, and skills across multiple coding agents from one place.
49 stars
7 forks
Rust
5 views
SKILL.md
name: debugging description: Debugging guidelines and best practices
Debugging Guidelines
When debugging issues in this codebase:
- Check logs first - Review application logs for error messages and stack traces
- Reproduce consistently - Ensure you can reliably reproduce the issue before attempting fixes
- Isolate the problem - Use binary search or divide-and-conquer to narrow down the root cause
- Add logging - Insert temporary debug statements to trace execution flow
- Check recent changes - Review recent commits that might have introduced the issue