devtools::load_all() library(dplyr) ### Show last processed package by each platform/arch query_metadata_table() |> group_by(platform, arch) |> arrange(desc(timestamp)) |> select(name, timestamp) |> filter(row_number()==1)