Files
Federico Bartoli a63f54b8ab Rename stale swe-skills references to agent-skills
The repository was renamed from swe-skills to agent-skills but
internal references were never updated. This caused:
- session-start.sh to silently fail (path using-swe-skills/ did
  not exist; the directory is using-agent-skills/)
- slash commands to invoke non-existent swe-skills: namespace
- docs and setup guides to point at the old clone URL

Rename all occurrences across 14 files: commands, CLAUDE.md,
README tree, docs/, and hooks/.
2026-02-23 12:02:07 +01:00

1.4 KiB

Using agent-skills with Windsurf

Setup

Project Rules

Windsurf uses .windsurfrules for project-specific agent instructions:

# Create a combined rules file from your most important skills
cat /path/to/agent-skills/skills/test-driven-development/SKILL.md > .windsurfrules
echo "\n---\n" >> .windsurfrules
cat /path/to/agent-skills/skills/incremental-implementation/SKILL.md >> .windsurfrules
echo "\n---\n" >> .windsurfrules
cat /path/to/agent-skills/skills/code-review-and-quality/SKILL.md >> .windsurfrules

Global Rules

For skills you want across all projects, add them to Windsurf's global rules:

  1. Open Windsurf → Settings → AI → Global Rules
  2. Paste the content of your most-used skills

Keep .windsurfrules focused on 2-3 essential skills to stay within context limits:

# .windsurfrules
# Essential agent-skills for this project

[Paste test-driven-development SKILL.md]

---

[Paste incremental-implementation SKILL.md]

---

[Paste code-review-and-quality SKILL.md]

Usage Tips

  1. Be selective — Windsurf's context is limited. Choose skills that address your biggest quality gaps.
  2. Reference in conversation — Paste additional skill content into the chat when working on specific phases (e.g., paste security-and-hardening when building auth).
  3. Use references as checklists — Paste references/security-checklist.md and ask Windsurf to verify each item.