Windsurf rules vs Cline rules
Every comparison page on the web is a capability table someone wrote from the vendor docs in an afternoon. None of them can tell you how many real repositories ship each file, how long the median one runs, or how often two of them turn up in the same project. Those answers need a corpus, and RuleStack counts one every night.
| Format | Windsurf rules 2026-08-01 | Cline rules 2026-08-01 |
|---|---|---|
| Asserted — what the docs say it can express | ||
| File | .windsurf/rules/*.md | .clinerules |
| Status | vendor | vendor |
| Cross-tool | No | No |
| Tools that read it |
|
|
| Frontmatter | Yes | No |
| Glob targeting | Yes | No |
| Imports other files | No | No |
| Nested / per-directory | No | No |
| Multiple files | Yes | Yes |
| User-level scope | Yes | Yes |
| When it applies | Four trigger modes in frontmatter: always_on, glob, model_decision, manual. The legacy single-file .windsurfrules is still read. | Always in scope. Either a single .clinerules file or a .clinerules/ directory whose markdown files are all loaded. |
| Size limits | Per-rule and total character caps apply; long rules are truncated rather than rejected. | None |
| Measured — counted from real repositories on 2026-08-03 | ||
| Repositories carrying it | 14 | 79 |
| Share of indexed repos | 2.0% | 11.4% |
| Files indexed | 102 | 305 |
| Median length (words) | 515 | 262 |
| 90th percentile length | 1,518 | 1,412 |
| Files naming commands | 37.3% | 34.1% |
| Files containing code | 70.6% | 33.1% |
| Median quality score | 58 | 54 |
| Median repository stars | 114 | 1 |
How often they turn up together
A capability table cannot answer this at all. Of the repositories carrying the first format, this is the share that also carry the second — counted, both directions, on 2026-08-03.
Windsurf rules + Cline rules
2026-08-038
repositories carry both. That is 57.1% of everything with Windsurf rules, and 10.1% of everything with Cline rules.
What each one is for
Windsurf rules
2026-08-01Cursor's activation model with a different vocabulary — trigger modes instead of rule types — plus hard character caps, which is the one place a format here will silently drop instructions rather than fail loudly.
Strengths
- Trigger modes give the same glob and on-demand targeting as Cursor rules
- Workspace and global rule scopes
Weaknesses
- Windsurf-only
- Character caps truncate silently — a long rule can be half-applied with no error
- No imports
Cline rules
2026-08-01A single file or a folder of files, all always-on. The folder form is the simplest way any format here lets you split rules into topics without also learning an activation model.
Strengths
- Directory form splits rules by topic with zero configuration
- Toggleable rule sets for switching context between tasks
Weaknesses
- Cline-only
- Everything is always-on — no targeting, so the folder form costs context
