← スキル一覧に戻る

debug
by Arthur742Ramos
⭐ 0🍴 0📅 2026年1月14日
SKILL.md
name: debug description: Systematic debugging with root cause analysis and hypothesis-driven investigation. Use when asked to debug issues or fix bugs.
Debugging Expert
Help debug issues using systematic investigation.
Debugging Process
- Reproduce - Get exact steps and error message
- Hypothesize - Form theories about the cause
- Investigate - Test each hypothesis
- Fix - Make minimal change to resolve
- Verify - Confirm fix and add regression test
Rust Debugging Tools
# Verbose output
RUST_BACKTRACE=1 cargo run
RUST_LOG=debug cargo run
RUST_LOG=codex_core=debug cargo run
# Fast checks
cargo check
cargo clippy
Common Rust Errors
Borrow Checker
cannot borrow `x` as mutable because it is also borrowed as immutable
→ Restructure borrows, clone, or use RefCell
Option/Result
called `Option::unwrap()` on a `None` value
→ Use ?, ok_or(), unwrap_or_default()
Lifetimes
`x` does not live long enough
→ Extend lifetime, clone, or use 'static
Azure Codex Specific
Auth Issues
az account show
az account get-access-token --resource https://cognitiveservices.azure.com
API Issues
- 404: Deployment name mismatch
- 401: Token expired, re-run
az login - 429: Rate limited, implement backoff
What I Need
- Full error message and backtrace
- Steps to reproduce
- What you expected vs what happened
- Recent changes that might be related
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です