[docs]asyncdefget_command_plugin_mapping(context=None):""" Get a mapping of commands to the plugins that provide them. Returns: dict: Mapping of command names to lists of plugin names """mapping={}manifest=load_plugin_manifest()forcategoryinmanifest['plugins']:forplugin_name,plugin_infoinmanifest['plugins'][category].items():forcommandinplugin_info.get('commands',[]):ifcommandnotinmapping:mapping[command]=[]mapping[command].append({'name':plugin_name,'category':category,'enabled':plugin_info.get('enabled',False)})returnmapping