From windsurf-pack
Diagnoses and fixes Windsurf IDE errors: Cascade not responding, Supercomplete failures, indexing hangs, extension conflicts, and wrong file writes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/windsurf-pack:windsurf-common-errorsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Quick reference for the most common Windsurf IDE errors and their solutions. Covers Cascade failures, Supercomplete issues, indexing problems, and extension conflicts.
Quick reference for the most common Windsurf IDE errors and their solutions. Covers Cascade failures, Supercomplete issues, indexing problems, and extension conflicts.
Symptoms: Cascade panel shows spinner indefinitely, no response to prompts.
Solutions:
Symptoms: No ghost text appears while typing.
Solutions:
.codeiumignore: Current file might be excluded from indexing// Verify in settings.json
{
"editor.inlineSuggest.enabled": true,
"codeium.autocomplete.enable": true
}
Symptoms: Status bar shows "Indexing..." for extended periods, Cascade lacks context.
Solutions:
.codeiumignore:node_modules/
.git/
dist/
build/
.next/
coverage/
vendor/
__pycache__/
*.min.js
*.bundle.js
*.map
Symptoms: Duplicate suggestions, slow editor, features not working.
Known conflicts:
GitHub Copilot — conflicts with Supercomplete (disable one)
TabNine — conflicts with Supercomplete
Cody (Sourcegraph) — conflicts with Cascade
IntelliCode — may interfere with completions
Fix: Disable conflicting extensions:
Extensions sidebar > Search "copilot" > Disable
Symptoms: Cascade modifies files you didn't intend.
Solutions:
.windsurfignore to protect sensitive directoriesSymptoms: "You've used all your credits" or specific model unavailable.
Solutions:
Symptoms: MCP tools not appearing in Cascade, "server disconnected" errors.
Solutions:
~/.codeium/windsurf/mcp_config.json${VAR} interpolationSymptoms: Cascade forgets what it was doing, makes contradictory changes.
Solutions:
@src/services/auth.ts| Issue | Quick Fix | Root Cause |
|---|---|---|
| No AI features | Check auth in status bar | Token expired, re-sign-in |
| Cascade slow | Add .codeiumignore | Indexing too many files |
| Wrong suggestions | Update .windsurfrules | Missing project context |
| Preview broken | Close and re-open Preview | Dev server disconnected |
| Terminal errors | Cmd/Ctrl+Shift+. | Auto-debug via Cascade |
# Check if Windsurf is installed
windsurf --version
# Check Codeium auth state
ls ~/.codeium/
Command Palette (Cmd/Ctrl+Shift+P):
1. "Codeium: Reset Indexing"
2. "Cascade: Restart"
3. "Developer: Reload Window"
For comprehensive debugging, see windsurf-debug-bundle.
5plugins reuse this skill
First indexed Jul 10, 2026
npx claudepluginhub fleet-to-force/claude-code-plugins-plus --plugin windsurf-packDiagnose and fix common Windsurf IDE and Cascade errors. Use when Cascade stops working, Supercomplete fails, indexing hangs, or encountering Windsurf-specific issues. Trigger with phrases like "windsurf error", "fix windsurf", "windsurf not working", "cascade broken", "windsurf slow".
Uses Cascade for AI-assisted debugging and error analysis. Activates on phrases like 'debug with ai' or 'error analysis' to analyze stack traces and suggest fixes.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.