AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Redux Saga Skill

mcp-anivar-redux-saga-skill · by anivar

AI agent skill for Redux-Saga — 25 rules: effects, fork model, channels, RTK integration. Works with Claude Code, Cursor, Codex, Windsurf.

No reviews yet
0 installs
39 views
0.0% view→install

Install

$ agentstack add mcp-anivar-redux-saga-skill

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-anivar-redux-saga-skill)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
7mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Redux Saga Skill? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Redux-Saga Skill

Created by Anivar Aravind

An AI agent skill for writing, testing, and debugging Redux-Saga code with modern best practices.

The Problem

AI agents often generate outdated or incorrect redux-saga code — missing yield on effects, calling async functions directly instead of using call(), using fork inside race, or setting up root sagas that crash entirely when one watcher fails. These are subtle bugs that pass linting but break at runtime.

This Solution

22 rules with incorrect→correct code examples that teach agents the actual redux-saga API behavior, fork model semantics, and modern Redux Toolkit integration patterns. Each rule targets a specific mistake and shows exactly how to fix it.

Install

npx skills add anivar/redux-saga-skill -g

Or with full URL:

npx skills add https://github.com/anivar/redux-saga-skill

Baseline

  • redux-saga ^1.4.2
  • @reduxjs/toolkit (recommended)
  • redux-saga-test-plan ^5.x (for testing rules)
  • Jest or Vitest

What's Inside

22 Rules Across 7 Categories

| Priority | Category | Rules | Impact | |----------|----------|-------|--------| | 1 | Effects & Yielding | 5 | CRITICAL | | 2 | Fork Model & Concurrency | 4 | CRITICAL | | 3 | Error Handling | 2 | HIGH | | 4 | Testing Patterns | 4 | HIGH | | 5 | Recipes & Patterns | 3 | MEDIUM | | 6 | Channels & External I/O | 2 | MEDIUM | | 7 | RTK Integration | 2 | MEDIUM |

Each rule file contains:

  • Why it matters
  • Incorrect code with explanation
  • Correct code with explanation
  • Decision tables and additional context

7 Deep-Dive References

| Reference | Covers | |-----------|--------| | effects-and-api.md | All effect creators, blocking vs non-blocking, pattern matching | | fork-model.md | Attached vs detached forks, error propagation, cancellation semantics | | testing.md | expectSaga, testSaga, providers, matchers, reducer integration | | channels.md | eventChannel, actionChannel, buffers, worker pools | | recipes.md | Throttle, debounce, retry, polling, optimistic updates, batching | | anti-patterns.md | 12 common mistakes with BAD/GOOD examples | | troubleshooting.md | Frozen apps, missed actions, bad stack traces, TypeScript yield types |

Structure

├── SKILL.md                          # Entry point for AI agents
├── AGENTS.md                         # Compiled guide with all rules expanded
├── rules/                            # Individual rules (Incorrect→Correct)
│   ├── effect-*                      # Effects & yielding (CRITICAL)
│   ├── fork-*                        # Fork model & concurrency (CRITICAL)
│   ├── error-*                       # Error handling (HIGH)
│   ├── testing-*                     # Testing patterns (HIGH)
│   ├── recipe-*                      # Common patterns (MEDIUM)
│   ├── channel-*                     # Channels & external I/O (MEDIUM)
│   ├── rtk-*                         # Redux Toolkit integration (MEDIUM)
│   └── troubleshoot-*               # Debugging (LOW)
└── references/                       # Deep-dive reference docs
    ├── effects-and-api.md
    ├── fork-model.md
    ├── testing.md
    ├── channels.md
    ├── recipes.md
    ├── anti-patterns.md
    └── troubleshooting.md

Ecosystem — Skills by Anivar Aravind

Testing Skills

| Skill | What it covers | Install | |-------|---------------|---------| | jest-skill | Jest best practices — mock design, async testing, matchers, timers, snapshots | npx skills add anivar/jest-skill -g | | redux-saga-testing | Redux-Saga testing — expectSaga, testSaga, providers | npx skills add anivar/redux-saga-testing -g | | zod-testing | Zod schema testing — safeParse, mock data, property-based | npx skills add anivar/zod-testing -g | | msw-skill | MSW 2.0 API mocking — handlers, responses, GraphQL | npx skills add anivar/msw-skill -g |

Library & Framework Skills

| Skill | What it covers | Install | |-------|---------------|---------| | zod-skill | Zod v4 schema validation, parsing, error handling | npx skills add anivar/zod-skill -g | | msw-skill | MSW 2.0 handlers, responses, migration | npx skills add anivar/msw-skill -g |

Engineering Analysis

| Skill | What it covers | Install | |-------|---------------|---------| | contributor-codebase-analyzer | Code analysis, annual reviews, promotion readiness | npx skills add anivar/contributor-codebase-analyzer -g |

Author

Anivar Aravind — Building AI agent skills for modern JavaScript/TypeScript development.

License

MIT

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.