agentsclimarketplace

Chatwoot live chat

Skill fxckcode/chatwoot-skills/skills/chatwoot-live-chat

Install and customize the Chatwoot live chat widget on websites — Next.js, Vue, React Native, WordPress, Webflow, Gatsby, Docusaurus, and more. Use when embedding live chat or configuring the widget SDK.From its SKILL.md

Install
npx -y skills add fxckcode/chatwoot-skills --skill chatwoot-live-chat

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.9 KB, 673 tokens by cl100k_base, as published. Nobody here has run it

Chatwoot Live Chat

Install and customize the Chatwoot live chat widget on any website or app.

Quick Install

<script>
  window.chatwootSettings = {
    hideMessageBubble: false,
    position: 'right',
    locale: 'en',
    type: 'standard'
  };
  (function(d,t) {
    var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
    g.src='https://app.chatwoot.com/pwa/plugin.js';
    g.defer=1;g.async=1;s.parentNode.insertBefore(g,s);
  })(document,'script');
</script>

See articles/website-live-chat/website-live-chat-settings-explained.md for all settings.

Platform-Specific Guides

PlatformArticle
Next.jsarticles/website-live-chat/how-to-install-live_chat-on-a-next-js-app.md
Vue.jsarticles/website-live-chat/how-to-install-live_chat-on-a-vue-js-app.md
React Nativearticles/website-live-chat/how-to-install-live_chat-on-a-react-native-app.md
WordPressarticles/website-live-chat/how-to-install-live-chat-on-a-word_press-website.md
Docusaurusarticles/website-live-chat/how-to-install-live-chat-on-a-docusaurus-website.md
Gatsbyarticles/website-live-chat/how-to-install-live-chat-on-a-gatsby-website.md
Webflowarticles/website-live-chat/how-to-install-live-chat-on-a-webflow-website.md
Google Tag Managerarticles/website-live-chat/how-to-install-live-chat-using-google-tag-manager.md

Advanced Features

FeatureArticle
Custom user data via SDKarticles/website-live-chat/how-to-send-additional-user-information-to-chatwoot-using-sdk.md
Identity validation (HMAC)articles/website-live-chat/how-to-enable-identity-validation-in-chatwoot.md
Dark modearticles/website-live-chat/how-to-enable-dark-mode-on-live_chat-widget.md
Continue via emailarticles/website-live-chat/how-to-continue-conversations-through-email.md
Contact identityarticles/website-live-chat/understanding-contact-identity-and-identity-validation-in-chatwoot.md

Identity Validation (HMAC)

Prevent impersonation with HMAC-based validation:

// Server-side
const crypto = require('crypto');
const hmac = crypto.createHmac('sha256', CHATWOOT_SECRET_KEY);
hmac.update(contact_identifier);
const identifierHash = hmac.digest('hex');

// Client-side
window.chatwootSettings = {
  identifier: user.email,
  identifierHash: identifierHash,
  user: { name: user.name, email: user.email, avatar_url: user.avatar }
};

See articles/website-live-chat/how-to-enable-identity-validation-in-chatwoot.md.

Pre-Chat Forms

Customize the form customers see before starting a chat:

  • Add custom fields, make required/optional
  • See articles/advanced-features/how-to-use-pre_chat-forms.md

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.