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.
npx skills add pledgeandgrow/pledge-skills --skill reduxgit clone --depth 1 https://github.com/pledgeandgrow/pledge-skillsWrote 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.
[](https://agentmods.dev/skills/pledgeandgrow/pledge-skills/redux)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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
typefield 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) |
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.
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.
- 11d ago First seen · 218 lines · 34 tokens per session scan A 0bbd489d041c
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.
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.
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.
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.
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.
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.
fp-react
Practical patterns for using fp-ts with React - hooks, state, forms, data fetching. Works with React 18/19, Next.js 14/15.