SimplerDevelopment

Install the Claude skills

One-click installer for the SimplerDevelopment skills bundle. After installing, you can draft pages, decks, emails, surveys, and full multi-page sites directly from Claude Desktop or Claude Code.

1. Download the installer

Other options (advanced)

macOS shell-script installer

Fallback if the .pkg doesn't work for you. Download install-sd-skills.command, then right-click → Open in Finder (unsigned — Gatekeeper prompts).

Linux / manual install (curl one-liner)

mkdir -p ~/.claude/skills && \
  curl -fsSL https://simplerdevelopment.com/api/skills/bundle \
  | tar -xz -C ~/.claude/skills

2. Configure Claude Desktop

Open claude_desktop_config.json (Settings → Developer → Edit Config in Claude Desktop) and add the simplerdevelopment entry under mcpServers.

{
  "mcpServers": {
    "simplerdevelopment": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://<your-tenant>.simplerdevelopment.com/api/mcp"
      ]
    }
  }
}

Replace <your-tenant>with your tenant subdomain. Your account manager has it if you don't.

3. Restart Claude and run sd-init

Quit and reopen Claude Desktop. In any conversation, say Run sd-init. Claude will OAuth into your portal, pull your brand profile + site list, and write a .sd/config.json into your working directory. After that, every other skill below is ready.

What you get

  • sd-initBootstrap your tenant
  • sd-create-pageDraft CMS pages
  • sd-create-deckDraft pitch decks
  • sd-create-emailDraft email campaigns
  • sd-create-surveyDraft surveys + intake forms
  • sd-create-booking-pageBuild booking pages
  • sd-create-websiteCompose a multi-page site
  • sd-build-html-embedAuthor single-file HTML embeds
  • sd-learnCapture per-project feedback
  • html-render-blockEdit HTML-render block JSON

Plus the shared design-principles doc and the full client quickstart, both installed alongside the skills under ~/.claude/skills/.

Trouble installing? See contact support or open ~/.claude/skills/CLIENT_QUICKSTART.md after install for the full guide.