Getting keywords from library using python

Hi… I’m working on internal library, as a part of this library, I want to use another library (KubeLibrary). It’s not only extension of this library, but I want to build uppon this.

I tried something like:

self.kubelib = KubeLibrary(kubeconfig)
dynamic_core = DynamicCore(["KubeLibrary"])
self._plugin_keywords.extend(dynamic_core.get_keyword_names())

The problem is, that kubelib will expose keywords, but I can’t get this keyword_names for robocorp extension, so in VSCode I just can’t see/use keywords that are direct connected to ‘KubeLibrary’

I also tried to do somehting like:
BuiltIn().import_library(“KubeLibrary”, kubeconfig)
self.kubelib = BuiltIn().get_library_instance(“KubeLibrary”)

But At the end it is the same… I still can’t get keywords for libdoc to be generated, thou They can’t be used through the keywords…

Is there any chance to get this working? To just somehow import ‘external’ library and expose its keywords to my custom lib?

Thanks