get_debugger_hits
Polls recent debugger hits from the game's DevBridge.debugger calls, enabling inspection of breakpoint data with cursor support for new hits.
Instructions
Poll recent hits from DevBridge.debugger(data, pause?) calls placed in the game (JS-debugger-style breakpoint). Each hit has {id, data, paused, file, line, method, timestamp}. Use since_id from a previous call as a cursor to get only new hits. Hits also arrive in real time as SSE 'debugger' events (shown as warning-level log notifications). If paused=true, the game is paused at the hit — resume with pause({paused:false}).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| clear | No | Clear the buffer after reading (default: false) | |
| limit | No | Max hits to return (default: 50, max: 100) | |
| since_id | No | Only return hits with id > since_id. Use the lastId from a previous response as a cursor. |