Cursor Skills
Skills guide your AI through Wristband integrations, step by step.
Cursor Skills deliver step-by-step instructions for core Wristband integration tasks, such as auth setup, session handling, and webhook config. They work in tandem with the MCP Server, which handles live doc lookups.
Install script
Run the install script from the wristband-dev/vibe-coding repository to install both Cursor Skills and the Wristband MCP Server in a single step.
To get started, open a terminal in your project's root directory and run the install script directly from the repository:
git clone https://github.com/wristband-dev/vibe-coding.git
cd vibe-coding
./install.shYou'll be prompted to choose an install location:
- Personal (
~/.cursor/) — skills and MCP available across all your projects - Project (
.cursor/) — scoped to the current project, shareable with your team via git
To skip the prompt, pass the flag directly:
./install.sh --personal
./install.sh --projectRestart Cursor after installing, then try a prompt like "Add Wristband auth to my Express app."
Manual install
To install Cursor Skills manually, copy the following files:
cp -R skills/wristband-* ~/.cursor/skills/ # personal
cp -R skills/wristband-* .cursor/skills/ # projectTo install Cursor Skills manually, copy the following files:
cp -R skills/wristband-* ~/.cursor/skills/ # personal
cp -R skills/wristband-* .cursor/skills/ # projectThis installs Cursor Skills only; it does not configure the MCP server. To enable live documentation lookups, add the Wristband MCP server to ~/.cursor/mcp.json (or .cursor/mcp.json for a project-scoped installation):
{
"mcpServers": {
"wristband": {
"url": "https://docs.wristband.dev/mcp"
}
}
}Updated 15 days ago