> For the complete documentation index, see [llms.txt](https://burp-ai-agent.six2dez.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://burp-ai-agent.six2dez.com/backends/gemini-cli.md).

# Gemini CLI

Gemini CLI is useful for large-context cloud analysis and agent-style workflows.

## Requirements

* `gemini` CLI installed.
* Authentication completed with `gemini auth login`.

## Setup

1. Install/verify the CLI from the official docs.
2. Authenticate:

```bash
gemini auth login
```

3. Verify locally:

```bash
gemini "hello"
```

4. Configure in **AI Backend** settings tab.

## Configuration

| Setting                | Value                                                         |
| ---------------------- | ------------------------------------------------------------- |
| **Preferred Backend**  | `Gemini CLI`                                                  |
| **Gemini CLI Command** | `gemini --output-format text --model gemini-2.5-flash --yolo` |

## Notes

`--yolo` is used by default to avoid interactive approval prompts that can block embedded MCP workflows.

## Notes

### Windows

npm-installed CLI shims are resolved automatically on Windows. The extension detects `.cmd` siblings and uses them instead of shell script shims that Java cannot execute directly.

## Troubleshooting

{% hint style="info" %}

* `command not found`: use full executable path if needed.
* Windows: npm shim paths are resolved automatically. If auto-resolution fails, use the full `.cmd` path: `C:\\Users\\<you>\\AppData\\Roaming\\npm\\gemini.cmd`.
* `ModelNotFoundError` / `RESOURCE_EXHAUSTED`: choose available model and update `--model`.
* Auth errors: re-run `gemini auth login`.
  {% endhint %}

## Related Pages

* [Backends Overview](/backends/overview.md)
* [Troubleshooting](/reference/troubleshooting.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://burp-ai-agent.six2dez.com/backends/gemini-cli.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
