Agent skill · Workflow & Productivity

windsurf-reliability-patterns

Implement reliable Cascade workflows with checkpoints, rollback, and incremental editing. Use when building fault-tolerant AI coding workflows, preventing Cascade from breaking builds, or establishing safe practices for multi-file AI edits. Trigger with phrases like "windsurf reliability", "cascade safety", "windsurf rollback", "cascade checkpoint", "safe cascade workflow". '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill windsurf-reliability-patterns --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Version: 1.11.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEditBash(git:*)
Requires: Designed for Claude Code, also compatible with Codex and OpenClaw
Path: skills/.curated/windsurf-reliability-patterns/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Windsurf Reliability Patterns ## Overview Reliability patterns for safe Cascade usage: Git checkpointing, incremental task scoping, validation gates, and rollback strategies. Cascade's multi-file editing is powerful but requires discipline to avoid breaking your codebase. ## Prerequisites - Windsurf with Cascade enabled - Git repository initialized - Test suite available - Understanding of Cascade Write mode ## Instructions ### Step 1: Always Commit Before Cascade The most important reliability pattern: create a clean Git checkpoint before every Cascade session. ```bash # Before starting a Cascade task git add -A && git commit -m "checkpoint: before cascade session" # After Cascade completes: git diff # Review all changes npm test && npm run typecheck # Validate # If good: git add -A && git commit -m "[cascade] add notification service" # If bad: git checkout -- . # Revert everything # Or selectively: git checkout -- src/problem-file.ts # Revert one file ``` ### Step 2: Use Feature Branches for Cascade Work ```bash # Create dedicated branch for each Cascade task git checkout -b cascade/add-notification-service # Do Cascade work on this branch # ... # If results are good: git chec

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Instructions
  4. Step 1: Always Commit Before Cascade
  5. Step 2: Use Feature Branches for Cascade Work
  6. Step 3: Scope Tasks Incrementally
  7. Step 4: Validate After Every Cascade Edit
  8. Step 5: Use Cascade Checkpoints
  9. Step 6: Cascade Constraint Patterns
  10. Step 7: Team Safety Policy
  11. Error Handling
  12. Examples
  13. Safe Cascade Workflow (Complete)
  14. Recover from Bad Cascade Edit
Commands it runs
Before starting a Cascade task
git add -A && git commit -m "checkpoint: before cascade session"
After Cascade completes:
git diff                                    # Review all changes
npm test && npm run typecheck               # Validate
If good:
git add -A && git commit -m "[cascade] add notification service"
If bad:
git checkout -- .                           # Revert everything
Or selectively:
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the windsurf-reliability-patterns skill do?

Implement reliable Cascade workflows with checkpoints, rollback, and incremental editing. Use when building fault-tolerant AI coding workflows, preventing Cascade from breaking builds, or establishing safe practices for multi-file AI edits. Trigger with phrases like "windsurf reliability", "cascade safety", "windsurf rollback", "cascade checkpoint", "safe cascade workflow". '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill windsurf-reliability-patterns --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going