agentsclimarketplace

Chatwoot live chat

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

Agent skills for Chatwoot. Integrate Chatwoot into any system — channels, live chat, Captain AI, webhooks, API, and migrations.

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.

2 things to look at

  • 21 days oldThe repository was created 21 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 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.

What its author says it does

Copied from the file, not written here

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.

SKILL.md

2.9 KB, 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

Keep looking

Skills are one crate of 328,083. 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.