--- Returns all available versions of bfs from GitHub tags
--- @param ctx table Context object (unused for this plugin)
--- @return table Array of version objects with 'version' field
functionPLUGIN:Available(ctx)localutil=require("util")localversions=util.get_versions()-- Sort versions (newest first)
table.sort(versions,util.version_compare)-- Convert to vfox format
localresult={}for_,vinipairs(versions)dotable.insert(result,{version=v})endreturnresultend