redux-docs

redux-docs is a skill for Claude Code, Codex from pledgeandgrow/pledge-skills. It costs 34 tokens per session (3,234 once invoked), scanned A, original, MIT.

A guide to Redux and Redux Toolkit, JavaScript tools for storing and changing shared application data in a predictable way. It explains stores, actions, reducers, middleware, asynchronous work, and TypeScript use.

In plain words
What is it for?
Use it to create application state stores, define state updates, handle asynchronous requests, derive data with selectors, split large applications, and test state logic.
Why use it?
It helps developers organize data that many parts of an application need, while making changes easier to trace and test.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create application state stores, define state updates, handle asynchronous requests, derive data with selectors, split large applications, and test state logic.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pledgeandgrow/pledge-skills/redux
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add pledgeandgrow/pledge-skills --skill redux
Clone the repo
git clone --depth 1 https://github.com/pledgeandgrow/pledge-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for redux-docs

README.md
[![agentmods](https://agentmods.dev/badge/skills/pledgeandgrow/pledge-skills/redux/github.svg)](https://agentmods.dev/skills/pledgeandgrow/pledge-skills/redux)
Your own site
<a href="https://agentmods.dev/skills/pledgeandgrow/pledge-skills/redux"><img src="https://agentmods.dev/badge/skills/pledgeandgrow/pledge-skills/redux/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for redux-docs

Your own site · 80×15
<a href="https://agentmods.dev/skills/pledgeandgrow/pledge-skills/redux"><img src="https://agentmods.dev/badge/skills/pledgeandgrow/pledge-skills/redux.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,234 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00034 $0.03234
Opus 5 $0.00017 $0.01617
Sonnet 5 $0.00007 $0.00647
Haiku 4.5 $0.00003 $0.00323

Measured 11d ago against content hash 0bbd489d041c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

redux-docs scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/redux/SKILL.md · 218 lines

How it starts

The opening of the file, as written. The whole thing — 218 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Redux Skill

Redux — A JS library for predictable and maintainable global state management. Version: Redux 5.x + Redux Toolkit 2.x | Docs: redux.js.org

Quick Reference

Topic File Sections
Getting Started & Concepts getting-started.md What is Redux, installation, core concepts (state, actions, reducers, store, dispatch, selectors), immutability, data flow, Redux Toolkit overview, tutorials structure, should you use Redux
API Reference api.md createStore, combineReducers, applyMiddleware, bindActionCreators, compose, Store API (getState, dispatch, subscribe, replaceReducer)
Usage Guide & Best Practices usage-guide.md Configuring store, code splitting, server rendering, isolating sub-apps, TypeScript, writing tests, troubleshooting, structuring reducers, reducing boilerplate, deriving data with selectors, implementing undo history, style guide (Priority A/B/C rules), FAQ

Core Concepts

  • State: Single source of truth describing the application condition at a point in time
  • Action: Plain object with a type field describing what happened
  • Reducer: Pure function that takes previous state and an action, returns new state
  • Store: Object that holds the application state, created from a root reducer
  • Dispatch: Function that sends an action to the store to trigger a state update
  • Selector: Function that extracts specific pieces of information from store state
  • Middleware: Function that wraps the dispatch function to add custom behavior
  • Immutability: State is never mutated directly; reducers return new state objects
  • One-way data flow: State → UI → Action → Reducer → New State → UI re-render

Redux Ecosystem

Library Description
Redux Toolkit (RTK) Official, opinionated, batteries-included toolset for efficient Redux development
React-Redux Official React bindings for Redux
Redux DevTools Time-travel debugging, action logging
Reselect Memoized selector library
Redux Thunk Async logic middleware (included in RTK)
RTK Query Data fetching and caching (included in RTK)

Read the full file on GitHub · 218 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 218 lines · 34 tokens per session scan A 0bbd489d041c

Subscribe to this mod's changes

redux-docs is a skill published in the GitHub repository pledgeandgrow/pledge-skills (10 stars, last pushed 1mo ago), licensed MIT. It adds 34 tokens to every session and 3,234 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

zustand-patterns

Reference for Zustand 5.x state management including slices, middleware, Immer, useShallow, persistence, selectors, and devtools integration. Documents 7 core patterns with TypeScript examples and anti-patterns. Use when building React state management with Zustand instead of Redux.

yonatangross/orchestkit · 59 tokens

nextjs-state-management

Apply best practices for managing URL, server, and client state in Next.js applications. Use when choosing between URL params, SWR/TanStack Query, Zustand, or Context for state, or when fixing hydration mismatches from localStorage.

FilippoDeSilva/skills · 53 tokens

rab-react

A guide to using the @rabjs/react library for React applications with observable state. It explains components that update when state changes, service classes, dependency injection, asynchronous state, and events.

ximing/rab · 149 tokens

rab-cdp-debug

A browser debugging guide for inspecting Service objects in applications built with React and @rabjs/react. It uses Chrome DevTools, the browser’s built-in developer tools, to access the application’s Service container.

ximing/rab · 128 tokens

rab-rn-debug

A debugging guide for checking and controlling React Native apps on real phones or simulators through a local service. React Native is a way to build mobile apps with JavaScript and React.

ximing/rab · 120 tokens

fp-react

Practical patterns for using fp-ts with React - hooks, state, forms, data fetching. Works with React 18/19, Next.js 14/15.

tmolavi/mcp-agent-skills-hub · 37 tokens