Global install (recommended): See INSTALLATION.md for the one-line installer and
/sys-*commands.
Cursor supports a .cursor/rules/ directory for project-specific rules:
# Create the rules directory
mkdir -p .cursor/rules
# Copy skills you want as rules
cp /path/to/agent-skill-library/skills/test-driven-development/SKILL.md .cursor/rules/test-driven-development.md
cp /path/to/agent-skill-library/skills/code-review-and-quality/SKILL.md .cursor/rules/code-review-and-quality.md
cp /path/to/agent-skill-library/skills/incremental-implementation/SKILL.md .cursor/rules/incremental-implementation.mdRules in this directory are automatically loaded into Cursor's context.
Create a .cursorrules file in your project root with the essential skills inlined:
# Generate a combined rules file
cat /path/to/agent-skill-library/skills/test-driven-development/SKILL.md > .cursorrules
echo "\n---\n" >> .cursorrules
cat /path/to/agent-skill-library/skills/code-review-and-quality/SKILL.md >> .cursorrulesCursor's Notepads feature lets you store reusable context. Create a notepad for each skill you use frequently:
- Open Cursor → Settings → Notepads
- Create a new notepad named "swe: Test-Driven Development"
- Paste the content of
skills/test-driven-development/SKILL.md - Reference it in chat with
@notepad swe: Test-Driven Development
Add these to .cursor/rules/:
test-driven-development.md— TDD workflow and Prove-It patterncode-review-and-quality.md— Five-axis reviewincremental-implementation.md— Build in small verifiable slices
Create notepads for skills you use contextually:
- "swe: Spec Development" →
spec-driven-development/SKILL.md - "swe: Frontend UI" →
frontend-ui-engineering/SKILL.md - "swe: Security" →
security-and-hardening/SKILL.md - "swe: Performance" →
performance-optimization/SKILL.md
Reference them with @notepad when working on relevant tasks.
- Don't load all skills at once — Cursor has context limits. Load 2-3 skills as rules and keep others as notepads.
- Reference skills explicitly — Tell Cursor "Follow the test-driven-development rules for this change" to ensure it reads the loaded rules.
- Use agents for review — Copy
agents/code-reviewer.mdcontent and tell Cursor to "review this diff using this code review framework." - Load references on demand — When working on performance, reference
@notepad performance-checklistor paste the checklist content.