Cursor Skills
Skills walk your AI through Wristband integration, step by step.
Cursor Skills provide step-by-step instructions for common Wristband integration tasks, such as auth setup, session handling, and webhook config. They can work alongside the MCP Server, which handles live doc lookups.
Install script
Run the install script from the wristband-dev/vibe-coding repository. It sets up Cursor Skills and the MCP Server together in one step.
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
If you'd rather not run the script, copy the skills files directly:
cp -R skills/wristband-* ~/.cursor/skills/ # personal
cp -R skills/wristband-* .cursor/skills/ # projectThis alone gives you Skills without MCP. To also add live doc lookup, add the MCP server to ~/.cursor/mcp.json (or .cursor/mcp.json for a project-scoped install):
{
"mcpServers": {
"wristband": {
"url": "https://docs.wristband.dev/mcp"
}
}
}