# Delete Agent

> Delete an AI agent from a live LiteLLM proxy. Ask for the agent_id and confirm before calling DELETE /v1/agents/{agent_id}.

- Skill: `berriai/delete-agent` (Agent Skill)
- Install (CLI): `npx skillmds@latest add berriai/delete-agent`
- Raw SKILL.md: https://api.skillmd.com/api/skills/berriai/delete-agent/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- License: MIT
- Author: BerriAI (https://skillmd.com/u/berriai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/berriai/delete-agent

---


# Delete Agent

Remove an AI agent from a live LiteLLM proxy.

## Setup

```
LITELLM_BASE_URL  — e.g. https://my-proxy.example.com
LITELLM_API_KEY   — proxy admin key
```

## Ask the user

1. **agent_id** — if they don't have it, list first:
   ```bash
   curl -s "$BASE/v1/agents" -H "Authorization: Bearer $KEY"
   ```
2. **Confirm** — show the agent name and ask for confirmation.

## Run

```bash
curl -s -X DELETE "$BASE/v1/agents/<agent_id>" \
  -H "Authorization: Bearer $KEY"
```

## Output

Confirm deletion. Note that any keys or integrations pointing to this agent will stop working.

