Title: Sappien Connector
Author: CardeeTech.
Published: <strong>May 12, 2026</strong>
Last modified: May 12, 2026

---

Search plugins

![](https://ps.w.org/sappien-connector/assets/banner-772x250.png?rev=3529847)

![](https://ps.w.org/sappien-connector/assets/icon-256x256.png?rev=3529847)

# Sappien Connector

 By [CardeeTech.](https://profiles.wordpress.org/cardeetech/)

[Download](https://downloads.wordpress.org/plugin/sappien-connector.1.4.0.zip)

 * [Details](https://wordpress.org/plugins/sappien-connector/#description)
 * [Reviews](https://wordpress.org/plugins/sappien-connector/#reviews)
 *  [Installation](https://wordpress.org/plugins/sappien-connector/#installation)
 * [Development](https://wordpress.org/plugins/sappien-connector/#developers)

 [Support](https://wordpress.org/support/plugin/sappien-connector/)

## Description

**Sappien Connector** lets you embed a Sappien AI agent into any WordPress site 
with no custom code.

### Features

 * **Floating widget** — A fixed button in the corner opens the chat when clicked.
 * **Shortcode** — Use `[sappien_chat]` in any page, post, or block.
 * **HMAC authentication** — Logged-in WordPress users are automatically identified
   via HMAC-SHA256 (secret key stays server-side, never in the browser).
 * **Document management** — Upload PDFs, DOCX, TXT and Markdown files directly 
   to your Sappien agent as a knowledge base.
 * **Custom instructions** — Define agent tone, business rules, and context from
   the WordPress admin.
 * **Multiple agents** — The shortcode supports per-instance `key` and `secret` 
   attributes.
 * **Selective visibility** — Show the widget to everyone, logged-in users only,
   or logged-out visitors only.
 * **Page exclusions** — Hide the floating widget on specific pages by slug.
 * **Fully customizable** — Configure position, button color, icon, height, and 
   width.

### Requirements

 * An active and configured **Sappien** instance
 * API Key (and optionally Secret Key) from your Sappien agent
 * The URL of your Sappien server

### External API

This plugin connects exclusively to the Sappien server URL that you configure in
Settings. No data is sent to Cardee Technologies or any other third party. See the
Privacy Policy section below for details.

### Privacy Policy

This plugin connects to the Sappien server URL that the site administrator configures
in the plugin settings.

**Data transmitted to the configured Sappien server:**

 * For logged-in users (when Secret Key is set): user ID, display name, email address,
   and HMAC-SHA256 signature.
 * Documents uploaded by the administrator.
 * Custom instructions entered by the administrator.
 * Chat messages entered by site visitors.

**This plugin does not transmit any data to Cardee Technologies or any server other
than the Sappien instance you configure.**

For privacy details specific to your Sappien instance, consult your Sappien provider.

## Screenshots

 * [[
 * Configuration tab — connection, display mode, widget appearance, and visibility
   settings.
 * [[
 * Documents tab — upload and manage files for the agent knowledge base.
 * [[
 * Instructions tab — custom agent prompt instructions with character counter.

## Installation

 1. Download the plugin from the WordPress Plugin Directory.
 2. Upload the `sappien-connector` folder to `/wp-content/plugins/`.
 3. Activate the plugin from the **Plugins** screen in WordPress.
 4. Go to **Sappien** in the admin menu (or **Settings > Sappien Connector**) and enter
    your Server URL and API Key.

Alternatively, search for “Sappien Connector” directly in **Plugins > Add New** 
and click **Install Now**.

## FAQ

### Do I need a Sappien account?

Yes. You need an active Sappien instance with an API Key. Contact your Sappien provider
for credentials.

### Is the Secret Key secure?

Yes. The Secret Key is used on the server to sign the user identity payload (HMAC-
SHA256). It is never exposed to the browser or included in any frontend output.

### Can I use multiple agents on the same site?

Yes. Use the shortcode with per-instance credentials: `[sappien_chat key="ck_agent2"
secret="sk_secret2"]`

### Which file formats can I upload?

PDF, DOCX (Word), TXT, and Markdown (MD). Maximum size: 20 MB per file.

### How do I hide the widget on certain pages?

In the **Configuration** tab, enter comma-separated page slugs in the **Exclude 
pages** field (e.g. `checkout, cart, my-account`).

### How does automatic user identification work?

With a Secret Key configured, logged-in WordPress users are identified in the chat
automatically. Their user ID, display name, and email are signed with HMAC-SHA256
and sent to Sappien so the agent can greet them by name.

### What happens when I update from a previous version?

Settings are migrated automatically. No data is lost.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“Sappien Connector” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ CardeeTech. ](https://profiles.wordpress.org/cardeetech/)

[Translate “Sappien Connector” into your language.](https://translate.wordpress.org/projects/wp-plugins/sappien-connector)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/sappien-connector/),
check out the [SVN repository](https://plugins.svn.wordpress.org/sappien-connector/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/sappien-connector/)
by [RSS](https://plugins.trac.wordpress.org/log/sappien-connector/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.4.0

 * Architecture: refactored monolithic plugin into modular class-based structure(`
   Sappien_Connector_Core`, `Sappien_Connector_Admin`, `Sappien_Connector_Settings`,`
   Sappien_Connector_Api`, `Sappien_Connector_Widget`).
 * Security: replaced `phpcs:ignore` on SVG output with `wp_kses()` using an SVG
   allowlist (M1).
 * Security: validated `$_GET['tab']` against an explicit allowlist before use (
   M2).
 * Security: validated `user_email` with `is_email()` before including in HMAC payload(
   B3).
 * Admin: replaced emoji characters in UI with inline SVG icons (B4).
 * Admin: added `error_log()` call before every `wp_send_json_error()` in AJAX handlers(
   B5).
 * Admin: full UI redesign — SaaS-style dashboard with header, card layout, styled
   tabs, toast notifications, and accessible drag-and-drop upload zone.
 * i18n: English as source language; all previously Spanish strings rewritten to
   English; Spanish (`es_ES`) translation added.
 * WordPress.org: added `LICENSE` file; updated `readme.txt` to English with full
   FAQ and changelog.

#### 1.3.0

 * Improved option migration from previous version.
 * Better error handling in file validation.
 * Improved admin interface with Sappien branding.
 * New admin menu system.
 * Improved WordPress.org compatibility.

#### 1.2.0

 * Rebranding: now “Sappien Connector” by Cardee Technologies, SL.
 * Full WordPress.org compliance.
 * Separated CSS/JS into external files.
 * Complete internationalization.
 * Security improvements: capability checks in AJAX handlers.
 * Server-side file size validation.

#### 1.1.0

 * Initial release as “Sappien Chat”.

## Meta

 *  Version **1.4.0**
 *  Last updated **1 day ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 5.9 or higher **
 *  Tested up to **6.9.4**
 *  PHP version ** 7.4 or higher **
 * Tags
 * [AI](https://wordpress.org/plugins/tags/ai/)[chat](https://wordpress.org/plugins/tags/chat/)
   [chatbot](https://wordpress.org/plugins/tags/chatbot/)[floating widget](https://wordpress.org/plugins/tags/floating-widget/)
 *  [Advanced View](https://wordpress.org/plugins/sappien-connector/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/sappien-connector/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/sappien-connector/reviews/)

## Contributors

 *   [ CardeeTech. ](https://profiles.wordpress.org/cardeetech/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/sappien-connector/)