get_debugger_state
Retrieve current debugger state: paused status, reason, hit breakpoints, and call stack with file/line info. Understand why execution paused and where.
Instructions
Get current debugger state: whether execution is paused, the pause reason, hit breakpoints, and the full call stack with file/line info.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| paused | Yes | ||
| reason | No | Pause reason (e.g. "breakpoint", "exception"). Present only when paused. | |
| callStack | No | Source-mapped positions when available. Present only when paused. | |
| hitBreakpoints | No | IDs of breakpoints hit. Present only when paused. |