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

# Shell Integration [Feature Preview]

> Wrap your shell with Devin to invoke it instantly and give Devin visibility into your recent commands.

<Info>
  Shell integration is a **Feature Preview**. It is available on macOS, Linux, and WSL with Bash, Zsh, and Fish. Shell integration is not yet supported on Windows (PowerShell or CMD). You can still run Devin CLI on Windows — this feature just isn't available there yet. It is feature complete but may interact poorly with other shell functionality. If you run into something incompatible please let us know!
</Info>

Shell integration wraps your existing shell session so that Devin runs alongside it. Once set up, you can:

* Hit **Ctrl+G** (configurable) anywhere in your shell to invoke Devin with your current command line as context
* Type `# <message>` and press Enter to pass it straight to Devin (Zsh only)
* Give Devin automatic visibility into your recent shell commands and their output

We strongly recommend using `zsh` over `bash` or `fish` for best support.

***

## Setup

Run the setup command to install shell integration into your shell config file:

```bash theme={null}
devin shell setup
```

This adds managed blocks to your shell rc file (`~/.bashrc`, `~/.zshrc`, or `~/.config/fish/config.fish`). Then restart your terminal or source the config:

<Tabs>
  <Tab title="Bash">
    ```bash theme={null}
    source ~/.bashrc
    ```
  </Tab>

  <Tab title="Zsh">
    ```bash theme={null}
    source ~/.zshrc
    ```
  </Tab>

  <Tab title="Fish">
    ```fish theme={null}
    source ~/.config/fish/config.fish
    ```
  </Tab>
</Tabs>

You can also target a specific shell explicitly:

```bash theme={null}
devin shell setup bash
devin shell setup zsh
devin shell setup fish
```

<Note>
  Shell integration is separate from the `devin setup` wizard. Running `devin setup` does **not** install shell integration — you must run `devin shell setup` separately.
</Note>

***

## Features

<video controls className="w-full aspect-video" src="https://mintcdn.com/cognitionai-enterprise/EcYtfvnK5s17eF_8/images/cli/devin4terminal.mp4?fit=max&auto=format&n=EcYtfvnK5s17eF_8&q=85&s=f1f146adc07b471a6ce01e00a4a5cd0b" data-path="images/cli/devin4terminal.mp4" />

### Ctrl+G shortcut (configurable)

Hit **Ctrl+G** anywhere in your shell to invoke Devin. Whatever you've typed on the current line is passed to Devin as context, along with your recent shell history.

```bash theme={null}
$ git status   # type this, then hit Ctrl+G instead of Enter
# Devin opens with "git status" as context + your recent shell history
```

This works in Bash, Zsh, and Fish.

### Comment syntax (Zsh only)

In Zsh, start a line with `#`, type a natural-language message, and press Enter. Devin receives your comment as the prompt.

```bash theme={null}
$ # explain what this directory contains
# Devin opens with your comment as the prompt
```

<Note>
  Comment syntax requires Zsh's `INTERACTIVE_COMMENTS` option, which shell integration enables automatically.
</Note>

### Shell history context

When invoked via Ctrl+G or comment syntax, Devin can see your recent shell commands *including their output*. This gives Devin context about what you've been doing, so it can provide more relevant help without you needing to explain.

***

## Login shell environment

Commands the agent runs inherit the environment of your login shell, so version managers and environment loaders — `nvm`, `pyenv`, `rbenv`, `direnv`, `mise` — plus custom `PATH` entries and anything else set up in your shell profile are available to the agent with no extra configuration.

Devin CLI captures that environment once, at session startup, by running your `$SHELL` as an interactive login shell and reading its exported variables (`.bash_profile`, `.bashrc`, `.zshrc`, `.zprofile`, or your fish config, depending on your shell).

<Note>
  This applies to macOS and Linux only, and works whether or not you have installed shell integration. Because the environment is a one-time snapshot, changes you make to your shell profile mid-session are not picked up — restart Devin to pick them up.
</Note>

***

## Removing shell integration

To remove shell integration, delete the managed blocks from your shell config file (`~/.bashrc`, `~/.zshrc`, or `~/.config/fish/config.fish`). Look for lines between `BEGIN MANAGED` and `END MANAGED` markers and remove that entire block. Then restart your terminal.

***

## Configuration

Configure shell integration behavior in your [config file](/cli/reference/configuration/config-file):

```json theme={null}
// ~/.config/devin/config.json
{
  "shell": {
    "keybinding_trigger": "C-g",
    "enable_comments": true
  }
}
```

| Option                     | Default | Description                                                                                                                |
| -------------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------- |
| `shell.keybinding_trigger` | `"C-g"` | Keybinding to trigger Devin from the shell. Use `C-` prefix for Ctrl (e.g., `"C-g"` for Ctrl+G). Set to `null` to disable. |
| `shell.enable_comments`    | `true`  | Enable `# comment` syntax in Zsh to send messages to Devin.                                                                |

<Note>
  After changing configuration, run `devin shell setup` again and restart your terminal for changes to take effect.
</Note>
