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

# has_skill

> Check whether a specific skill is currently loaded on the agent.

Check whether a specific skill is currently loaded.

## **Parameters**

Skill name to check.

## **Returns**

`bool` -- `True` if the skill is loaded, `False` otherwise.

## **Example**

```python {5-6}
from signalwire import AgentBase

agent = AgentBase(name="assistant", route="/assistant")
agent.add_skill("datetime")
print(agent.has_skill("datetime"))  # True
print(agent.has_skill("web_search"))  # False
```