What problem does it solve? Building a bot that replies to @-mentions in Velt comment threads requires correctly wiring webhook signature verification, event dispatch, user resolution, and thread subscriptions — mistakes cause feedback loops, dropped replies on serverless platforms, or failed verification. ## Core Features & Use Cases - Adapter Configuration: Set up createVeltAdapter with bot identity, organization scoping, auto-generated auth tokens, and v1/v2 webhook secrets. - Event Handling: Implement onNewMention, onSubscribedMessage, and onReaction handlers with thread.subscribe() and thread.post() for multi-turn conversations, including streaming LLM replies via the Vercel AI SDK. - Deployment Patterns: Configure Next.js App Router webhook routes with runtime = "nodejs", force-dynamic, and waitUntil for Vercel or other Node.js platforms. - Use Case: Build an AI support bot that fetches Velt thread history, sends it to Claude, and streams the answer back into the comment thread while handling follow-up messages. ## Quick Start Ask the agent to set up the Velt Chat SDK Adapter with a webhook endpoint in your Next.js app so a bot replies when users @-mention it in Velt comments.