I've attached a R-code file that has a function to convert SKAT outputs to SKAT_SSD_ALL output object. You can find the example code below. Please let me know if you have any questions.
######################################
#
library(SKAT)
data(SKAT.example)
attach(SKAT.example)
# This R file has Mk_SSD_ALL_Output function.
source("./MK_SSD_All_Output.R")
# continuous trait
obj<-SKAT_Null_Model(y.c ~ 1, out_type="C", n.Resampling=1000)
out.list<-list()
# make list of SKAT output
# SKAT.example only has one set, so these ten outputs are the exactly same.
for(i in 1:10){
out.list[[i]]<-SKAT(Z, obj)
}
#
# MK_SSD_ALL_Output: input is a list object of SKAT outputs.
#
#
out.ssd<-Mk_SSD_ALL_Output(out.list)
Resampling_FWER(out.ssd)