***

title: list_skills
slug: /reference/python/agents/agent-base/list-skills
description: List the names of all currently loaded skills on the agent.
max-toc-depth: 3
---------------------

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

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"]
```