Redux Undo
The redux-undo tool adds undo/redo functionality to Redux state containers, allowing users to easily revert or reapply changes made to their application's state.
- •When building a complex editing interface where users need to easily undo and redo actions
- •When creating a real-time collaboration tool where multiple users can edit the same document or data
- •When developing a data visualization or analysis tool where users need to experiment with different scenarios and easily revert changes
const undoableReducer = undoable((state = { counter: 0 }, action) => { if (action.type === 'INCREMENT') return { counter: state.counter + 1 }; return state; });Skip the builder — one click puts this in Claude, Cursor, Antigravity and more.
Installs with a command or two; your AI agent can do it for you.
mkdir -p ~/.claude/skills/redux-undo && curl -fsSL https://workflowstacks.com/api/skills/redux-undo/claude-skill -o ~/.claude/skills/redux-undo/SKILL.mdOpens the app with this repo with the prompt ready to go — no copy-paste needed.
Redux Undo is a small JavaScript project (~750 lines across 29 code files, plus 2 test files). Setup is light: installs like a normal app. Reading the code is optional. Last commit 8 months ago, MIT license, has a test suite.
- 1README.mdStart here — what it does and how to install it
- 2src/index.jsWhere the program starts running
- 3package.jsonDependencies and the commands it exposes
- 4examples/throttled-drag/.babelrcA worked example — copy this to get going
Skip the builder — one click puts this in Claude, Cursor, Antigravity and more.
Installs with a command or two; your AI agent can do it for you.
mkdir -p ~/.claude/skills/redux-undo && curl -fsSL https://workflowstacks.com/api/skills/redux-undo/claude-skill -o ~/.claude/skills/redux-undo/SKILL.mdOpens the app with this repo with the prompt ready to go — no copy-paste needed.
Are you the creator of this tool? Claim your listing → and earn 85% of every sale.
Related skills
More ai-agent tools founders pair with this one.