A collection of skills for AI coding agents. Skills are packaged instructions and scripts that extend agent capabilities.
Skills follow the Agent Skills format.
Complete guidelines and API references for the cursor.js library. Helps AI agents write realistic, human-like virtual cursor simulations for automated product tours, onboarding flows, and interactive tutorials.
Use when:
- Building interactive product tours for SaaS onboarding
- Simulating realistic, human-like DOM interactions
- Using
@cursor.js/coreor@cursor.js/proAPIs - Creating interactive UI tutorials
- Extending
cursor.jswith custom plugins
Topics covered:
- Core API Actions (
hover,click,type,move,waitForEvent) - Flow Control (
do,if,until,wait,pause) - Core Plugins (
IndicatorPlugin,RipplePlugin,SayPlugin,SpeechPlugin,ThemePlugin, etc.) - Pro Plugins (
TrailPlugin,GeminiTTSPlugin) - Architecture best practices (Framework agnostic, bypassing React component inputs)
- Queue management (preventing deadlocks and sequence blocking)
npx skills add cursor-js/skillsSkills are automatically available once installed. The agent will use them when relevant tasks are detected.
Examples:
Create an interactive onboarding tour that guides the user to the 'Settings' page, hovers over the 'API Keys' tab, and clicks 'Generate New Key'
Simulate a human-like user filling out the SaaS signup form and typing their email
Add a Framer-like trail effect and a voiceover explanation as the cursor points out new dashboard features
Each skill contains:
SKILL.md- Instructions for the agentscripts/- Helper scripts for automation (optional)references/- Supporting documentation (optional)
MIT