***

title: remove_skill
slug: /reference/python/agents/agent-base/remove-skill
description: Unload a skill from the agent.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

[ref-agentbase]: /docs/server-sdks/reference/python/agents/agent-base

Unload a skill from this agent. The skill's tools and configuration are removed.

## **Parameters**

<ParamField path="skill_name" type="str" required={true} toc={true}>
  Name of the skill to remove.
</ParamField>

## **Returns**

[`AgentBase`][ref-agentbase] -- Returns self for method chaining.

## **Example**

```python {6}
from signalwire import AgentBase

agent = AgentBase(name="assistant", route="/assistant")
agent.add_skill("datetime")
agent.add_skill("math")
agent.remove_skill("math")
print(agent.list_skills())  # ["datetime"]
```