delete-agent
Installation
SKILL.md
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
- agent_id — if they don't have it, list first:
curl -s "$BASE/v1/agents" -H "Authorization: Bearer $KEY" - Confirm — show the agent name and ask for confirmation.
Run
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.
Related skills