sS factStore_cmds(SimpleFactStore factStore, S s, bool allowChanges) {
  if (allowChanges) {
    if "clear facts" { factStore.clear(); ret "OK"; }
  }
  
  if "list facts" {
    ret ai_bracketUsersToDiscordAt(lines(factStore.facts()));
  }
  
  null;
}