Cursor Setup
Cursor 2.4+ supports the Agent Skills open standard but does not support Claude Code plugin marketplace. This installation uses a direct install script as a workaround. All Showroom skill content (templates, prompts, docs) is the same as the Claude Code version.
Works With
- Cursor 2.4.0 or later
- Agent Skills support
What You Get
- One-command installation
- All 8 skills bundled
- Same templates & docs as Claude Code
Prerequisites
Check Your Cursor Version
- Open Cursor
- Click Cursor menu โ About Cursor
- Version should be 2.4.0 or higher
If you're on an older version, update Cursor first.
Installation
One-Command Install
curl -fsSL https://raw.githubusercontent.com/rhpds/rhdp-skills-marketplace/main/install-cursor.sh | bash
This script will automatically:
- Install all 7 skills to
~/.cursor/skills/ - Install documentation to
~/.cursor/docs/ - Bundle prompts and templates with each skill
- Everything configured in one step
Verify Installation
After the script completes:
ls ~/.cursor/skills/
- showroom-create-lab
- showroom-create-demo
- showroom-blog-generate
- showroom-verify-content
- agnosticv-catalog-builder
- agnosticv-validator
- health-deployment-validator
How to Use Skills
Method 1: Explicit Invocation
Type skill names directly in Cursor Agent chat:
Showroom Skills
/showroom-create-lab/showroom-create-demo/showroom-blog-generate/showroom-verify-content
AgnosticV Skills
/agnosticv-catalog-builder/agnosticv-validator
Health Skills
/health-deployment-validator
Method 2: Natural Language
The agent will automatically apply relevant skills based on your request:
Example Prompts
- "Help me create a workshop lab module"
- "Generate demo content for my presentation"
- "Create an AgnosticV catalog configuration"
- "Verify my workshop content quality"
Verification
After installation and restart, verify skills are loaded:
- Open Cursor Agent chat (Cmd+L or Ctrl+L)
- Type
/to see available skills - You should see RHDP skills listed
Using Both Claude Code and Cursor?
Duplicate Skills Warning
If you have both Claude Code and Cursor installed, you may see duplicate skills with different names:
| Platform | Skill Names | Example |
|---|---|---|
| Claude Code (plugin) | With colons | /showroom:create-lab |
| Cursor (script) | With hyphens | /showroom-create-lab |
Both skills are identical - they just have different names due to platform naming requirements.
Recommendation
Choose one installation method:
- Claude Code users: Use the plugin marketplace (automatic updates, full integration)
- Cursor-only users: Use this install script
- Both platforms: Use Claude Code plugin, skip this script for Cursor
Updating Skills
To update to the latest version:
curl -fsSL https://raw.githubusercontent.com/rhpds/rhdp-skills-marketplace/main/update-cursor.sh | bash
The update script will:
- Check for new versions
- Show changelog
- Backup current installation
- Install latest version
Troubleshooting
Skills not showing after installation
Most common issue: Symlinks instead of actual files
Fix:
# Verify you have actual files (not symlinks)
file ~/.cursor/skills/showroom-create-lab/SKILL.md
# If it says "symbolic link", copy actual files:
cp -r ~/.agents/skills/* ~/.cursor/skills/
# Restart Cursor
Other checks:
- Restart Cursor completely (Cmd+Q / Ctrl+Q, then reopen)
- Verify installation:
ls ~/.cursor/skills/ - Check Cursor version is 2.4.0+
Skills show but don't work properly
Missing support files (templates, prompts, docs):
# Copy .claude/ directory to your project
cd ~/your-project
git clone https://github.com/rhpds/rhdp-skills-marketplace.git /tmp/rhdp-marketplace
mkdir -p .claude
cp -r /tmp/rhdp-marketplace/showroom/.claude/* .claude/
rm -rf /tmp/rhdp-marketplace
Permission denied errors
Make sure you have write permissions:
ls -la ~/.cursor/
chmod 755 ~/.cursor/skills
Learn about /create-lab skill
Detailed documentation for the create-lab skill
View all skills reference
Complete skills reference guide
Create your own skill
Guide to building custom skills