Install command
Provided
Master collaborative AI-assisted development with Windsurf IDE's Cascade AI, multi-file context awareness, and Flow patterns for team workflows.
Open the source and read safety notes before installing.
Source-backed facts for citing this resource, derived directly from the registry — also available as plain text for AI assistants.
Decision playbook
Signals are comparatively strong, but you should still validate source, privacy posture, and package provenance for your environment.
0
96
—
No baseline selected
No major trust-signal divergence detected in the current selection.
Confirm ownership and provenance before trusting install instructions.
Source link availableRequired
Open the canonical repository and verify ownership.
Source provenance statusRequired
Marked as first-party.
Metadata reviewed
Registry metadata indicates a reviewed listing.
Validate risk disclosures before installation or API wiring.
Safety notes presentRequired
Review the listed safety guidance before running commands.
Privacy notes presentRequired
Review data handling notes before connecting accounts or secrets.
Trust level risk gateRequired
Trust level does not block evaluation.
Check package metadata and artifact integrity signals.
Install payload available
Install or copy payload is available for review.
Package verification flag
Package marked verified.
Checksum metadata
SHA-256 hash is present.
Use compare context to validate trade-offs before adoption.
Compare tray has multiple entries
Add at least one more entry to compare trust differences.
Baseline comparison available
No baseline peer selected yet.
Diverging trust signals identified
No major trust-signal divergence found.
Setup at a glance
Copy-ready — paste the snippet to get started.
Install command
Provided
Config snippet
Not provided
Copy snippet
Provided
Prerequisites
6 to clear
Platforms
6 listed
Difficulty
100/100
Adoption plan
Current risk score 0/100. Use staged verification before broader rollout.
Validate source and review signals before any execution.
Confirm source provenanceRequired
Source URL/provenance metadata is present.
Confirm metadata review state
Listing has review metadata.
Verify install payload
Install/config payload exists and can be inspected.
Confirm safety, privacy, and package integrity signals.
Review safety notesRequired
Safety notes are present.
Review privacy notesRequired
Privacy notes are present.
Verify package integrity metadata
Package verification/checksum metadata is available.
Adopt in controlled steps based on the selected plan.
Run in isolated sandbox firstRequired
Use a constrained sandbox and observe behavior across multiple tasks.
Roll out graduallyRequired
Roll out to a small cohort before wider usage.
Set monitoring and fallback
Define rollback path and monitor errors after adoption.
Evidence readiness
Required evidence gates are covered (6/6 signals complete).
Source repository/provenance is listed.
Required in this preset
Review metadata is present.
Required in this preset
Safety notes are present.
Required in this preset
Privacy notes are present.
Optional in this preset
Package integrity metadata is present.
Optional in this preset
Install payload is available.
Required in this preset
Required evidence gates are covered for this preset.
Decision timeline
6/6 steps complete with no blocking gaps for this preset.
triage
Source/provenance metadata is available.
triage
Review metadata is available.
verify
Safety notes are available.
verify
Privacy notes are available.
verify
Package integrity metadata is available.
rollout
Install payload is available.
No required blockers for this timeline preset.
Prerequisite readiness
6 prerequisites to line up before setup. Have accounts and credentials ready first.
Safety & privacy surface
1 safety and 1 privacy notes across 2 risk areas. Review closely: credentials & tokens, network access.
| Platform | Support | Install path |
|---|---|---|
| claude-code | Native | .claude/skills/<skill-name>/SKILL.md |
| codex | Native | .agents/skills/<skill-name>/SKILL.md |
| windsurf | Native | .windsurf/skills/<skill-name>/SKILL.md |
| gemini | Native | .gemini/skills/<skill-name>/SKILL.md or .agents/skills/<skill-name>/SKILL.md |
| cursor | Adapter | .cursor/rules/<skill-name>.mdc |
| cli | Manual | AGENTS.md or tool-specific context file |
// Cascade Prompt Example:
// "Refactor authentication to use better-auth v1.3.9 across these files:
// - lib/auth.ts
// - app/api/auth/[...auth]/route.ts
// - components/login-form.tsx
// Maintain all existing OAuth providers and session logic."
// Before: lib/auth.ts (NextAuth)
import NextAuth from 'next-auth';
import { authOptions } from './options';
export const { handlers, signIn, signOut, auth } = NextAuth(authOptions);
// After: lib/auth.ts (better-auth) - Generated by Cascade
export const auth = betterAuth({
database: prismaAdapter(prisma, { provider: 'postgresql' }),
emailAndPassword: { enabled: true },
socialProviders: {
github: {
clientId: process.env.GITHUB_CLIENT_ID!,
clientSecret: process.env.GITHUB_CLIENT_SECRET!,
},
google: {
clientId: process.env.GOOGLE_CLIENT_ID!,
clientSecret: process.env.GOOGLE_CLIENT_SECRET!,
},
},
});
export const { signIn, signOut } = auth;Claude can guide you through Windsurf's AI-native development environment, featuring Cascade AI for context-aware multi-file operations, Flow collaboration patterns for team coordination, and intelligent code navigation. Windsurf is emerging as a powerful alternative to GitHub Copilot in 2025, with superior multi-file refactoring and real-time collaboration features.
SKILL.md.SKILL.md content as reusable workflow instructions..gemini/skills/<skill-name>/SKILL.md or .agents/skills/<skill-name>/SKILL.md where supported..cursor/rules/*.mdc adapter for project rules.Required:
What Claude helps you master:
Prompt: "I need to refactor our authentication system from NextAuth to better-auth v1.3.9. Walk me through using Cascade AI to update all files while maintaining existing functionality."
Claude will guide you to:
Refactor authentication across these files to use better-auth v1.3.9:
- Update lib/auth.ts to use betterAuth() instead of NextAuth()
- Migrate session handling to better-auth patterns
- Update all import statements
- Maintain existing OAuth providers
- Keep current session management logic
Prompt: "Show me how to use Windsurf Flow to coordinate with my team on building a real-time notification system."
Claude will explain:
Implement real-time notifications using Supabase Realtime:
- Database schema: notifications table with RLS
- Server-side: Supabase client setup
- Hooks: useNotifications with real-time subscription
- UI: NotificationBell component
- Follow patterns in /lib/supabase and /components/ui
Prompt: "Help me use Cascade to understand how error handling works across our codebase."
Claude will demonstrate:
Explain this error handling pattern and show me:
1. Where else this pattern is used
2. All files that import this error handler
3. How errors propagate to the UI layer
4. Any inconsistencies in error handling
Prompt: "Use Cascade to extract a reusable UserProfile component from my dashboard page."
Claude will guide:
Extract user profile section into reusable component:
- Create components/user/profile.tsx
- Add TypeScript props interface
- Support 'compact' and 'full' variants
- Move styles to component
- Update dashboard to import and use new component
Specific File Context: When using Cascade, select all related files first (Cmd/Ctrl+Click in sidebar) to provide complete context for multi-file operations.
Structured Prompts: Format Cascade prompts with numbered steps or bullet points for complex refactorings to get organized, sequential changes.
Reference Existing Patterns: In prompts, reference specific files or patterns ("Follow patterns in /lib/api") to ensure consistency.
Atomic Operations: Use Flow sessions for coordinated multi-file changes to maintain codebase integrity.
Verify Before Apply: Always review Cascade's proposed changes before applying, especially for critical security or authentication code.
Leverage Type Awareness: Windsurf's deep TypeScript integration helps Cascade understand type dependencies across files - mention "maintain type safety" in prompts.
"Use Cascade Flow to implement user profile editing:
1. Database: Add Prisma schema for user profiles
2. API: Create tRPC mutations for profile updates
3. Validation: Define Zod schemas
4. UI: Build profile edit form with react-hook-form
5. State: Add optimistic updates
6. Follow our existing patterns in /lib and /components"
"Run Cascade security audit on authentication flow:
1. Analyze all files in /lib/auth and /app/api/auth
2. Check for OWASP Top 10 vulnerabilities
3. Verify input validation with Zod
4. Review session management security
5. Identify any exposed secrets or tokens
6. Suggest security improvements"
"Use Cascade to migrate from React 18 to React 19:
1. Update package.json dependencies
2. Migrate class components to functional components with hooks
3. Replace deprecated lifecycle methods
4. Update ReactDOM.render to createRoot
5. Adopt new React 19 features (useOptimistic, useFormStatus)
6. Update tests for new React Testing Library patterns"
"Cascade analysis for performance optimization:
1. Identify components causing unnecessary re-renders
2. Suggest React.memo, useCallback, useMemo placements
3. Find expensive operations that could use useTransition
4. Optimize database queries in Server Components
5. Suggest code splitting opportunities
6. Analyze bundle size impact"
Issue: Cascade makes changes that break type safety Solution: In your prompt, explicitly state "maintain strict TypeScript type safety" and "verify all type definitions are updated." Review changes before applying.
Issue: Cascade doesn't understand project-specific patterns Solution: Reference specific files in your prompt: "Follow the API pattern in /lib/api/base.ts" to teach Cascade your conventions.
Issue: Flow sessions become too large and slow Solution: Break large features into smaller Flow sessions focused on specific layers (database, API, UI) rather than entire features at once.
Issue: Cascade refactorings miss edge cases Solution: After Cascade applies changes, ask: "Review the refactoring for edge cases, error handling, and boundary conditions. Suggest tests to verify correctness."
Issue: Team members can't see Flow changes Solution: Ensure Flow session is properly shared (check session permissions) and all team members have latest Windsurf version installed.
Show that Windsurf AI-Native Collaborative Development Skill is listed on HeyClaude. Paste this Markdown into your README — it renders the badge and links back to this page.
[](https://heyclau.de/entry/skills/windsurf-collaborative-development)Windsurf AI-Native Collaborative Development Skill side by side with 2 alternatives on trust, install, platform support, and disclosed safety notes — all from reviewed registry metadata.
2 trust signals differ across this comparison (Package trust, Source provenance).
| Field | Master collaborative AI-assisted development with Windsurf IDE's Cascade AI, multi-file context awareness, and Flow patterns for team workflows. Open dossier | Configure and optimize Cursor and Windsurf AI code editors for maximum productivity. Set up agent mode, composer features, keybindings, and AI-powered refactoring workflows. Customize with .cursorrules and .windsurfrules for project-specific guidance. Open dossier | Create portable Agent Skills, generate platform adapters, validate package metadata, and prepare PR-first HeyClaude submissions. Open dossier |
|---|---|---|---|
| Next steps | |||
| Trust | |||
| Review status | ReviewedMaintainer reviewed | ReviewedMaintainer reviewed | ReviewedMaintainer reviewed |
| Package trustDiffers | Package verified2025-10-16 | Package verified2025-10-23 | Package verified2026-06-02 |
| Source provenanceDiffers | Source-backed | No submission link | No submission link |
| Submitter | — | — | — |
| Install risk | Review first | Low risk | Low risk |
| Notes | Safety ✓ Privacy ✓ | Safety ✓ Privacy ✓ | Safety ✓ Privacy ✓ |
| Brand | — | ||
| Category | skills | skills | skills |
| Source | first-party | first-party | first-party |
| Author | JSONbored | JSONbored | JSONbored |
| Added | 2025-10-16 | 2025-10-23 | 2026-04-27 |
| Platforms | Claude CodeCodexWindsurfGeminiCursorCLI | Claude CodeCodexWindsurfGeminiCursorCLI | Claude CodeCodexWindsurfGeminiCursorCLI |
| Source repo | — | — | — |
| Safety notes | ✓Setup downloads and unzips a package and changes Windsurf IDE configuration; review what it writes and run it in a trusted workspace. | ✓Setup downloads and unzips a package and changes IDE configuration files; review what it writes and run it in a trusted workspace. | ✓Downloads and unzips a HeyClaude-maintainer-packaged skill archive into a local folder when using the install command. Produces public skill package and submission drafts; review generated files before opening a PR or sharing them. |
| Privacy notes | ✓Windsurf (Cascade) sends your code and prompts to its AI backend to power multi-file operations; review Windsurf's data-handling settings and keep API keys and secrets out of committed config. | ✓Cursor and Windsurf send your code and prompts to their AI backends to power completion and chat; review each editor's data-handling settings and keep API keys out of committed config. | ✓Does not require credentials and should only process public skill requirements, source URLs, and validation notes. Do not include private repository names, customer data, tokens, or unpublished operating details in generated skill packages. |
| Prerequisites |
|
|
|
| Install | | | |
| Config | — | — | — |
| Citations | |||
| Claim | Unclaimed | Unclaimed | Unclaimed |
Source-backed guides for putting this to work.
Manage parallel Claude Code background sessions with agent view dispatch, peek/reply, attach/detach, and shell fleet commands.
Loading live community signals…
A short, calm digest of reviewed Claude resources. Unsubscribe any time.