skills/smithery.ai/asyncredux-before-after

asyncredux-before-after

Installation
SKILL.md

AsyncRedux Before and After Methods

Action Lifecycle Overview

Every ReduxAction has three lifecycle methods that execute in order:

  1. before() - Runs first, before the reducer
  2. reduce() - The main reducer (required)
  3. after() - Runs last, always executes

Only reduce() is required. The before() and after() methods are optional hooks for managing side effects.

The before() Method

The before() method executes before the reducer runs. It can be synchronous or asynchronous.

Synchronous before()

Installs
1
First Seen
Apr 15, 2026
asyncredux-before-after from smithery.ai