Skip to content

Commit 079dbf3

Browse files
committed
Rewrite Cursor install to use native Agent Skills discovery
Cursor now natively supports Agent Skills and auto-discovers SKILL.md folders from ~/.agents/skills/ (and .agents/skills/, .cursor/skills/, ~/.cursor/skills/), the same directories Codex and Copilot CLI read. Replaces the earlier .cursor/rules/*.mdc pointer with the clone-and-symlink pattern the other assistants use, plus the Customize → Rules → Add Rule → Remote Rule (GitHub) UI path. Verified against Cursor's docs; kept the (Experimental) label since the skills have not yet been run through a live Cursor test prompt.
1 parent 790ba4d commit 079dbf3

1 file changed

Lines changed: 14 additions & 12 deletions

File tree

README.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -102,23 +102,25 @@ skills are available.
102102

103103
### Cursor (Experimental)
104104

105-
Add a rule file to your project's `.cursor/rules/` directory:
105+
Cursor discovers Agent Skills from `~/.agents/skills/` — the same directory Codex
106+
and Copilot CLI use — as well as `~/.cursor/skills/`. Clone the repo and symlink
107+
the skills:
106108

107109
```bash
108110
git clone https://github.com/CrowdStrike/fusion-skills.git
109-
mkdir -p .cursor/rules
110-
cat > .cursor/rules/fusion-skills.mdc << 'EOF'
111-
---
112-
description: Use when building Falcon Fusion workflows — action discovery, YAML authoring, validation, deployment, execution
113-
alwaysApply: false
114-
---
115-
116-
Reference the Fusion skills in /path/to/fusion-skills/skills/ for building Fusion workflows.
117-
The primary orchestrator is workflows/SKILL.md.
118-
EOF
111+
mkdir -p ~/.agents/skills
112+
for skill in /path/to/fusion-skills/skills/*; do
113+
ln -s "$skill" ~/.agents/skills/
114+
done
119115
```
120116

121-
Cursor activates the rule automatically when your prompt matches the description.
117+
Use `.cursor/skills/` (or `.agents/skills/`) inside a project for workspace scope
118+
instead. As an alternative to cloning, add the repo through the UI: **Customize →
119+
Rules → Add Rule → Remote Rule (GitHub)** and enter the repository URL.
120+
121+
Cursor discovers skills on startup and activates the right one on demand based on
122+
your prompt; invoke one explicitly with `/<skill-name>`. Type `/` in Agent chat and
123+
confirm all 6 skills appear.
122124

123125
### Antigravity CLI
124126

0 commit comments

Comments
 (0)