[codefix]
Captures an explicit sensitive process dump artifact from an already-running local .NET process.
Process dumps are high-value but high-risk evidence.
The model must preserve the explicit sensitive-artifact acknowledgement before capture.
Try it locally in the GliderTrace playground
| Name | Type | Required | Description |
|---|---|---|---|
| processId | number | Yes | Process id returned by trace_list_processes or another trusted local source. |
| dumpType | string | No | Dump type: 'triage', 'normal', 'heap', or 'full'. Defaults to triage. |
| acknowledgeSensitive | boolean | No | Must be true because this operation may read or store sensitive runtime artifacts. |
Capture a triage dump after explicit acknowledgement
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "trace_capture_dump",
"arguments": {
"processId": 12345,
"acknowledgeSensitive": true
}
}
}Returns a stored session with a sensitive dump artifact reference and process evidence.