userPersona function
User persona ('solo' or 'team_lead'), persisted in profiles.settings. Null means the user hasn't chosen yet (triggers persona selection).
Implementation
@riverpod
Future<String?> userPersona(Ref ref) async {
final ds = ref.watch(supabaseDatasourceProvider);
return ds.getPersona();
}