skills/smithery.ai/asyncredux-action-status

asyncredux-action-status

Installation
SKILL.md

ActionStatus in AsyncRedux

The ActionStatus object provides information about whether an action completed successfully or encountered errors. It is returned by dispatchAndWait() and related methods.

Getting ActionStatus

Use dispatchAndWait() to get the status after an action completes:

var status = await dispatchAndWait(MyAction());

From within an action, you can also use:

var status = await dispatchAndWait(SomeOtherAction());

ActionStatus Properties

Installs
1
First Seen
Mar 22, 2026
asyncredux-action-status from smithery.ai