skills/smithery.ai/asyncredux-debugging

asyncredux-debugging

Installation
SKILL.md

Debugging AsyncRedux Applications

AsyncRedux provides several tools for debugging and monitoring your application's state, actions, and behavior during development.

Inspecting Store State

Access the current state directly from the store:

// Direct state access
print(store.state);

// Access specific parts
print(store.state.user.name);
print(store.state.cart.items);

Tracking Actions in Progress

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