feat(chat): Vercel Connect#647
Open
bensabic wants to merge 5 commits into
Open
Conversation
Add a Vercel Connect page under Usage (chat-sdk.dev/docs/vercel-connect) covering connector setup, trigger forwarding, the per-platform connect*Adapter helpers from @vercel/connect/chat, custom OIDC webhook verification and its trust boundary, and limitations. Signed-off-by: Ben Sabic <bensabic@users.noreply.github.com>
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This was referenced Jun 27, 2026
The Vercel Connect docs page imports from @vercel/connect/chat, which the docs-content import allowlist didn't recognize. Add @vercel/connect and @vercel/connect/chat to VALID_DOC_PACKAGES. Signed-off-by: Ben Sabic <bensabic@users.noreply.github.com>
…gnore The nextjs-chat example and the Connect-backed adapters depend on @vercel/connect, which is published frequently enough to trip the 2-day minimumReleaseAge gate on fresh installs; exclude it so installs and version bumps don't stall. Add a .vercelignore so deploying the example from the monorepo root doesn't upload node_modules/build caches. Signed-off-by: Ben Sabic <bensabic@users.noreply.github.com>
Excluding .git from the deployment broke the fumadocs lastModified() plugin, which shells out to `git log` and failed the docs build with exit status 128. .git isn't the upload-size problem (node_modules is), so keep it. Signed-off-by: Ben Sabic <bensabic@users.noreply.github.com>
Replace the "Slack Agent Guide" homepage card with a "Vercel Connect Guide" card linking to the build-a-slack-bot-with-vercel-connect guide, with a `connectSlackAdapter` snippet. Signed-off-by: Ben Sabic <bensabic@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a Vercel Connect guide to the docs under Usage (
chat-sdk.dev/docs/vercel-connect), covering connector setup, trigger forwarding, the per-platformconnect*Adapterhelpers from@vercel/connect/chat, custom OIDC webhook verification and its trust boundary, and limitations. Also adds a "Vercel Connect Guide" card to the docs homepage.This is the base of a stack; the adapter, tests, and CLI PRs below build on it. Docs-only, so no changeset.
Stack
main)All of the above are stacked on this branch (
vercel-connect/base).Companion
The helpers this documents ship in the
@vercel/connect/chatsubpath: vercel/vercel#16826.