Skip to content

fix: link Claude Desktop in AI getting-started docs#277

Merged
toddgeist merged 1 commit into
mainfrom
docs/claude-desktop-link
May 20, 2026
Merged

fix: link Claude Desktop in AI getting-started docs#277
toddgeist merged 1 commit into
mainfrom
docs/claude-desktop-link

Conversation

@toddgeist
Copy link
Copy Markdown
Contributor

@toddgeist toddgeist commented May 20, 2026

Fix the "Before you start" link in apps/docs/content/docs/ai/getting-started.mdx to point to Claude Desktop (https://claude.com/download) instead of claude.ai.

Commit: 650d9ae

Summary by CodeRabbit

  • Documentation
    • Updated Getting Started guide prerequisites with the correct download page reference for MCP-compatible coding agents.

Review Change Stack

claude.ai doesn't support MCP; claude.com/download is the correct destination
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented May 20, 2026

⚠️ No Changeset found

Latest commit: 650d9ae

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@vercel
Copy link
Copy Markdown

vercel Bot commented May 20, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
proofkit-docs Ready Ready Preview, Comment May 20, 2026 1:03am

Request Review

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 20, 2026

📝 Walkthrough

Walkthrough

The Getting Started documentation for AI integration updates a single prerequisites link, changing the referenced Claude Desktop download URL from claude.ai to claude.com/download in the MCP-compatible coding agent setup section.

Changes

Documentation Link Update

Layer / File(s) Summary
Claude Desktop download link correction
apps/docs/content/docs/ai/getting-started.mdx
The prerequisites bullet for an MCP-compatible coding agent updates the Claude Desktop link from claude.ai to claude.com/download.

🎯 1 (Trivial) | ⏱️ ~2 minutes

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and specifically identifies the main change: updating a link to Claude Desktop in the AI getting-started documentation.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/claude-desktop-link

Warning

There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure.

🔧 ESLint

If the error stems from missing dependencies, add them to the package.json file. For unrecoverable errors (e.g., due to private dependencies), disable the tool in the CodeRabbit configuration.

ESLint skipped: no ESLint configuration detected in root package.json. To enable, add eslint to devDependencies.


Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@apps/docs/content/docs/ai/getting-started.mdx`:
- Line 16: Update the Markdown list entry for "MCP-compatible coding agent" by
changing the "Claude Desktop" link target from https://claude.com/download to
the official https://claude.ai/download (i.e., replace the URL in the "[Claude
Desktop](...)" link within the "MCP-compatible coding agent (e.g. ...)" list
item).
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 1ba9a421-4f0b-4420-a5c1-2fd06817063f

📥 Commits

Reviewing files that changed from the base of the PR and between a41abc6 and 650d9ae.

📒 Files selected for processing (1)
  • apps/docs/content/docs/ai/getting-started.mdx

Ensure you have the following prerequisites installed on your computer before installing ProofKit.
- FileMaker Pro (client for Mac or Windows)
- MCP-compatible coding agent (e.g. [Cursor](https://cursor.com), [Claude](https://claude.ai), [Codex](https://chatgpt.com/codex/), etc.)
- MCP-compatible coding agent (e.g. [Cursor](https://cursor.com), [Claude Desktop](https://claude.com/download), [Codex](https://chatgpt.com/codex/), etc.)
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify the Claude Desktop download URL is accessible

# Check if the URL returns a successful response
echo "Checking https://claude.com/download..."
curl -I -L -s -o /dev/null -w "HTTP Status: %{http_code}\nFinal URL: %{url_effective}\n" https://claude.com/download

# Also check the old URL for comparison
echo -e "\nChecking old URL https://claude.ai for reference..."
curl -I -L -s -o /dev/null -w "HTTP Status: %{http_code}\nFinal URL: %{url_effective}\n" https://claude.ai

Repository: proofsh/proofkit

Length of output: 256


🌐 Web query:

Claude Desktop official download page URL

💡 Result:

Claude Desktop official download page URL: https://claude.ai/download [1] This is the official Anthropic-hosted “Download Claude” page that provides platform download links (macOS, Windows, ChromeOS) for the Claude desktop app. [1]

Citations:


Correct the Claude Desktop download URL to the official source.

The Claude Desktop download link should point to https://claude.ai/download, not https://claude.com/download. According to Anthropic's official documentation, https://claude.ai/download is the authorized page providing platform-specific download links. Update line 16 to use the correct URL:

- MCP-compatible coding agent (e.g. [Cursor](https://cursor.com), [Claude Desktop](https://claude.ai/download), [Codex](https://chatgpt.com/codex/), etc.)
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@apps/docs/content/docs/ai/getting-started.mdx` at line 16, Update the
Markdown list entry for "MCP-compatible coding agent" by changing the "Claude
Desktop" link target from https://claude.com/download to the official
https://claude.ai/download (i.e., replace the URL in the "[Claude Desktop](...)"
link within the "MCP-compatible coding agent (e.g. ...)" list item).

@pkg-pr-new
Copy link
Copy Markdown

pkg-pr-new Bot commented May 20, 2026

Open in StackBlitz

@proofkit/better-auth

pnpm add https://pkg.pr.new/proofsh/proofkit/@proofkit/better-auth@277

@proofkit/cli

pnpm add https://pkg.pr.new/proofsh/proofkit/@proofkit/cli@277

create-proofkit

pnpm add https://pkg.pr.new/proofsh/proofkit/create-proofkit@277

@proofkit/fmdapi

pnpm add https://pkg.pr.new/proofsh/proofkit/@proofkit/fmdapi@277

@proofkit/fmodata

pnpm add https://pkg.pr.new/proofsh/proofkit/@proofkit/fmodata@277

@proofkit/typegen

pnpm add https://pkg.pr.new/proofsh/proofkit/@proofkit/typegen@277

@proofkit/webviewer

pnpm add https://pkg.pr.new/proofsh/proofkit/@proofkit/webviewer@277

commit: 650d9ae

@toddgeist toddgeist merged commit ff85065 into main May 20, 2026
20 checks passed
@toddgeist toddgeist deleted the docs/claude-desktop-link branch May 20, 2026 01:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant