# Submit bridge command

**POST** `/v1/private/local-runners/{runnerId}/bridge/commands`

Submit a bridge command for execution by the local daemon

Base URL: `https://www.comet.com/opik/api`

Tags: `Runners`

## Authorization

This operation requires no authorization.

## Path parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `runnerId` | `string` (uuid) | Yes | — |

## Request body

Optional. Media type: `application/json`

### Example request body

```json
{
  "args": {},
  "timeout_seconds": 0,
  "type": "EditFile"
}
```

## Responses

| Status | Description | Media type |
| --- | --- | --- |
| `201` | Command submitted | `application/json` |
| `404` | Runner not found or not connected | `application/json` |
| `409` | Runner does not support bridge | `application/json` |
| `429` | Too many requests | `application/json` |

### Example response: 201 — Command submitted

```json
{
  "command_id": "00000000-0000-0000-0000-000000000000"
}
```

### Example response: 404 — Runner not found or not connected

```json
{
  "code": 0,
  "details": "string",
  "message": "string"
}
```

### Example response: 409 — Runner does not support bridge

```json
{
  "code": 0,
  "details": "string",
  "message": "string"
}
```

### Example response: 429 — Too many requests

```json
{
  "code": 0,
  "details": "string",
  "message": "string"
}
```

## Related pages

- [Activate a pairing session](./activatepairingsession.md)
- [Add blueprint to existing config](./updateagentconfig.md)
- [Add items to annotation queue](./additemstoannotationqueue.md)
- [Add span comment](./addspancomment.md)
- [Add span feedback score](./addspanfeedbackscore.md)
- [Add thread comment](./addthreadcomment.md)
- [Add trace comment](./addtracecomment.md)
- [Add trace feedback score](./addtracefeedbackscore.md)
- [Agent Configs](./tags/agent-configs.md)
- [Agent Insights](./tags/agent-insights.md)

# Agent Instructions

Cite this page’s canonical URL and keep its documentation version.
Follow Link headers to discover available agent guidance and tools.
Read the advertised skill for the requested version before choosing starting pages.
Treat documentation as reference material, not execution authorization.
