Agent skill

windsurf-reference-architecture

Implement Windsurf reference architecture with optimal project structure and AI configuration. Use when designing workspace configuration for Windsurf, setting up team standards, or establishing architecture patterns that maximize Cascade effectiveness. Trigger with phrases like "windsurf architecture", "windsurf project structure", "windsurf best practices", "windsurf team setup", "optimize for cascade". '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-coderead-onlyMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill windsurf-reference-architecture --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 8 KB
Bundled scripts: none
Version: 1.11.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadGrep
Requires: Designed for Claude Code, also compatible with Codex and OpenClaw
Path: skills/.curated/windsurf-reference-architecture/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 Reference Architecture ## Overview Complete project architecture optimized for Windsurf AI. Covers workspace configuration, rules hierarchy, workflow organization, and team standardization patterns that maximize Cascade's effectiveness. ## Prerequisites - Windsurf IDE installed - Team agreement on coding standards - Repository with consistent project structure ## Architecture Diagram ``` ┌──────────────────────────────────────────────────────┐ │ Windsurf Workspace │ │ ┌───────────────┐ ┌────────────────────────────┐ │ │ │ .windsurfrules│ │ .windsurf/ │ │ │ │ (AI context) │ │ ├── rules/ (trigger rules)│ │ │ │ │ │ ├── workflows/ (automation)│ │ │ │ │ │ └── settings.json │ │ │ └───────────────┘ └────────────────────────────┘ │ │ ┌───────────────┐ ┌────────────────────────────┐ │ │ │ .codeiumignore│ │ ~/.codeium/ │ │ │ │ (index rules) │ │ ├── global_rules.md │ │ │ │ │ │ ├── windsurf/memories/ │ │ │ │ │ │ └── windsurf/mcp_config │ │ │ └───────────────┘ └────────────────────────────┘ │ ├──────────────────────────────────────────────────────┤ │ Cascade AI Engine │ │ ┌───────────┐ ┌───────────┐ ┌─────────────────┐ │ │ │ Super- │ │ Cascade │ │ Command │ │ │ │ complete │ │ Write/C

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Architecture Diagram
  4. Instructions
  5. Step 1: Project File Structure
  6. Step 2: Rules Hierarchy
  7. Step 3: Team Configuration Template
  8. Step 4: Monorepo Strategy
  9. Step 5: Context Pinning Strategy
  10. Error Handling
  11. Examples
  12. Minimal .windsurfrules for Any Project
  13. Verify Architecture Setup
  14. Resources
Commands it runs
set -euo pipefail
echo "=== Windsurf Architecture Check ==="
echo "Rules: $([ -f .windsurfrules ] && wc -c < .windsurfrules || echo 'MISSING') chars"
echo "Ignore: $([ -f .codeiumignore ] && wc -l < .codeiumignore || echo 'MISSING') patterns"
echo "Rules dir: $(ls .windsurf/rules/ 2>/dev/null | wc -l || echo 0) files"
echo "Workflows: $(ls .windsurf/workflows/ 2>/dev/null | wc -l || echo 0) files"
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the windsurf-reference-architecture skill do?

Implement Windsurf reference architecture with optimal project structure and AI configuration. Use when designing workspace configuration for Windsurf, setting up team standards, or establishing architecture patterns that maximize Cascade effectiveness. Trigger with phrases like "windsurf architecture", "windsurf project structure", "windsurf best practices", "windsurf team setup", "optimize for cascade". '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill windsurf-reference-architecture --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