docs: Add schema browser and why page#17
Merged
Conversation
Add a published schema reference page with searchable version links and add a Why XcodeBuildMCP marketing page showing the agent workflow demo. Link both surfaces from the existing docs and landing page navigation.
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Encode generated schema names and versions before using them in published schema URLs. This keeps the visible labels unchanged while avoiding unsafe URL path interpolation in the schema browser.
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed: Reduced motion prompt desync
- Made PromptBox aware of reduced motion state so it treats the prompt as submitted immediately when prefers-reduced-motion is enabled, syncing it with the transcript display.
Or push these changes by commenting:
@cursor push 672e8f18ba
Preview (672e8f18ba)
diff --git a/app/why-xcodebuildmcp/agent-demo-terminal.tsx b/app/why-xcodebuildmcp/agent-demo-terminal.tsx
--- a/app/why-xcodebuildmcp/agent-demo-terminal.tsx
+++ b/app/why-xcodebuildmcp/agent-demo-terminal.tsx
@@ -42,12 +42,14 @@
currentTimeMs,
prompt,
submitMs,
+ isReducedMotion = false,
}: {
currentTimeMs: number;
prompt: string;
submitMs: number;
+ isReducedMotion?: boolean;
}) {
- const isSubmitted = currentTimeMs >= submitMs;
+ const isSubmitted = isReducedMotion || currentTimeMs >= submitMs;
const typedPrompt = isSubmitted
? ""
: prompt.slice(0, Math.floor((currentTimeMs / submitMs) * prompt.length));
diff --git a/app/why-xcodebuildmcp/agent-demo.tsx b/app/why-xcodebuildmcp/agent-demo.tsx
--- a/app/why-xcodebuildmcp/agent-demo.tsx
+++ b/app/why-xcodebuildmcp/agent-demo.tsx
@@ -198,6 +198,7 @@
currentTimeMs={currentTimeMs}
prompt={agentDemoPrompt}
submitMs={agentDemoPromptSubmitMs}
+ isReducedMotion={isReducedMotion}
/>
</div>
<div className="border-t border-sentry-purple/15 px-5 py-2.5">You can send follow-ups to the cloud agent here.
Reviewed by Cursor Bugbot for commit 80ff0e0. Configure here.
Keep the prompt footer consistent with the reduced-motion transcript state and stop the demo video from automatically looping back to an empty transcript.
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.


Add a docs-site schema browser and a new “Why XcodeBuildMCP?” page that explains the agent workflow with an embedded simulator demo.
Published Schema Reference
The docs now include a searchable Published Schemas page with stable versioned JSON Schema links under
/schemas/structured-output/.... The existing output formats page points readers to the new browser instead of only linking to repository files.Why XcodeBuildMCP Page
The landing page now links to a dedicated explanation page comparing raw shell loops with XcodeBuildMCP’s structured agent workflow, including demo transcript UI, video assets, and navigation links back into setup and demos.