You know Configurator Panels only work up to Photoshop CC?
In a Panel for Photoshop CC called "save copies cc 2013" I use this code to trigger the function "saveLibrarySaveCopy" from the Script "saveLibrary.jsx".
/* 2013, use at your own risk */
if (app.documents.length > 0) {
var stringPlugIns = localize("$$$/LocalizedFilenames.xml/SourceDirectoryName/id/Extras/[Locale]/[Locale]_Plug -ins/Value=Plug-ins");
var theSaveLibraryPath = app.path.toString()+"/"+stringPlugIns+"/Panels/save copies cc 2013/content/save copies cc 2013.assets/saveLibrary.jsx";
$.evalFile(theSaveLibraryPath);
saveLibrarySaveCopy (/**/);
};