For Claude Code, Cursor, and any Claude-skill-aware client

We didn't just ship an MCP server. We shipped the prompts too.

Six drop-in skills that teach your AI assistant how to run Selge end-to-end. Add a website, build a survey, review results, post a digest, optimize underperforming questions, propose specific changes to your actual pages - without figuring out the right prompts.

Six skills. Zero prompting.

Your assistant already knows how to run Selge.

Each skill is a single markdown file. Drop it in your assistant's skills directory. Ask in plain language. The skill takes care of the rest.

selge-add-website

Register a domain. Get the embed snippet. Done.

Asks for your domain (and optional brand color), creates the project, hands back the script tag ready to paste before </head>.

Example prompt

Add acme.com to Selge with brand color #2563eb

selge-new-survey

Interview, recommend a template, land a draft.

Asks what you're trying to learn, picks the best of the 13 expert templates, fills in targeting, lands the survey as a draft for you to review.

Example prompt

Create a survey to figure out why visitors don't sign up

selge-review-results

Executive summary across every survey, on demand.

Pulls last 7 and last 30 days of responses, computes deltas, surfaces top objections and 2-3 next actions. Tuned to fit in one Slack message.

Example prompt

Summarize my Selge results this week

selge-weekly-digest

Plain-text digest for Slack or your team update.

Same data as review-results, but formatted for outbound - no markdown noise, no emoji, under 200 words. Designed for cron.

Example prompt

Generate the Selge weekly digest for the team channel

selge-optimize-survey

Diagnose the broken question. Rewrite it.

Spots which question is killing completion rate or producing empty answers and proposes a concrete rewrite for each one. Applies via update_survey only with your confirmation - capped at 3 suggestions per pass to force prioritization.

Example prompt

Why isn't my pricing survey getting good answers? Fix it.

selge-propose-solutions

Feedback in. Specific page changes out.

Fetches your actual page, cross-references it with the feedback for that page, and outputs 3-5 concrete copy or UX changes - each citing the exact line on the page and the visitor quote that supports it. Read-only: you ship the edits yourself.

Example prompt

What should I actually change on /pricing based on the feedback?

Install

One snippet. One restart.

Paste the snippet into your terminal. Restart your AI assistant. The skills appear in the available-skills list automatically.

Claude Code

for s in selge-add-website selge-new-survey selge-review-results selge-weekly-digest selge-optimize-survey selge-propose-solutions; do
  mkdir -p ~/.claude/skills/$s
  curl -fsSL https://www.selge.app/skills/$s -o ~/.claude/skills/$s/SKILL.md
done

Cursor

for s in selge-add-website selge-new-survey selge-review-results selge-weekly-digest selge-optimize-survey selge-propose-solutions; do
  mkdir -p ~/.cursor/skills/$s
  curl -fsSL https://www.selge.app/skills/$s -o ~/.cursor/skills/$s/SKILL.md
done

Using a different MCP-compatible client? Drop the files in its skills directory - the format is the same.

Prerequisite

Skills need the Selge MCP server to do anything.

Skills are the instructions. The MCP server is the hands. If you haven't added the Selge MCP server to your AI assistant yet, do that first - it's a single config snippet.

mcp-config.json
{
  "mcpServers": {
    "selge": {
      "command": "npx",
      "args": ["-y", "@selge/mcp"],
      "env": {
        "SELGE_API_KEY": "your-key-here"
      }
    }
  }
}

Get your API key from Settings - API.

How it feels

One sentence in. A working survey out.

Claude Code - with selge skills installed
▶ you

Set up a survey on /pricing to figure out why people aren't signing up

⬡ selge

Using the selge-new-survey skill.

Recommend the why-didnt-you-sign-up template - it's tuned for exit-intent on signup-flow pages. Alternative: pricing-page-clarity-check.

Go with the first one?

▶ you

Yes, exit intent on /pricing

⬡ selge

Created: Pricing exit survey (draft)

Template: why-didnt-you-sign-up

Targeting: /pricing, exit intent

Preview: selge.app/my/surveys/...

Activate from the dashboard when ready. Nothing goes live by accident.

Six skills. Five minutes.

Drop the skills into your assistant, give it a sentence, watch the survey land. The hardest part is deciding what to ask first.

Skills are plain markdown Works with Claude Code & Cursor Pairs with @selge/mcp

Free to build - pay only when you go live