> ## Documentation Index
> Fetch the complete documentation index at: https://docs.murmur.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# murmur session interrupt

> Interrupt a running agent's current turn so it stops generating and processes any queued follow-up messages immediately on the next turn.

Interrupts a running [agent's](/concepts/agents) current turn. The [agent](/concepts/agents) stops what it is doing and waits for a new message. Use this when an [agent](/concepts/agents) is heading in the wrong direction and you want to redirect it with a follow-up via [`murmur session send`](/cli/session-send).

## Synopsis

```bash theme={null}
murmur session interrupt [flags] [slug]
```

On a VM, the slug is optional — omitting it interrupts the current [agent's](/concepts/agents) own session.

## Arguments

| Name          | Type   | Required  | Description                                                                     |
| ------------- | ------ | --------- | ------------------------------------------------------------------------------- |
| `slug`        | string | on laptop | The [agent's](/concepts/agents) slug. Optional on VMs (defaults to self).       |
| `--workspace` | string | no        | [Workspace](/concepts/workspaces) name. Overrides the value from `murmur.yaml`. |

## Examples

### Interrupt and redirect

```bash theme={null}
murmur session interrupt fix-auth
```

```
sent
```

Then send a new instruction:

```bash theme={null}
murmur session send fix-auth "Stop refactoring — just fix the expiry check"
```

```
sent
```

### Interrupt from a VM (self)

```bash theme={null}
murmur session interrupt
```

```
sent
```

## Errors

| Code              | Meaning                                             | What to do                                                                             |
| ----------------- | --------------------------------------------------- | -------------------------------------------------------------------------------------- |
| `NOT_FOUND`       | No [agent](/concepts/agents) with that slug exists. | Check the slug. Use [`murmur ls`](/cli/ls) to list running [agents](/concepts/agents). |
| `UNAUTHENTICATED` | Identity token is missing or expired.               | Run `murmur auth` or check your `murmur.local.yaml` configuration.                     |

## Related

* [Agents](/concepts/agents) — concept overview
* [`murmur session send`](/cli/session-send) — send a follow-up message after interrupting
* [`murmur session watch`](/cli/session-watch) — stream live session events
* [`murmur session stop`](/cli/session-stop) — request graceful session shutdown
* [`murmur kill`](/cli/kill) — cancel an agent entirely
