Chatmancer Docs

Quick Start

Deploy Chatmancer and embed your first chatbot in under 10 minutes.

Quick Start

From zero to a live chatbot on your website in four steps.

Prerequisites

Before you begin, make sure you have:


Step 1 — Deploy to AWS

Click the Deploy button on the Chatmancer homepage or your account dashboard. You will be redirected to the AWS CloudFormation console with the template pre-loaded.

  1. Sign in to AWS if prompted
  2. Review the stack parameters (defaults are fine for your first deploy)
  3. Tick the IAM acknowledgement checkbox
  4. Click Create stack

The stack takes around 4 minutes to provision. When the status changes to CREATE_COMPLETE, your dashboard URL appears in the Outputs tab.


Step 2 — Open your dashboard and enter your OpenAI key

Open the CloudFront URL from the Outputs tab. The first-run wizard will prompt you to enter your OpenAI API key. The key is stored encrypted in AWS Secrets Manager inside your account — Chatmancer never sees it.


Step 3 — Create your first chatbot

In the setup wizard (or via Chatbots → New):

  1. Give your chatbot a name (visible only to you in the dashboard)
  2. Set a welcome message — the first thing visitors see
  3. Pick a tone preset (Friendly Support, Professional Sales, or Concise FAQ) — or write a custom system prompt
  4. Optionally add a data source so the bot can answer questions from your content

See Chatbot Configuration and Knowledge Base for more detail on each option.


Step 4 — Embed the widget

Once your chatbot is created, go to Settings → Embed and copy the snippet:

<script
  src="https://your-cloudfront-url/widget.js"
  data-chatbot-id="YOUR_CHATBOT_ID"
  async
></script>

Paste it inside the <head> tag of every page where you want the chatbot to appear. The widget loads asynchronously and will not affect page performance.

That's it — your chatbot is live.


What's next

On this page