Script tag embeds, automatic shadcn theming, and AI knowledge clarification
Major improvements to widget flexibility with script tag embeds, automatic theme detection, and smarter AI knowledge handling.

Highlights
-
new
Script tag embeds: Install Cossistant via CDN without React using a simple script tag.
-
new
Auto shadcn detection: Widget automatically inherits your shadcn theme variables.
-
new
Knowledge clarification: AI asks for clarification when it spots knowledge gaps.
Support Widget
-
new
Browser package: New
@cossistant/browserpackage for non-React apps via script tag. -
updated
Theme detection: Automatically detects and uses shadcn CSS variables when present.
-
updated
Modular core: Refactored widget architecture for better customization and reusability.
Dashboard
-
new
Knowledge clarification requests: Review and respond to AI knowledge gap requests.
-
new
Visitor geolocation: Enhanced visitor detail pages with location data.
-
updated
Conversation timeline: Improved timeline UI with better loading states.
Bug Fixes & Improvements
-
fixed
AI reliability: More consistent AI agent responses with improved error handling.
-
fixed
Vite support: Better compatibility with Vite-based projects.
-
fixed
Timeline rendering: Fixed conversation timeline schema mismatches.
Upgrade
Use Cossistant with a script tag
Perfect to use outside of React, with Vue, or in tools like Framer and Webflow.
You can point to a specific version for predictable upgrades, or use latest
to always load the newest release.
<!-- Pin to a specific version -->
<script async src="https://cdn.cossistant.com/widget/0.2.0/loader.js"></script>
<script>
window.Cossistant.init({
publicKey: "pk_live_...",
});
</script><!-- Or always use the latest release -->
<script async src="https://cdn.cossistant.com/widget/latest/loader.js"></script>
<script>
window.Cossistant.init({
publicKey: "pk_live_...",
});
</script>