chore: point all references at canonical agent-ui-session.vercel.app#9
Merged
Conversation
The repo widely advertised pagent.vercel.app as the live renderer, but that domain is owned by an unrelated Vercel account. The actual Blockful-owned production renderer is agent-ui-session.vercel.app (also what production.env and the live Railway PUBLIC_URL/ALLOWED_ORIGINS already point at after the recent fix). Replace all references — public docs, plugin manifests, error messages, test fixtures, code comments — so users following the README, the marketplace listing, or a Zod validation error get to the correct renderer. No behavior change in code paths; tests fixed in lockstep with the schema error-message strings they assert on.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
6 tasks
alextnetto
added a commit
that referenced
this pull request
May 11, 2026
* feat(web): universal-agent install prompt as primary action Both existing install panels assumed Claude Code's CLI surface — the plugin marketplace one is Claude-Code-only by design, and the "any MCP client" panel ironically shipped the `claude mcp add ...` one-liner. Anyone using Cursor / Codex / Cline / Aider had to translate. Lead with a copyable prompt instead. The user pastes it into any agent chat and the agent installs the MCP its own way (Claude Code's `claude mcp add`, Cursor's `~/.cursor/mcp.json`, Codex's config, etc.) and reads the linked SKILL.md to learn when to call show_ui / check_result. The two CLI one-liners aren't gone — they're tucked behind a "Or run a CLI command directly" disclosure for power users who want to skip the round-trip through their agent. Step 1 of "How it works" also reframes from "Install in Claude Code" to "Install in your agent". Also fixes a stale alias reference in requests.prod.http: `viewHost` was still pointing at the legacy `pagent.vercel.app` instead of the canonical `agent-ui-session.vercel.app` declared in #9. * feat(web): drop CLI disclosure, simplify the prompt to 3 lines Per follow-up: the install panel should be the *only* call to action, the prompt body fully visible (no scroll), and the URLs prominent inside it. Drop the `<details>` disclosure and its two CLI panels; collapse the prompt to one intro line plus two `Label: URL` lines so both endpoints are scannable at a glance. Bumps `.install` max-width from 640px → 720px so the longer raw GitHub URL fits on a single line at the panel's monospace font size. Also drops the now-unused `InstallKind` / `INSTALL_COMMANDS` Record indirection — only one thing is copyable, so `_onCopy()` takes no argument and `copied` is a plain boolean.
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.
Summary
The repo advertised
pagent.vercel.appas the live renderer, but that domain is owned by an unrelated Vercel account. The Blockful-owned production renderer isagent-ui-session.vercel.app(whichproduction.envand the live Railway env now already point at).This PR aligns every remaining reference with the canonical domain so:
apps/web/home.tsexample URL on the landing page is correctdocs/RELEASING.mdsmoke check hits the right surface10 files, pure string replacement, no behavior change. 162/162 tests still pass.