docs(vercel-cli skill): add dashboard path to the domains reference#16631
Draft
privatenumber wants to merge 1 commit into
Draft
docs(vercel-cli skill): add dashboard path to the domains reference#16631privatenumber wants to merge 1 commit into
privatenumber wants to merge 1 commit into
Conversation
🦋 Changeset detectedLatest commit: e6f116c The changes in this PR will be included in the next version bump. This PR includes changesets to release 0 packagesWhen changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Contributor
🧪 Unit Test StrategyComparing: Strategy: No tests needed ✨ No packages affected - skipping tests Results
This comment is automatically generated based on the affected testing strategy |
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.
Problem
The
vercel-cliskill's domains reference is CLI-only: its "Typical Flow" starts atvercel domains add ...and never mentions that the same flow exists in the dashboard. Agents consuming the skill inherit that framing — Vercel Agent, asked from the dashboard side panel how to add an already-owned domain, answered withvercel domains addcode blocks, which a side-panel user has nowhere to run (reported in #feedback-product, 2026-06-12: "It's suggesting CLI commands. I think most people won't know what to do with them").Trace evidence from the agents-side eval (
vercel/agents#1777): every failing trial's single tool call was a read of exactly this reference file, and the answers mirrored its CLI framing. The behavioral fix landed in the agent's prompt (vercel/agents#1778); this PR fixes the knowledge source so the dashboard path is available where the agent actually reads, letting the prompt carry only the generic surface policy.Changes
skills/vercel-cli/references/domains-and-dns.md: new "Dashboard Path" section after "Typical Flow" — Settings → Domains → Add Domain, what the dashboard shows afterward (A / project-specific CNAME / nameservers for wildcards), and a link to the add-a-domain docs walkthrough. Content mirrors that docs page.