> 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/developer/adding-backend.md).

# Adding a Backend

The extension uses Java's `ServiceLoader` mechanism for backend discovery, making it straightforward to add new AI backends without modifying core code.

## Steps

### 1. Implement the Backend Adapter

Create two classes:

* **`AiBackendFactory`**: Factory that creates backend instances. Provides metadata (ID, display name, type).
* **`AiBackend`**: The actual backend that implements `send()` to communicate with the AI.
* **`AgentConnection`**: Interface for send/receive operations.

For HTTP backends, you can also implement `DiagnosableConnection` to expose exit codes and output for debugging.

### 2. Register via ServiceLoader

Create a file at:

```
META-INF/services/com.six2dez.burp.aiagent.backends.AiBackendFactory
```

Add the fully qualified class name of your factory:

```
com.example.mybackend.MyBackendFactory
```

### 3. Add UI Configuration Fields (Optional)

If your backend needs custom settings (API URL, model name, etc.), add configuration keys to `AgentSettings.kt` and corresponding UI fields to `SettingsPanel.kt`.

### 4. Ensure Audit Logging

Use the backend ID consistently so audit logs can trace which backend was used for each interaction.

### 5. Package and Deploy

**Option A: Built-in** Add your backend to the main source tree and rebuild the extension JAR.

**Option B: Drop-in JAR** Package your backend as a standalone JAR and place it in `~/.burp-ai-agent/backends/`. The `BackendRegistry` will discover it automatically via `URLClassLoader` on startup.

## Backend Interface

```kotlin
interface AiBackendFactory {
    val id: String           // Unique identifier (e.g., "my-backend")
    val displayName: String  // UI display name
    fun create(config: BackendLaunchConfig): AiBackend
}

interface AiBackend {
    fun send(prompt: String): AgentConnection
}

interface AgentConnection {
    fun receive(): String    // Blocking read of response
    fun close()              // Clean up resources
}
```

## Tips

* Follow existing backend implementations as examples (e.g., `OllamaBackendFactory` for HTTP, `CodexCliBackendFactory` or `CopilotCliBackendFactory` for CLI).
* HTTP backends should handle connection errors and timeouts gracefully.
* CLI backends should manage process lifecycle (stdin/stdout communication, exit handling).


---

# 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/developer/adding-backend.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.
