skills/smithery.ai/asyncredux-async-actions

asyncredux-async-actions

Installation
SKILL.md

AsyncRedux Async Actions

Basic Async Action Structure

An action becomes asynchronous when its reduce() method returns Future<AppState?> instead of AppState?. Use this for database access, API calls, file operations, or any work requiring await.

class FetchUser extends ReduxAction<AppState> {
  
  Future<AppState?> reduce() async {
    final user = await api.fetchUser();
    return state.copy(user: user);
  }
}
Installs
1
First Seen
Apr 4, 2026
asyncredux-async-actions from smithery.ai