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

# list_skills

> List the names of all currently loaded skills on the agent.

List the names of all currently loaded skills on this agent.

## **Parameters**

None.

## **Returns**

`list[str]` -- List of loaded skill names.

## **Example**

```python {6}
from signalwire import AgentBase

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