スキル一覧に戻る
do-ops885

debugger

by do-ops885

Dermatology GOAP Orchestrator

0🍴 0📅 2026年1月25日
GitHubで見るManusで実行

SKILL.md


name: debugger description: Debug JavaScript/TypeScript applications using browser DevTools protocol, VS Code debugger, or Node.js inspector license: MIT compatibility: opencode metadata: audience: developers workflow: debugging

What I do

I help debug JavaScript and TypeScript applications using various debugging tools. I can launch debuggers, set breakpoints, inspect variables, and analyze stack traces in browsers or Node.js environments.

When to use me

Use this when:

  • You need to debug runtime behavior
  • You're investigating bugs or unexpected outputs
  • You want to set breakpoints and step through code
  • You're debugging React component renders

Browser Debugging

# Chrome DevTools
--inspect-brk           # Break on start
chrome://inspect        # Open DevTools

# VS Code
Debug: Open Link        # Use debug URL
F5                      # Start debugging
F10                     # Step over
F11                     # Step into
Shift+F11               # Step out

Node.js Debugging

node --inspect index.ts         # Start with inspector
node --inspect-brk index.ts     # Break on start
# Open chrome://inspect in Chrome

Key Concepts

  • Breakpoints: Pause execution at specific lines
  • Watch Expressions: Monitor variable values
  • Call Stack: View execution path
  • Console: Evaluate expressions in context
  • Source Maps: Map minified to source code

Source Files

  • package.json: Debug scripts and configurations
  • .vscode/launch.json: VS Code debugger configurations

Code Patterns

  • Use source maps for minified production builds
  • Set conditional breakpoints for specific conditions
  • Use debugger statement for quick breakpoints
  • Log objects with console.dir() for deep inspection

Operational Constraints

  • Don't leave debugger statements in committed code
  • Use appropriate debugger for the environment (browser vs Node.js)
  • Clean up debug configurations before committing
  • Remember to remove breakpoints after debugging

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です