List of custom actions

Hi! Please help me to resolve my problem I need to get list of custom actions of my assistant. Can I do this without run Rasa and run actions server? I want that it’s be a script, to run that I get a list of my actions. Unfortunately I didn’t find any information about this method in rasa documents or on the rasa forum.

You can read them from domain.yml

It’s true. But operator can mistake in domain.yml. And I want to read it from folder actions and classes actions

May be somebody will be find answer for resolve the problem. I’ve came up with. This is my code.

from rasa_sdk.executor import ActionExecutor
import actions

custom_actions = ActionExecutor()
custom_actions.register_package(actions)
print(custom_actions.actions.keys())

This code is print list of all custom actions in project