An open API service indexing awesome lists of open source software.

https://github.com/brainstormforce/surecontact-skills


https://github.com/brainstormforce/surecontact-skills

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# SureContact Skills

A collection of Claude Code skills for the [SureContact](https://surecontact.io) platform.

## Install

```bash
npx skills add brainstormforce/surecontact-skills
```

> **Claude Code users:** When the installer asks which agents to install to, make sure to select **Claude Code** from the list. Claude Code reads skills from `~/.claude/skills/` — other agents use `.agents/skills/` which Claude Code does not read.

### Manual install (Claude Code)

If you prefer to install directly without the CLI:

```bash
mkdir -p ~/.claude/skills/email-template-designer
curl -o ~/.claude/skills/email-template-designer/SKILL.md \
https://raw.githubusercontent.com/brainstormforce/surecontact-skills/master/skills/email-template-designer/SKILL.md
```

## Available Skills

### `email-template-designer`

Design and generate SureContact email templates as valid JSON — ready to save via the API.

**Triggers when you say things like:**
- "create an email template"
- "design a welcome email"
- "build a newsletter template"
- "generate a promo email"

### `landing-page-designer`

Design and generate SureContact landing pages as a complete `design_json` — ready to import directly into the page builder.

**Triggers when you say things like:**
- "create a landing page"
- "design a lead capture page"
- "build a product landing page"
- "generate a coming soon page"

## Usage

After installing, just describe the page or email you want in Claude Code:

```
Create a welcome email template for new SureContact users with a hero image, headline, body text, and a CTA button.
```

```
Build a lead capture landing page for a SaaS product with a hero, features section, testimonials, and a signup form.
```

Claude will output a complete, valid JSON you can use directly in SureContact.

## Skills in this repo

| Skill | Description |
|-------|-------------|
| [email-template-designer](./skills/email-template-designer/) | Generate SureContact email template JSON from a description |
| [landing-page-designer](./skills/landing-page-designer/) | Generate SureContact landing page design_json from a description |